diff --git a/code/game/machinery/doorbell_vr.dm b/code/game/machinery/doorbell_vr.dm
index 25fb75df44..d6c5d67719 100644
--- a/code/game/machinery/doorbell_vr.dm
+++ b/code/game/machinery/doorbell_vr.dm
@@ -43,12 +43,13 @@
else
icon_state = "dbchime-standby"
+//TFF 3/6/19 - Port Cit RP fix of infinite frames. ToDo: Make it so that you can completely deconstruct it and reconstruct it.
/obj/machinery/doorbell_chime/attackby(obj/item/W as obj, mob/user as mob)
src.add_fingerprint(user)
if(default_deconstruction_screwdriver(user, W))
return
- else if(default_deconstruction_crowbar(user, W))
- return
+// else if(default_deconstruction_crowbar(user, W))
+// return
else if(default_part_replacement(user, W))
return
else if(panel_open && istype(W, /obj/item/device/multitool))
diff --git a/code/game/machinery/exonet_node.dm b/code/game/machinery/exonet_node.dm
index fbfbc04abf..56c8e36edf 100644
--- a/code/game/machinery/exonet_node.dm
+++ b/code/game/machinery/exonet_node.dm
@@ -16,6 +16,8 @@
var/list/logs = list() // Gets written to by exonet's send_message() function.
+//TFF 3/6/19 - Port Cit RP fix for infinite frames
+ circuit = /obj/item/weapon/circuitboard/telecomms/exonet_node
// Proc: New()
// Parameters: None
// Description: Adds components to the machine for deconstruction.
@@ -23,7 +25,6 @@
..()
component_parts = list()
- component_parts += new /obj/item/weapon/circuitboard/telecomms/exonet_node(src)
component_parts += new /obj/item/weapon/stock_parts/subspace/ansible(src)
component_parts += new /obj/item/weapon/stock_parts/subspace/sub_filter(src)
component_parts += new /obj/item/weapon/stock_parts/manipulator(src)
diff --git a/code/game/machinery/machinery.dm b/code/game/machinery/machinery.dm
index 5486facff1..6a86dcfcb3 100644
--- a/code/game/machinery/machinery.dm
+++ b/code/game/machinery/machinery.dm
@@ -408,6 +408,9 @@ Class Procs:
/obj/machinery/proc/dismantle()
playsound(src.loc, 'sound/items/Crowbar.ogg', 50, 1)
+ //TFF 3/6/19 - port Cit RP fix of infinite frames. If it doesn't have a circuit board, don't create a frame. Return a smack instead. BONK!
+ if(!circuit)
+ return 0
var/obj/structure/frame/A = new /obj/structure/frame(src.loc)
var/obj/item/weapon/circuitboard/M = circuit
A.circuit = M
@@ -451,4 +454,4 @@ Class Procs:
return
/datum/proc/remove_visual(mob/M)
- return
\ No newline at end of file
+ return
\ No newline at end of file
diff --git a/code/game/turfs/simulated/water_vr.dm b/code/game/turfs/simulated/water_vr.dm
new file mode 100644
index 0000000000..ea16037cf7
--- /dev/null
+++ b/code/game/turfs/simulated/water_vr.dm
@@ -0,0 +1,5 @@
+/turf/simulated/floor/water/indoors //because it's nice to be able to use these indoors without having a blizzard ignore walls and areas.
+ outdoors = FALSE
+
+/turf/simulated/floor/water/deep/indoors
+ outdoors = FALSE
\ No newline at end of file
diff --git a/code/modules/ai/aI_holder_subtypes/simple_mob_ai_vr.dm b/code/modules/ai/aI_holder_subtypes/simple_mob_ai_vr.dm
index 9af6e67f1f..6c78d38d8f 100644
--- a/code/modules/ai/aI_holder_subtypes/simple_mob_ai_vr.dm
+++ b/code/modules/ai/aI_holder_subtypes/simple_mob_ai_vr.dm
@@ -1,5 +1,4 @@
-/datum/ai_holder/simple_mob/melee/evasive/returnhome
- returns_home = 1
+#define VIRGO_AI_NORETURN_CREATE(x) x/returnhome/returns_home=1;x/returnhome/max_home_distance=8
-/datum/ai_holder/simple_mob/ranged/kiting/threatening/returnhome
- returns_home = 1
\ No newline at end of file
+VIRGO_AI_NORETURN_CREATE(/datum/ai_holder/simple_mob/melee/evasive)
+VIRGO_AI_NORETURN_CREATE(/datum/ai_holder/simple_mob/ranged/kiting/threatening)
\ No newline at end of file
diff --git a/code/modules/hydroponics/seed_machines.dm b/code/modules/hydroponics/seed_machines.dm
index 4601f23484..2acfa4fb72 100644
--- a/code/modules/hydroponics/seed_machines.dm
+++ b/code/modules/hydroponics/seed_machines.dm
@@ -94,10 +94,16 @@
to_chat(user, "You load [W] into [src].")
return
+//TFF 3/6/19 - fix infinite frame creation, ported from Cit RP - also allow movement of hydroponic-related machines.
if(default_deconstruction_screwdriver(user, W))
return
- if(default_deconstruction_crowbar(user, W))
+ if(W.is_wrench())
+ playsound(src, W.usesound, 100, 1)
+ to_chat(user, "You [anchored ? "un" : ""]secure \the [src].")
+ anchored = !anchored
return
+// if(default_deconstruction_crowbar(user, W)) //No circuit boards to give.
+// return
if(istype(W,/obj/item/weapon/disk/botany))
if(loaded_disk)
to_chat(user, "There is already a data disk loaded.")
diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm
index 8814f4773f..1a46b80d9d 100644
--- a/code/modules/mining/mine_turfs.dm
+++ b/code/modules/mining/mine_turfs.dm
@@ -569,7 +569,8 @@ var/list/mining_overlay_cache = list()
else
X = new /obj/item/weapon/ore/strangerock(src, inside_item_type = F.find_type)
geologic_data.UpdateNearbyArtifactInfo(src)
- X:geologic_data = geologic_data
+ var/obj/item/weapon/ore/strangerock/SR = X
+ SR.geologic_data = geologic_data
//some find types delete the /obj/item/weapon/archaeological_find and replace it with something else, this handles when that happens
//yuck
diff --git a/code/modules/mob/living/carbon/human/species/station/station_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
index 64fd72672c..7d1d5e0300 100644
--- a/code/modules/mob/living/carbon/human/species/station/station_vr.dm
+++ b/code/modules/mob/living/carbon/human/species/station/station_vr.dm
@@ -414,21 +414,17 @@ datum/species/harpy
min_age = 18
max_age = 80
+ base_color = "#EECEB3"
+
blurb = "An Avian species, coming from a distant planet, the Rapalas are the very proud race.\
Sol researchers have commented on them having a very close resemblance to the mythical race called 'Harpies',\
who are known for having massive winged arms and talons as feet. They've been clocked at speeds of over 35 miler per hour chasing the planet's many fish-like fauna.\
The Rapalan's home-world 'Verita' is a strangely habitable gas giant, while no physical earth exists, there are fertile floating islands orbiting around the planet from past asteroid activity."
catalogue_data = list(/datum/category_item/catalogue/fauna/rapala)
- //primitive_form = "Saru"
-
spawn_flags = SPECIES_CAN_JOIN
appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_UNDERWEAR | HAS_SKIN_COLOR | HAS_EYE_COLOR
- //flesh_color = "#AFA59E"
- //base_color = "#777777"
- //tail_hair = "feathers"
- //reagent_tag = IS_SERGAL
heat_discomfort_strings = list(
"Your feathers prickle in the heat.",
diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
index b8d4f87a4f..68308efc66 100644
--- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
+++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
@@ -592,7 +592,7 @@
var/total_material = T.matter[material]
if(istype(T,/obj/item/stack))
var/obj/item/stack/stack = T
- total_material *= (0.5 * stack.get_amount())
+ total_material *= stack.get_amount()
if(material == DEFAULT_WALL_MATERIAL)
metal.add_charge(total_material)
if(material == "glass")
diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm
index ab8410b36d..31a7301d9f 100644
--- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm
+++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm
@@ -453,29 +453,31 @@
src.modules += new /obj/item/weapon/pickaxe(src)
src.modules += new /obj/item/weapon/dogborg/jaws/small(src)
src.modules += new /obj/item/device/dogborg/boop_module(src)
+ src.modules += new /obj/item/weapon/gripper(src)
+ src.modules += new /obj/item/weapon/gripper/circuit(src)
src.emag = new /obj/item/weapon/dogborg/pounce(src)
//Painfully slow charger regen but high capacity. Also starts with low amount.
var/datum/matter_synth/metal = new /datum/matter_synth/metal()
metal.name = "Steel reserves"
- metal.recharge_rate = 50
+ metal.recharge_rate = 100
metal.max_energy = 50000
- metal.energy = 5000
+ metal.energy = 10000
var/datum/matter_synth/glass = new /datum/matter_synth/glass()
glass.name = "Glass reserves"
- glass.recharge_rate = 50
+ glass.recharge_rate = 100
glass.max_energy = 50000
- glass.energy = 5000
+ glass.energy = 10000
var/datum/matter_synth/wood = new /datum/matter_synth/wood()
wood.name = "Wood reserves"
- wood.recharge_rate = 50
+ wood.recharge_rate = 100
wood.max_energy = 50000
- wood.energy = 5000
+ wood.energy = 10000
var/datum/matter_synth/plastic = new /datum/matter_synth/plastic()
plastic.name = "Plastic reserves"
- plastic.recharge_rate = 50
+ plastic.recharge_rate = 100
plastic.max_energy = 50000
- plastic.energy = 5000
+ plastic.energy = 10000
var/datum/matter_synth/water = new /datum/matter_synth(500)
water.name = "Water reserves"
water.recharge_rate = 0
diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm
index e453f4c595..33e7cc4796 100644
--- a/code/modules/mob/living/silicon/robot/robot_vr.dm
+++ b/code/modules/mob/living/silicon/robot/robot_vr.dm
@@ -12,6 +12,7 @@
var/notransform
var/original_icon = 'icons/mob/robots.dmi'
var/ui_style_vr = FALSE //Do we use our hud icons?
+ does_spin = FALSE
var/vr_icons = list(
"handy-hydro",
"handy-service",
@@ -234,4 +235,4 @@
if(!can_buckle || !istype(M) || !M.Adjacent(src) || M.buckled)
return
if(buckle_mob(M))
- visible_message("[M] starts riding [name]!")
\ No newline at end of file
+ visible_message("[M] starts riding [name]!")
diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm
index 7a1f219ad9..d44f28973e 100644
--- a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm
+++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm
@@ -1,2 +1,2 @@
/mob/living/simple_mob/animal/space/goose/virgo3b
- faction = "virgo3b"
+ faction = "virgo3b"
\ No newline at end of file
diff --git a/code/modules/power/tesla/coil.dm b/code/modules/power/tesla/coil.dm
index 76029fd66c..ab54a82957 100644
--- a/code/modules/power/tesla/coil.dm
+++ b/code/modules/power/tesla/coil.dm
@@ -95,6 +95,7 @@
playsound(src.loc, 'sound/effects/lightningshock.ogg', 100, 1, extrarange = 5)
tesla_zap(src, 10, power/(coeff/2))
+//TFF 3/6/19 - Port Cit RP fix for infinite frames
/obj/machinery/power/grounding_rod
name = "grounding rod"
desc = "Keep an area from being fried from Edison's Bane."
@@ -105,6 +106,7 @@
can_buckle = TRUE
buckle_lying = FALSE
+ circuit = /obj/item/weapon/circuitboard/grounding_rod
/obj/machinery/power/grounding_rod/pre_mapped
anchored = TRUE
diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
index d8fcf7e5be..fc1fe9d0ff 100644
--- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm
@@ -1811,3 +1811,41 @@ Departamental Swimsuits, for general use
body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS
w_class = ITEMSIZE_NORMAL
slot = ACCESSORY_SLOT_OVER
+
+//General definition for bracer items. No icons.
+/obj/item/clothing/accessory/bracer
+ name = "bracer"
+ desc = "A bracer."
+ icon_state = null
+ item_state = null
+ icon_override = null
+ slot_flags = SLOT_GLOVES | SLOT_TIE
+ w_class = ITEMSIZE_SMALL
+ slot = ACCESSORY_SLOT_ARMBAND
+
+//AegisOA:Xander Bevin
+//WanderingDeviant:S'thasha Tavakdavi
+/obj/item/clothing/accessory/bracer/fluff/xander_sthasha
+ name = "Plasteel Bracer"
+ desc = "A sturdy arm-guard of polished plasteel that sports gold trimming, silver tribal-looping etchings, and a single cut diamond set into its side. Attached to one's forearm with a small, magnetic clasp."
+ icon = 'icons/vore/custom_items_vr.dmi'
+ icon_state = "bracer_xander_sthasha"
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ item_state = "bracer_xander_sthasha"
+
+/obj/item/clothing/accessory/bracer/fluff/xander_sthasha/digest_act(var/atom/movable/item_storage = null)
+ return FALSE
+
+/obj/item/clothing/accessory/bracer/fluff/xander_sthasha/gurgle_contaminate(var/atom/movable/item_storage = null)
+ return FALSE
+
+//Heroman3003:Lauren Zackson
+/obj/item/clothing/accessory/collar/fluff/goldenstring
+ name = "golden string"
+ desc = "It appears to just be a length of gold-colored string attached to a simple plastic clasp, meant to be worn around the neck"
+ icon = 'icons/vore/custom_items_vr.dmi'
+ icon_override = 'icons/vore/custom_onmob_vr.dmi'
+ icon_state = "goldenstring"
+ item_state = "goldenstring"
+ w_class = ITEMSIZE_TINY
+ slot_flags = SLOT_TIE
\ No newline at end of file
diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm
index 716c07fa4e..0751209f12 100644
--- a/code/modules/vore/fluffstuff/custom_items_vr.dm
+++ b/code/modules/vore/fluffstuff/custom_items_vr.dm
@@ -1997,4 +1997,13 @@
name = "gold-trimmed hypospray"
desc = "A gold-trimmed MKII hypospray. The name 'Kenzie Houser' is engraved on the side."
icon = 'icons/vore/custom_items_vr.dmi'
- icon_state = "kenziehypo"
\ No newline at end of file
+ icon_state = "kenziehypo"
+
+//Semaun - Viktor Solothurn
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/viktor
+ name = "flask of expensive alcohol"
+ desc = "A standard vacuum-flask filled with good and expensive drink."
+
+/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/viktor/Initialize()
+ ..()
+ reagents.add_reagent("pwine", 60)
\ No newline at end of file
diff --git a/code/modules/xenoarcheaology/finds/find_spawning.dm b/code/modules/xenoarcheaology/finds/find_spawning.dm
index 37655b098f..2c04d491d0 100644
--- a/code/modules/xenoarcheaology/finds/find_spawning.dm
+++ b/code/modules/xenoarcheaology/finds/find_spawning.dm
@@ -355,8 +355,8 @@
//new_item = new /obj/item/weapon/fossil/base(src.loc)
//the replacement item propogation isn't working, and it's messy code anyway so just do it here
- var/list/candidates = list("/obj/item/weapon/fossil/bone"=9,"/obj/item/weapon/fossil/skull"=3,
- "/obj/item/weapon/fossil/skull/horned"=2)
+ var/list/candidates = list(/obj/item/weapon/fossil/bone = 9,/obj/item/weapon/fossil/skull = 3,
+ /obj/item/weapon/fossil/skull/horned = 2)
var/spawn_type = pickweight(candidates)
new_item = new spawn_type(src.loc)
@@ -605,6 +605,10 @@
new_item.origin_tech[TECH_ARCANE] = 1
new_item.origin_tech[TECH_PRECURSOR] = 1
+ var/turf/simulated/mineral/T = get_turf(new_item)
+ if(istype(T))
+ T.last_find = new_item
+
qdel(src)
else if(talkative)
diff --git a/code/modules/xenoarcheaology/finds/fossils.dm b/code/modules/xenoarcheaology/finds/fossils.dm
index 8df5b92623..38e8d988f6 100644
--- a/code/modules/xenoarcheaology/finds/fossils.dm
+++ b/code/modules/xenoarcheaology/finds/fossils.dm
@@ -10,13 +10,10 @@
var/animal = 1
/obj/item/weapon/fossil/base/New()
- var/list/l = list("/obj/item/weapon/fossil/bone"=9,"/obj/item/weapon/fossil/skull"=3,
- "/obj/item/weapon/fossil/skull/horned"=2)
+ var/list/l = list(/obj/item/weapon/fossil/bone = 9,/obj/item/weapon/fossil/skull = 3,
+ /obj/item/weapon/fossil/skull/horned = 2)
var/t = pickweight(l)
- var/obj/item/weapon/W = new t(src.loc)
- var/turf/T = get_turf(src)
- if(istype(T, /turf/simulated/mineral))
- T:last_find = W
+ new t(src.loc)
qdel(src)
/obj/item/weapon/fossil/bone
diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt
index 4c69df3c3a..d81e3c383c 100644
--- a/config/alienwhitelist.txt
+++ b/config/alienwhitelist.txt
@@ -1,5 +1,6 @@
some~user - Species
+911earlyarther - Xenomorph Hybrid
admiraldragon - Vox
aether_elemental - Daemon
arokha - Protean
diff --git a/config/custom_items.txt b/config/custom_items.txt
index 08e5826dec..6c364c7552 100644
--- a/config/custom_items.txt
+++ b/config/custom_items.txt
@@ -342,6 +342,12 @@ item_path: /obj/item/clothing/suit/security/navyhos
req_access: 58
}
+{
+ckey: mr_signmeup
+character_name: Daniel Fisher
+item_path: /obj/item/clothing/accessory/medal/conduct
+}
+
# ######## N CKEYS
# ######## O CKEYS
# ######## P CKEYS
diff --git a/html/changelog.html b/html/changelog.html
index db7b957f42..d2898f86e3 100644
--- a/html/changelog.html
+++ b/html/changelog.html
@@ -53,6 +53,52 @@
-->
+
04 June 2019
+
Chaoko99 updated:
+
+ - The medibot's minimum configurable threshhold has been lowered to 0, from 5. Perfect for silly-billies coming into medical with 2 brute boo boos, thanks to accidentally throwing something at themselves or.. something.
+
+
Heroman3003 updated:
+
+ - Restricts Alarm Monitor modular computer program to engineering access.
+ - Removed access to departmental networks on camera modular computer program for average people.
+ - Added access to full network on camera modular computer program for heads.
+
+
Mechoid updated:
+
+ - Borers can speak through nearby mobs if they have a sufficient build-up of chemicals.
+ - Borers have a max chemical volume.
+ - The Sakimm, Frostfly, Glitterfly, River Leech, Crystal-Feathered Duck, and Kururak are now able to be used on the map and PoIs.
+ - Glass jars can now hold glitterflies, river leeches, and frostflies.
+ - Glass jars now respect mobs that exist over the lighting plane, adding a special overlay visible when on the ground.
+
+
Nalarac updated:
+
+ - Closed all bugs on tracker that are no longer relevant or a bug.
+
+
Novacat updated:
+
+ - Attempts to fix the timer SS to be moore robust
+ - Fixes bug with custom laptops.
+ - Raises cost of the elite model to 7 loadout points.
+
+
chaoko99 updated:
+
+ - Adds the clientside 'ping' and 'reconnect' commands to the file menu.
+
+
mistyLuminescence updated:
+
+ - Prone people can no longer interact with an empty hand.
+ - Two-handed items are now correctly unwielded when the user's offhand is severed.
+ - Mecha syringe guns now respect pierceproof clothing.
+ - Securitrons now correctly ignore attacks when disabled.
+ - Rechargers now correctly benefit from upgraded capacitors.
+ - Medical record laptops and detective TV camera consoles no longer turn into regular consoles when de- and re-constructed.
+ - Zaddat Shrouds now retain their base name when damaged, if the shroud has been customized.
+ - Adds the makeover kit to the traitor uplink for 5 TC, also available in the Infiltrator bundle null crate in Cargo. Makeover kits can be used to change the user's hair style and color, and eye color.
+ - Random event timers now wait until the round starts to begin counting down.
+
+
06 May 2019
Mechoid updated:
diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml
index b86092211c..bae7843a5b 100644
--- a/html/changelogs/.all_changelog.yml
+++ b/html/changelogs/.all_changelog.yml
@@ -4493,3 +4493,46 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py.
- tweak: Nanoui sends stuff even after client connect.
- tweak: Shortwave radios now can transmit across connected Z levels.
- tweak: Relays on moving platforms (shuttles) will now function.
+2019-06-04:
+ Chaoko99:
+ - tweak: The medibot's minimum configurable threshhold has been lowered to 0, from
+ 5. Perfect for silly-billies coming into medical with 2 brute boo boos, thanks
+ to accidentally throwing something at themselves or.. something.
+ Heroman3003:
+ - tweak: Restricts Alarm Monitor modular computer program to engineering access.
+ - tweak: Removed access to departmental networks on camera modular computer program
+ for average people.
+ - rscadd: Added access to full network on camera modular computer program for heads.
+ Mechoid:
+ - tweak: Borers can speak through nearby mobs if they have a sufficient build-up
+ of chemicals.
+ - tweak: Borers have a max chemical volume.
+ - rscadd: The Sakimm, Frostfly, Glitterfly, River Leech, Crystal-Feathered Duck,
+ and Kururak are now able to be used on the map and PoIs.
+ - tweak: Glass jars can now hold glitterflies, river leeches, and frostflies.
+ - tweak: Glass jars now respect mobs that exist over the lighting plane, adding
+ a special overlay visible when on the ground.
+ Nalarac:
+ - bugfix: Closed all bugs on tracker that are no longer relevant or a bug.
+ Novacat:
+ - bugfix: Attempts to fix the timer SS to be moore robust
+ - tweak: Fixes bug with custom laptops.
+ - tweak: Raises cost of the elite model to 7 loadout points.
+ chaoko99:
+ - rscadd: Adds the clientside 'ping' and 'reconnect' commands to the file menu.
+ mistyLuminescence:
+ - bugfix: Prone people can no longer interact with an empty hand.
+ - bugfix: Two-handed items are now correctly unwielded when the user's offhand is
+ severed.
+ - bugfix: Mecha syringe guns now respect pierceproof clothing.
+ - bugfix: Securitrons now correctly ignore attacks when disabled.
+ - bugfix: Rechargers now correctly benefit from upgraded capacitors.
+ - bugfix: Medical record laptops and detective TV camera consoles no longer turn
+ into regular consoles when de- and re-constructed.
+ - bugfix: Zaddat Shrouds now retain their base name when damaged, if the shroud
+ has been customized.
+ - rscadd: Adds the makeover kit to the traitor uplink for 5 TC, also available in
+ the Infiltrator bundle null crate in Cargo. Makeover kits can be used to change
+ the user's hair style and color, and eye color.
+ - bugfix: Random event timers now wait until the round starts to begin counting
+ down.
diff --git a/html/changelogs/Heroman3003 - cameraccess.yml b/html/changelogs/Heroman3003 - cameraccess.yml
deleted file mode 100644
index eff0288ac1..0000000000
--- a/html/changelogs/Heroman3003 - cameraccess.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: Heroman3003
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - tweak: "Removed access to departmental networks on camera modular computer program for average people."
- - rscadd: "Added access to full network on camera modular computer program for heads."
diff --git a/html/changelogs/Mechoid - Borers.yml b/html/changelogs/Mechoid - Borers.yml
deleted file mode 100644
index f92c619d86..0000000000
--- a/html/changelogs/Mechoid - Borers.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: Mechoid
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - tweak: "Borers can speak through nearby mobs if they have a sufficient build-up of chemicals."
- - tweak: "Borers have a max chemical volume."
diff --git a/html/changelogs/Mechoid - SifAnimalExpansion1.yml b/html/changelogs/Mechoid - SifAnimalExpansion1.yml
deleted file mode 100644
index b8e67e02b2..0000000000
--- a/html/changelogs/Mechoid - SifAnimalExpansion1.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: Mechoid
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - rscadd: "The Shimm, Frostfly, Glitterfly, River Leech, Crystal-Feathered Duck, and Kururak are now able to be used on the map and PoIs."
- - tweak: "Glass jars can now hold glitterflies, river leeches, and frostflies."
- - tweak: "Glass jars now respect mobs that exist over the lighting plane, adding a special overlay visible when on the ground."
diff --git a/html/changelogs/Novacat - Fucktimers.yml b/html/changelogs/Novacat - Fucktimers.yml
deleted file mode 100644
index 4be0cb5dfc..0000000000
--- a/html/changelogs/Novacat - Fucktimers.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: Novacat
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - bugfix: "Attempts to fix the timer SS to be moore robust"
diff --git a/html/changelogs/Novacat - Laptoptweak.yml b/html/changelogs/Novacat - Laptoptweak.yml
deleted file mode 100644
index 50aa91ab55..0000000000
--- a/html/changelogs/Novacat - Laptoptweak.yml
+++ /dev/null
@@ -1,37 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: Novacat
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - tweak: "Fixes bug with custom laptops."
- - tweak: "Raises cost of the elite model to 7 loadout points."
diff --git a/html/changelogs/Heroman3003 - alarmaccess.yml b/html/changelogs/TheFurryFeline - Infinite Frame Fixy.yml
similarity index 77%
rename from html/changelogs/Heroman3003 - alarmaccess.yml
rename to html/changelogs/TheFurryFeline - Infinite Frame Fixy.yml
index b9a97b3880..c6ef9a2316 100644
--- a/html/changelogs/Heroman3003 - alarmaccess.yml
+++ b/html/changelogs/TheFurryFeline - Infinite Frame Fixy.yml
@@ -22,7 +22,7 @@
#################################
# Your name.
-author: Heroman3003
+author: TheFurryFeline
# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
delete-after: True
@@ -33,4 +33,5 @@ delete-after: True
# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
changes:
- - tweak: "Restricts Alarm Monitor modular computer program to engineering access."
+ - bugfix: "Fixes infinite frame production for some machinery objects such as grounding rods or exonet nodes. If there's no available circuit board to get, then don't return anything when attempting deconstruction. Ported from Cit RP. Eliminates 'Cannot read null.board_type' runtimes where they apply."
+ - tweak: "Allows hydroponic machines to be unwrenched."
diff --git a/html/changelogs/chaoko99 - medibots.yml b/html/changelogs/chaoko99 - medibots.yml
deleted file mode 100644
index aefa9bce3a..0000000000
--- a/html/changelogs/chaoko99 - medibots.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: Chaoko99
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - tweak: "The medibot's minimum configurable threshhold has been lowered to 0, from 5. Perfect for silly-billies coming into medical with 2 brute boo boos, thanks to accidentally throwing something at themselves or.. something."
diff --git a/html/changelogs/chaoko99 - reconnect.yml b/html/changelogs/chaoko99 - reconnect.yml
deleted file mode 100644
index 082e552457..0000000000
--- a/html/changelogs/chaoko99 - reconnect.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: chaoko99
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - rscadd: "Adds the clientside 'ping' and 'reconnect' commands to the file menu."
diff --git a/html/changelogs/mistyLuminescence - bugfix.yml b/html/changelogs/mistyLuminescence - bugfix.yml
deleted file mode 100644
index b33e3f0786..0000000000
--- a/html/changelogs/mistyLuminescence - bugfix.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: mistyLuminescence
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - bugfix: Prone people can no longer interact with an empty hand.
- - bugfix: Two-handed items are now correctly unwielded when the user's offhand is severed.
- - bugfix: Mecha syringe guns now respect pierceproof clothing.
- - bugfix: Securitrons now correctly ignore attacks when disabled.
- - bugfix: Rechargers now correctly benefit from upgraded capacitors.
- - bugfix: Medical record laptops and detective TV camera consoles no longer turn into regular consoles when de- and re-constructed.
- - bugfix: Zaddat Shrouds now retain their base name when damaged, if the shroud has been customized.
diff --git a/html/changelogs/mistyLuminescence - makeover.yml b/html/changelogs/mistyLuminescence - makeover.yml
deleted file mode 100644
index e55f71a2ec..0000000000
--- a/html/changelogs/mistyLuminescence - makeover.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: mistyLuminescence
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - rscadd: "Adds the makeover kit to the traitor uplink for 5 TC, also available in the Infiltrator bundle null crate in Cargo. Makeover kits can be used to change the user's hair style and color, and eye color."
diff --git a/html/changelogs/mistyLuminescence - randomevents.yml b/html/changelogs/mistyLuminescence - randomevents.yml
deleted file mode 100644
index e5659f8a4e..0000000000
--- a/html/changelogs/mistyLuminescence - randomevents.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-################################
-# Example Changelog File
-#
-# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
-#
-# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
-# When it is, any changes listed below will disappear.
-#
-# Valid Prefixes:
-# bugfix
-# wip (For works in progress)
-# tweak
-# soundadd
-# sounddel
-# rscadd (general adding of nice things)
-# rscdel (general deleting of nice things)
-# imageadd
-# imagedel
-# maptweak
-# spellcheck (typo fixes)
-# experiment
-#################################
-
-# Your name.
-author: mistyLuminescence
-
-# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
-delete-after: True
-
-# Any changes you've made. See valid prefix list above.
-# INDENT WITH TWO SPACES. NOT TABS. SPACES.
-# SCREW THIS UP AND IT WON'T WORK.
-# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
-# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
-changes:
- - bugfix: Random event timers now wait until the round starts to begin counting down.
\ No newline at end of file
diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi
index 1402c72ccc..b38a0e2113 100644
Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ
diff --git a/icons/vore/custom_onmob_vr.dmi b/icons/vore/custom_onmob_vr.dmi
index 3b41ff2020..d94c0da70d 100644
Binary files a/icons/vore/custom_onmob_vr.dmi and b/icons/vore/custom_onmob_vr.dmi differ
diff --git a/maps/tether/submaps/beach/beach.dmm b/maps/tether/submaps/beach/beach.dmm
index 62e4c7df1e..640ad0bff5 100644
--- a/maps/tether/submaps/beach/beach.dmm
+++ b/maps/tether/submaps/beach/beach.dmm
@@ -34,9 +34,18 @@
/obj/machinery/power/port_gen/pacman/mrs,
/turf/simulated/floor/beach/sand,
/area/tether_away/beach)
+"aj" = (
+/turf/simulated/floor/water/indoors,
+/area/tether_away/beach/coast)
+"ak" = (
+/turf/simulated/floor/water/deep/indoors,
+/area/tether_away/beach/water)
"al" = (
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach)
+"am" = (
+/turf/simulated/floor/water/indoors,
+/area/tether_away/beach/jungle)
"an" = (
/obj/effect/overlay/palmtree_r,
/turf/simulated/floor/beach/sand,
@@ -45,6 +54,13 @@
/obj/effect/overlay/coconut,
/turf/simulated/floor/beach/sand,
/area/tether_away/beach)
+"ap" = (
+/obj/effect/overlay/palmtree_r,
+/turf/simulated/floor/beach/sand,
+/area/tether_away/beach/jungle)
+"aq" = (
+/turf/simulated/wall/wood,
+/area/tether_away/beach)
"ar" = (
/turf/simulated/wall/sandstone,
/area/tether_away/beach)
@@ -242,6 +258,10 @@
/obj/item/weapon/stool/padded,
/turf/simulated/floor/tiled/asteroid_steel,
/area/tether_away/beach)
+"aY" = (
+/obj/structure/bed/double/padded,
+/turf/simulated/floor/wood,
+/area/tether_away/beach)
"aZ" = (
/obj/effect/overlay/palmtree_l,
/turf/simulated/floor/beach/sand,
@@ -266,30 +286,30 @@
/turf/simulated/floor/beach/sand,
/area/tether_away/beach)
"bf" = (
-/turf/simulated/floor/beach/coastline,
-/area/tether_away/beach/coast)
+/turf/simulated/floor/water/indoors,
+/area/tether_away/beach)
"bg" = (
-/turf/simulated/floor/beach/coastwater,
-/area/tether_away/beach/water)
+/turf/unsimulated/wall/planetary/normal,
+/area/tether_away/beach/coast)
"bh" = (
/obj/effect/overlay/coconut,
/turf/simulated/floor/beach/sand/desert,
/area/tether_away/beach/jungle)
"bi" = (
-/turf/simulated/floor/water/shoreline,
-/area/tether_away/beach)
+/turf/unsimulated/wall/planetary/normal,
+/area/tether_away/beach/water)
+"bj" = (
+/turf/simulated/floor/water/indoors,
+/area/tether_away/beach/water)
+"bk" = (
+/turf/simulated/floor/beach/sand,
+/area/tether_away/beach/water)
"bl" = (
/turf/unsimulated/wall/planetary/normal,
/area/tether_away/beach/jungle)
"bm" = (
/turf/simulated/floor/beach/sand/desert,
/area/shuttle/excursion/away_beach)
-"bn" = (
-/turf/unsimulated/wall/planetary/normal,
-/area/tether_away/beach/coast)
-"bo" = (
-/turf/unsimulated/wall/planetary/normal,
-/area/tether_away/beach/water)
"bp" = (
/turf/simulated/floor/beach/sand,
/area/tether_away/beach/jungle)
@@ -431,34 +451,34 @@ bl
bl
ba
ba
-bn
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
+bg
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
"}
(2,1,1) = {"
bl
@@ -572,35 +592,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+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
+bi
"}
(3,1,1) = {"
bl
@@ -714,35 +734,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+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
+bi
"}
(4,1,1) = {"
bl
@@ -856,35 +876,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+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
+bi
"}
(5,1,1) = {"
bl
@@ -998,35 +1018,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+ak
+bi
"}
(6,1,1) = {"
bl
@@ -1140,35 +1160,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+bp
+bp
+am
+am
+ak
+ak
+ak
+ak
+bi
"}
(7,1,1) = {"
bl
@@ -1282,35 +1302,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+bp
+bp
+bp
+bp
+am
+ak
+ak
+ak
+ak
+bi
"}
(8,1,1) = {"
bl
@@ -1424,35 +1444,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+bp
+bp
+bp
+ap
+bp
+am
+am
+ak
+ak
+ak
+bi
"}
(9,1,1) = {"
bl
@@ -1566,35 +1586,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+am
+ak
+ak
+ak
+bi
"}
(10,1,1) = {"
bl
@@ -1708,35 +1728,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+bp
+ap
+bp
+bp
+bp
+bp
+bp
+am
+am
+ak
+ak
+bi
"}
(11,1,1) = {"
bl
@@ -1850,35 +1870,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+bp
+bp
+bp
+bp
+bp
+bp
+ap
+bp
+am
+ak
+ak
+bi
"}
(12,1,1) = {"
bl
@@ -1992,35 +2012,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+bp
+bp
+am
+ak
+ak
+bi
"}
(13,1,1) = {"
bl
@@ -2134,35 +2154,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+ad
+aq
+aq
+aq
+aq
+aw
+ad
+bp
+bp
+am
+ak
+ak
+bi
"}
(14,1,1) = {"
bl
@@ -2276,35 +2296,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+ad
+aq
+aY
+aw
+aB
+aw
+ad
+bp
+bp
+am
+ak
+ak
+bi
"}
(15,1,1) = {"
bl
@@ -2418,35 +2438,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+bp
+ad
+aq
+aw
+aw
+aq
+aw
+ad
+bp
+bp
+am
+ak
+ak
+bi
"}
(16,1,1) = {"
bl
@@ -2560,35 +2580,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+ap
+ad
+aq
+aq
+aq
+aq
+aw
+ad
+bp
+bp
+am
+ak
+ak
+bi
"}
(17,1,1) = {"
bl
@@ -2702,35 +2722,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+ad
+ad
+ad
+ad
+ad
+ad
+ad
+bp
+bp
+am
+ak
+ak
+bi
"}
(18,1,1) = {"
bl
@@ -2844,35 +2864,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+bp
+bp
+bp
+bp
+bp
+ap
+bp
+am
+am
+ak
+ak
+bi
"}
(19,1,1) = {"
bl
@@ -2986,35 +3006,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+bp
+bp
+bp
+bp
+bp
+am
+ak
+ak
+ak
+bi
"}
(20,1,1) = {"
bl
@@ -3128,35 +3148,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+bp
+bp
+bp
+am
+am
+ak
+ak
+ak
+bi
"}
(21,1,1) = {"
bl
@@ -3270,35 +3290,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+bp
+bp
+am
+ak
+ak
+ak
+ak
+bi
"}
(22,1,1) = {"
bl
@@ -3412,35 +3432,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+bi
"}
(23,1,1) = {"
bl
@@ -3554,35 +3574,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+bi
"}
(24,1,1) = {"
bl
@@ -3696,35 +3716,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+bi
"}
(25,1,1) = {"
bl
@@ -3838,35 +3858,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+bp
+am
+am
+ak
+ak
+ak
+bi
"}
(26,1,1) = {"
bl
@@ -3980,35 +4000,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+bp
+bp
+bp
+bp
+am
+ak
+ak
+ak
+bi
"}
(27,1,1) = {"
bl
@@ -4122,35 +4142,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+bp
+bp
+am
+am
+ak
+ak
+ak
+bi
"}
(28,1,1) = {"
bl
@@ -4264,35 +4284,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+am
+am
+am
+am
+ak
+ak
+ak
+ak
+bi
"}
(29,1,1) = {"
bl
@@ -4406,35 +4426,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(30,1,1) = {"
bl
@@ -4548,35 +4568,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(31,1,1) = {"
bl
@@ -4690,35 +4710,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(32,1,1) = {"
bl
@@ -4832,35 +4852,35 @@ aa
aa
aa
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(33,1,1) = {"
bl
@@ -4974,35 +4994,35 @@ aa
aa
aa
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(34,1,1) = {"
bl
@@ -5116,35 +5136,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(35,1,1) = {"
bl
@@ -5258,35 +5278,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(36,1,1) = {"
bl
@@ -5400,35 +5420,35 @@ aa
aa
aa
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(37,1,1) = {"
bl
@@ -5542,35 +5562,35 @@ aa
aa
aa
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(38,1,1) = {"
bl
@@ -5684,35 +5704,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(39,1,1) = {"
bl
@@ -5826,35 +5846,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(40,1,1) = {"
bl
@@ -5968,35 +5988,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(41,1,1) = {"
bl
@@ -6110,35 +6130,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(42,1,1) = {"
bl
@@ -6252,35 +6272,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(43,1,1) = {"
bl
@@ -6394,35 +6414,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(44,1,1) = {"
bl
@@ -6536,35 +6556,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(45,1,1) = {"
bl
@@ -6678,35 +6698,35 @@ aa
aa
aa
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(46,1,1) = {"
bl
@@ -6820,35 +6840,35 @@ aa
aa
aa
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(47,1,1) = {"
bl
@@ -6962,35 +6982,35 @@ aa
aa
aa
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(48,1,1) = {"
bl
@@ -7104,35 +7124,35 @@ aa
aa
aa
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(49,1,1) = {"
bl
@@ -7246,35 +7266,35 @@ aa
aa
aa
bd
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(50,1,1) = {"
bl
@@ -7388,35 +7408,35 @@ aa
aa
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(51,1,1) = {"
bl
@@ -7530,35 +7550,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(52,1,1) = {"
bl
@@ -7672,35 +7692,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(53,1,1) = {"
bl
@@ -7814,35 +7834,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(54,1,1) = {"
bl
@@ -7956,35 +7976,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(55,1,1) = {"
bl
@@ -8098,35 +8118,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(56,1,1) = {"
bl
@@ -8240,35 +8260,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(57,1,1) = {"
bl
@@ -8382,35 +8402,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(58,1,1) = {"
bl
@@ -8524,35 +8544,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(59,1,1) = {"
bl
@@ -8666,35 +8686,35 @@ ad
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(60,1,1) = {"
bl
@@ -8808,35 +8828,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(61,1,1) = {"
bl
@@ -8950,35 +8970,35 @@ ad
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(62,1,1) = {"
bl
@@ -9092,35 +9112,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(63,1,1) = {"
bl
@@ -9234,35 +9254,35 @@ ad
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(64,1,1) = {"
bl
@@ -9376,35 +9396,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(65,1,1) = {"
bl
@@ -9518,35 +9538,35 @@ ad
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(66,1,1) = {"
bl
@@ -9660,35 +9680,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(67,1,1) = {"
bq
@@ -9802,35 +9822,35 @@ ad
UZ
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(68,1,1) = {"
bq
@@ -9944,35 +9964,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+bj
+bj
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(69,1,1) = {"
bq
@@ -10086,35 +10106,35 @@ ad
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+bj
+ak
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(70,1,1) = {"
bq
@@ -10228,35 +10248,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(71,1,1) = {"
bq
@@ -10370,35 +10390,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(72,1,1) = {"
bq
@@ -10512,35 +10532,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(73,1,1) = {"
bq
@@ -10654,35 +10674,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+bj
+ak
+ak
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(74,1,1) = {"
bq
@@ -10796,35 +10816,35 @@ ad
ad
ai
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+bj
+ak
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(75,1,1) = {"
bq
@@ -10938,35 +10958,35 @@ ad
ad
aZ
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+bj
+ak
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(76,1,1) = {"
bq
@@ -11080,35 +11100,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+bj
+ak
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(77,1,1) = {"
bq
@@ -11222,35 +11242,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+ak
+ak
+bj
+ak
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(78,1,1) = {"
bq
@@ -11364,35 +11384,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+ak
+ak
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(79,1,1) = {"
bq
@@ -11506,35 +11526,35 @@ ad
ad
ad
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(80,1,1) = {"
bq
@@ -11648,35 +11668,35 @@ ad
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(81,1,1) = {"
bq
@@ -11790,35 +11810,35 @@ ad
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(82,1,1) = {"
bq
@@ -11932,35 +11952,35 @@ aa
ad
ad
bb
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+bj
+ak
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(83,1,1) = {"
bq
@@ -12074,35 +12094,35 @@ aa
ad
ad
bc
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(84,1,1) = {"
bq
@@ -12216,35 +12236,35 @@ aa
ad
ad
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+bj
+ak
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(85,1,1) = {"
bq
@@ -12358,35 +12378,35 @@ aa
aa
ad
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+ak
+bj
+ak
+ak
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(86,1,1) = {"
bq
@@ -12500,35 +12520,35 @@ aa
aa
ad
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(87,1,1) = {"
bq
@@ -12642,35 +12662,35 @@ aa
aa
ad
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(88,1,1) = {"
bq
@@ -12784,35 +12804,35 @@ aa
aa
ad
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+ak
+bj
+ak
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(89,1,1) = {"
bq
@@ -12926,35 +12946,35 @@ aa
aa
ad
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(90,1,1) = {"
bq
@@ -13068,35 +13088,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(91,1,1) = {"
bq
@@ -13210,35 +13230,35 @@ aa
aa
aa
be
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(92,1,1) = {"
bq
@@ -13352,35 +13372,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(93,1,1) = {"
bq
@@ -13494,35 +13514,35 @@ aa
aa
aa
bb
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(94,1,1) = {"
bq
@@ -13636,35 +13656,35 @@ aa
aa
aa
bc
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(95,1,1) = {"
bq
@@ -13778,35 +13798,35 @@ aa
aa
aa
bb
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(96,1,1) = {"
bq
@@ -13920,35 +13940,35 @@ aa
aa
aa
bc
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(97,1,1) = {"
bq
@@ -14062,35 +14082,35 @@ aa
aa
aa
bb
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(98,1,1) = {"
bq
@@ -14204,35 +14224,35 @@ aa
aa
aa
bc
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(99,1,1) = {"
bq
@@ -14346,35 +14366,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(100,1,1) = {"
bq
@@ -14488,35 +14508,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(101,1,1) = {"
bq
@@ -14630,35 +14650,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(102,1,1) = {"
bq
@@ -14772,35 +14792,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(103,1,1) = {"
br
@@ -14914,35 +14934,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(104,1,1) = {"
br
@@ -15056,35 +15076,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(105,1,1) = {"
br
@@ -15198,35 +15218,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(106,1,1) = {"
br
@@ -15340,35 +15360,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(107,1,1) = {"
br
@@ -15482,35 +15502,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(108,1,1) = {"
br
@@ -15624,35 +15644,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(109,1,1) = {"
bq
@@ -15766,35 +15786,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(110,1,1) = {"
bq
@@ -15908,35 +15928,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(111,1,1) = {"
bq
@@ -16050,35 +16070,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(112,1,1) = {"
bq
@@ -16192,35 +16212,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(113,1,1) = {"
bq
@@ -16334,35 +16354,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(114,1,1) = {"
bq
@@ -16476,35 +16496,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(115,1,1) = {"
bq
@@ -16618,35 +16638,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(116,1,1) = {"
bq
@@ -16760,35 +16780,35 @@ aa
aa
aa
ad
-ad
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(117,1,1) = {"
bq
@@ -16902,35 +16922,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(118,1,1) = {"
bq
@@ -17044,35 +17064,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+bj
+ak
+ak
+bj
+bj
+bj
+bk
+bk
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(119,1,1) = {"
bq
@@ -17186,35 +17206,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bk
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(120,1,1) = {"
bq
@@ -17328,35 +17348,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+bj
+bj
+bj
+bk
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(121,1,1) = {"
bq
@@ -17470,35 +17490,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(122,1,1) = {"
bq
@@ -17612,35 +17632,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bk
+bk
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(123,1,1) = {"
bq
@@ -17754,35 +17774,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bk
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(124,1,1) = {"
bq
@@ -17896,35 +17916,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(125,1,1) = {"
bq
@@ -18038,35 +18058,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bk
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(126,1,1) = {"
bq
@@ -18180,35 +18200,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(127,1,1) = {"
bq
@@ -18322,35 +18342,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(128,1,1) = {"
bq
@@ -18464,35 +18484,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(129,1,1) = {"
bq
@@ -18606,35 +18626,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(130,1,1) = {"
bq
@@ -18748,35 +18768,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(131,1,1) = {"
bq
@@ -18890,35 +18910,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(132,1,1) = {"
bq
@@ -19032,35 +19052,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(133,1,1) = {"
bq
@@ -19174,35 +19194,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(134,1,1) = {"
bq
@@ -19316,35 +19336,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(135,1,1) = {"
bq
@@ -19458,35 +19478,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(136,1,1) = {"
bq
@@ -19600,35 +19620,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(137,1,1) = {"
bq
@@ -19742,35 +19762,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+bj
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+ak
+bi
"}
(138,1,1) = {"
bq
@@ -19884,35 +19904,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+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
+bi
"}
(139,1,1) = {"
bq
@@ -20026,35 +20046,35 @@ aa
aa
aa
ad
-bi
bf
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bg
-bo
+aj
+bj
+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
+bi
"}
(140,1,1) = {"
bq
@@ -20169,32 +20189,32 @@ bl
bl
ba
ba
-bn
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
-bo
+bg
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
+bi
"}
diff --git a/maps/tether/submaps/tether_plains.dmm b/maps/tether/submaps/tether_plains.dmm
index 5c026a3fc1..b86fed77a2 100644
--- a/maps/tether/submaps/tether_plains.dmm
+++ b/maps/tether/submaps/tether_plains.dmm
@@ -27,8 +27,13 @@
/turf/simulated/wall/r_wall,
/area/tether/outpost/exploration_shed)
"ai" = (
-/obj/machinery/door/airlock/multi_tile/metal/mait{
- dir = 4
+/obj/effect/floor_decal/rust,
+/obj/machinery/button/remote/blast_door{
+ dir = 1;
+ id = "wilderness";
+ name = "Anti-Fauna shutters";
+ pixel_x = 0;
+ pixel_y = -25
},
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/outpost/exploration_shed)
@@ -68,9 +73,38 @@
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
/area/tether/outpost/exploration_shed)
"an" = (
-/obj/effect/floor_decal/rust,
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/tether/outpost/exploration_shed)
+"ao" = (
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "wilderness";
+ name = "Anti-Fauna Shutters"
+ },
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
-/area/tether/outpost/exploration_plains)
+/area/tether/outpost/exploration_shed)
+"ap" = (
+/obj/effect/floor_decal/rust,
+/obj/machinery/door/blast/shutters{
+ dir = 2;
+ id = "wilderness";
+ name = "Anti-Fauna Shutters"
+ },
+/turf/simulated/floor/tiled/steel_dirty/virgo3b,
+/area/tether/outpost/exploration_shed)
+"aq" = (
+/obj/machinery/button/remote/blast_door{
+ dir = 2;
+ id = "wilderness";
+ name = "Anti-Fauna shutters";
+ pixel_x = -1;
+ pixel_y = 25
+ },
+/turf/simulated/floor/outdoors/dirt/virgo3b,
+/area/tether/outpost/exploration_shed)
+"ar" = (
+/turf/simulated/floor/outdoors/grass/sif/virgo3b,
+/area/tether/outpost/exploration_shed)
"bj" = (
/obj/effect/floor_decal/rust,
/turf/simulated/floor/tiled/steel_dirty/virgo3b,
@@ -9035,12 +9069,12 @@ ac
"}
(64,1,1) = {"
aa
-ad
-ad
-ad
-ad
-ad
-ad
+an
+an
+an
+an
+an
+an
ab
ab
ab
@@ -9182,7 +9216,7 @@ ag
ag
ag
ag
-ad
+an
ad
ad
ab
@@ -9324,7 +9358,7 @@ aj
bj
bj
ag
-ad
+an
ad
ad
ab
@@ -9466,7 +9500,7 @@ bj
bj
bj
ah
-ad
+an
ad
ad
ab
@@ -9607,8 +9641,8 @@ bj
bj
bj
bj
-ai
-an
+ao
+bj
ad
ad
ad
@@ -9749,8 +9783,8 @@ bj
bj
bj
bj
+ap
bj
-an
ad
ad
ab
@@ -9890,9 +9924,9 @@ af
bj
bj
bj
-bj
-ah
-ad
+ai
+ag
+aq
ad
ab
ab
@@ -10033,8 +10067,8 @@ bj
bj
bj
bj
-ai
-an
+ao
+bj
ad
ab
ab
@@ -10175,8 +10209,8 @@ bj
bj
bj
bj
+ap
bj
-an
ad
ad
ab
@@ -10318,7 +10352,7 @@ bj
bj
bj
ah
-ad
+an
ad
ad
ab
@@ -10460,7 +10494,7 @@ ak
al
am
ag
-ad
+an
ad
ab
ab
@@ -10602,7 +10636,7 @@ ag
ag
ag
ag
-ad
+an
ab
ab
ab
@@ -10739,12 +10773,12 @@ ac
"}
(76,1,1) = {"
aa
-ad
-ad
-ad
-ad
-ad
-ab
+an
+an
+an
+an
+an
+ar
ab
ab
ab
diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm
index 2b2f4d5351..428d7fba07 100644
--- a/maps/tether/tether-01-surface1.dmm
+++ b/maps/tether/tether-01-surface1.dmm
@@ -857,15 +857,15 @@
d2 = 4;
icon_state = "2-4"
},
-/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
- dir = 1
- },
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 8
},
/obj/effect/floor_decal/steeldecal/steel_decals4{
dir = 5
},
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
/turf/simulated/floor/tiled,
/area/tether/surfacebase/mining_main/refinery)
"abJ" = (
@@ -912,8 +912,11 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- 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/tether/surfacebase/mining_main/refinery)
@@ -926,21 +929,25 @@
d2 = 8;
icon_state = "4-8"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- 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/tether/surfacebase/mining_main/refinery)
"abP" = (
/turf/simulated/wall,
/area/tether/surfacebase/mining_main/uxstorage)
"abQ" = (
+/obj/machinery/light,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/mining_main/refinery)
+"abR" = (
/obj/machinery/newscaster{
pixel_x = 0;
pixel_y = -30
@@ -950,55 +957,36 @@
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/steel_grid,
/area/tether/surfacebase/mining_main/refinery)
-"abR" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
"abS" = (
-/obj/effect/floor_decal/techfloor{
- dir = 4
+/obj/machinery/camera/network/cargo{
+ dir = 1;
+ name = "security camera"
},
-/obj/structure/railing{
- dir = 8
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 8
- },
-/obj/random/junk,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
-"abT" = (
-/turf/simulated/wall,
-/area/maintenance/lower/mining_eva)
-"abU" = (
-/obj/machinery/light,
/obj/structure/cable/green{
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,
/area/tether/surfacebase/mining_main/refinery)
+"abT" = (
+/turf/simulated/wall,
+/area/maintenance/lower/mining_eva)
+"abU" = (
+/obj/machinery/door/airlock/maintenance/common{
+ name = "Trash Pit Access";
+ req_one_access = list(48)
+ },
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable/green{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled/steel_grid,
+/area/tether/surfacebase/mining_main/refinery)
"abV" = (
/obj/effect/floor_decal/borderfloor/corner{
dir = 4
@@ -1012,42 +1000,22 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/mining_main/storage)
"abW" = (
-/obj/machinery/door/airlock/maintenance/common{
- name = "Trash Pit Access";
- req_one_access = list(48)
- },
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+/obj/effect/floor_decal/techfloor{
dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
+/obj/structure/railing{
+ dir = 8
},
-/turf/simulated/floor/tiled/steel_grid,
-/area/tether/surfacebase/mining_main/refinery)
+/obj/effect/decal/cleanable/dirt,
+/obj/random/junk,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"abX" = (
-/obj/machinery/camera/network/cargo{
- dir = 1;
- name = "security camera"
- },
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 4
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 4
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/mining_main/refinery)
+/obj/structure/catwalk,
+/obj/effect/decal/cleanable/dirt,
+/obj/effect/floor_decal/rust,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/trash_pit)
"abY" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -1085,20 +1053,16 @@
/area/tether/surfacebase/mining_main/storage)
"acb" = (
/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 2;
- d2 = 8;
- icon_state = "2-8"
+/obj/machinery/atmospherics/pipe/simple/visible/yellow{
+ dir = 9
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
+/obj/structure/disposalpipe/segment{
+ dir = 4
},
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 10
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/manifold/visible/supply,
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"acc" = (
/obj/effect/floor_decal/borderfloor{
dir = 1
@@ -1262,11 +1226,19 @@
/area/maintenance/lower/research)
"acp" = (
/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/junction,
+/obj/random/junk,
+/obj/machinery/atmospherics/pipe/simple/visible/supply{
+ dir = 10
+ },
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
+ dir = 10
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/maintenance/lower/xenoflora)
"acq" = (
/obj/effect/floor_decal/techfloor{
dir = 4
@@ -1619,22 +1591,16 @@
/turf/simulated/floor/tiled,
/area/hallway/lower/first_west)
"acW" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/structure/cable/green{
- d1 = 1;
- d2 = 2;
+/obj/machinery/door/firedoor/glass,
+/obj/structure/cable{
icon_state = "1-2"
},
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 5
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply{
- dir = 5
- },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/atmospherics/pipe/simple/visible/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/visible/supply,
/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/area/maintenance/lower/xenoflora)
"acX" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -1889,11 +1855,16 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/mining_eva)
"adn" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 8
+ },
+/obj/machinery/computer/area_atmos/tag{
+ dir = 4;
+ scrub_id = "atrium"
+ },
+/turf/simulated/floor/tiled,
+/area/rnd/xenobiology/xenoflora_storage)
"ado" = (
/obj/machinery/atmospherics/pipe/simple/visible/universal,
/turf/simulated/floor/plating,
@@ -2473,18 +2444,6 @@
/obj/random/maintenance/clean,
/turf/simulated/floor/plating,
/area/maintenance/lower/trash_pit)
-"aej" = (
-/obj/effect/floor_decal/techfloor,
-/obj/structure/railing{
- dir = 1
- },
-/obj/effect/decal/cleanable/dirt,
-/obj/effect/floor_decal/rust,
-/obj/machinery/atmospherics/unary/vent_pump/on{
- dir = 1
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
"aek" = (
/obj/effect/floor_decal/techfloor,
/obj/structure/railing{
@@ -5023,17 +4982,6 @@
/obj/machinery/light/small,
/turf/simulated/floor/plating,
/area/storage/surface_eva)
-"aiB" = (
-/obj/structure/catwalk,
-/obj/effect/decal/cleanable/dirt,
-/obj/structure/cable/green{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/supply,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/trash_pit)
"aiC" = (
/obj/structure/catwalk,
/obj/effect/decal/cleanable/dirt,
@@ -10542,31 +10490,6 @@
/obj/effect/floor_decal/steeldecal/steel_decals7,
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_stairs_one)
-"axB" = (
-/obj/structure/catwalk,
-/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/visible/supply{
- dir = 9
- },
-/obj/machinery/atmospherics/pipe/simple/visible/yellow{
- dir = 9
- },
-/obj/structure/disposalpipe/segment{
- dir = 4
- },
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
-"axC" = (
-/obj/structure/catwalk,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/junction,
-/obj/random/junk,
-/turf/simulated/floor/tiled/techfloor,
-/area/maintenance/lower/xenoflora)
"axF" = (
/obj/machinery/hologram/holopad,
/turf/simulated/floor/tiled,
@@ -11104,15 +11027,6 @@
},
/turf/simulated/floor/tiled,
/area/rnd/xenobiology/xenoflora/lab_atmos)
-"ayI" = (
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/xenoflora)
"ayJ" = (
/obj/structure/closet/crate,
/obj/random/maintenance/engineering,
@@ -20669,17 +20583,6 @@
},
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
-"bEv" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 8
- },
-/obj/machinery/computer/area_atmos/tag{
- dir = 4;
- scrub_id = "rnd_can_store"
- },
-/turf/simulated/floor/tiled,
-/area/rnd/xenobiology/xenoflora_storage)
"bED" = (
/obj/machinery/light/small{
dir = 4;
@@ -39054,7 +38957,7 @@ aAS
bwi
aEM
aFn
-bEv
+adn
aFn
aGE
bKm
@@ -40604,7 +40507,7 @@ aZz
auB
avy
awv
-axB
+acb
alg
wRT
crL
@@ -40746,8 +40649,8 @@ aZw
bbQ
avz
avz
-axC
-ayI
+acp
+acW
azD
blA
aBd
@@ -45676,7 +45579,7 @@ aar
aaI
aaC
abs
-abO
+abN
acP
ack
acK
@@ -45818,7 +45721,7 @@ aar
aaI
aaC
abh
-abN
+abO
abM
acl
acL
@@ -45960,7 +45863,7 @@ aar
aaJ
aaC
abi
-abU
+abQ
abL
abL
abM
@@ -46102,7 +46005,7 @@ aar
aaM
aaC
abt
-abQ
+abR
abP
acm
acM
@@ -46244,7 +46147,7 @@ aar
aaN
aaX
abk
-abX
+abS
abP
acn
adY
@@ -46386,7 +46289,7 @@ aar
aar
aar
aar
-abW
+abU
abP
abP
abP
@@ -46528,8 +46431,8 @@ aah
aah
aaU
abl
-acb
-acW
+aiG
+adg
adg
aef
aef
@@ -46671,12 +46574,12 @@ aah
aaU
abl
abH
-abR
-acp
-acp
-adn
-aiB
-aej
+abH
+abX
+abX
+abH
+aiF
+aek
aaU
aah
aah
@@ -46813,7 +46716,7 @@ aah
aaU
abm
ace
-abS
+abW
acq
aen
abH
diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm
index 8bce608604..7eddd89ca5 100644
--- a/maps/tether/tether-02-surface2.dmm
+++ b/maps/tether/tether-02-surface2.dmm
@@ -3358,59 +3358,21 @@
/turf/simulated/floor,
/area/maintenance/lower/north)
"ho" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/obj/machinery/atmospherics/unary/vent_scrubber/on{
- dir = 4
- },
-/obj/item/device/radio/intercom{
- dir = 8;
- pixel_x = -24
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
+/turf/simulated/mineral,
+/area/tether/surfacebase/fish_farm)
"hp" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
+/obj/machinery/floodlight,
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
"hq" = (
-/obj/machinery/light/small{
- dir = 1
- },
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/obj/machinery/door/firedoor/glass/hidden/steel{
- dir = 2
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
"hr" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
+/turf/simulated/floor/water/indoors,
+/area/tether/surfacebase/fish_farm)
"hs" = (
-/obj/effect/floor_decal/industrial/warning{
- icon_state = "warning";
- dir = 1
- },
-/obj/effect/floor_decal/steeldecal/steel_decals6{
- dir = 10
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"ht" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -3491,17 +3453,15 @@
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/lower/bar)
"hC" = (
-/obj/structure/cable{
- icon_state = "1-2"
+/obj/machinery/light/small{
+ icon_state = "bulb1";
+ dir = 1
},
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/north)
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"hD" = (
-/obj/machinery/door/firedoor/glass,
-/obj/machinery/door/airlock/maintenance/common,
-/turf/simulated/floor/plating,
-/area/tether/surfacebase/north_staires_two)
+/turf/simulated/wall,
+/area/tether/surfacebase/fish_farm)
"hE" = (
/obj/machinery/atmospherics/unary/vent_pump/on{
dir = 4
@@ -3562,23 +3522,9 @@
/turf/simulated/floor/tiled,
/area/tether/surfacebase/north_staires_two)
"hI" = (
-/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/effect/floor_decal/steeldecal/steel_decals6{
- dir = 5
- },
-/turf/simulated/floor/tiled,
-/area/tether/surfacebase/north_staires_two)
+/obj/machinery/door/airlock/maintenance/common,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/atrium_two)
"hJ" = (
/obj/effect/floor_decal/spline/plain{
dir = 4
@@ -3819,14 +3765,9 @@
/turf/simulated/wall,
/area/maintenance/lower/rnd)
"ij" = (
-/obj/machinery/door/airlock/maintenance/common,
-/obj/machinery/door/firedoor/glass,
-/obj/structure/cable{
- icon_state = "1-2"
- },
-/obj/structure/disposalpipe/segment,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
+/mob/living/simple_mob/animal/passive/fish/bass,
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"ik" = (
/obj/machinery/power/apc{
dir = 1;
@@ -3958,45 +3899,22 @@
/area/maintenance/lower/rnd)
"iy" = (
/obj/structure/cable{
- d1 = 4;
- d2 = 8;
- icon_state = "4-8"
+ icon_state = "2-4"
},
-/obj/structure/cable{
- d1 = 1;
- d2 = 8;
- icon_state = "1-8"
- },
-/obj/effect/floor_decal/industrial/warning,
-/obj/structure/disposalpipe/segment{
- dir = 8;
- icon_state = "pipe-c"
- },
-/obj/structure/railing,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
"iz" = (
-/obj/machinery/light/small{
- dir = 1
- },
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/effect/floor_decal/industrial/warning/corner{
- dir = 8
- },
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
"iA" = (
/obj/structure/cable{
icon_state = "4-8"
},
-/obj/structure/cable{
- icon_state = "1-8"
- },
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
"iB" = (
/obj/structure/cable{
icon_state = "4-8"
@@ -4005,25 +3923,31 @@
/turf/simulated/floor/plating,
/area/maintenance/lower/rnd)
"iC" = (
-/obj/structure/cable{
- icon_state = "16-0"
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/machinery/atmospherics/unary/vent_scrubber/on{
+ dir = 4
},
/obj/structure/cable{
- icon_state = "0-8"
+ icon_state = "4-8"
},
-/obj/effect/floor_decal/industrial/outline/yellow,
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
"iD" = (
-/obj/machinery/alarm{
- dir = 8;
- icon_state = "alarm0";
- pixel_x = 24
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
},
-/obj/effect/decal/cleanable/dirt,
-/turf/simulated/floor/plating,
-/area/maintenance/lower/rnd)
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 10
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
"iE" = (
/obj/effect/floor_decal/borderfloor{
dir = 4
@@ -10033,6 +9957,39 @@
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
+"tO" = (
+/obj/effect/floor_decal/spline/plain{
+ dir = 4
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"tP" = (
+/obj/machinery/light{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/item/device/radio/intercom{
+ dir = 1;
+ pixel_y = 24;
+ req_access = list()
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"tQ" = (
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"tR" = (
+/obj/structure/table/rack,
+/obj/item/weapon/reagent_containers/food/snacks/candy,
+/obj/item/weapon/reagent_containers/food/snacks/candy,
+/obj/item/weapon/reagent_containers/food/snacks/candy,
+/obj/item/weapon/reagent_containers/food/snacks/candy,
+/obj/item/weapon/reagent_containers/food/snacks/candy,
+/obj/item/weapon/reagent_containers/food/snacks/candy,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"tS" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10072,9 +10029,24 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
+"tU" = (
+/obj/effect/floor_decal/rust,
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
"tV" = (
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
+"tW" = (
+/obj/structure/railing,
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"tX" = (
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
@@ -10103,6 +10075,28 @@
/obj/machinery/portable_atmospherics/powered/scrubber,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
+"ub" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"uc" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/machinery/door/firedoor/glass/hidden/steel{
+ dir = 2
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
"ud" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10115,6 +10109,15 @@
/obj/structure/disposalpipe/segment,
/turf/simulated/floor/tiled/techmaint,
/area/tether/surfacebase/east_stairs_two)
+"ue" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/fishing_rod/modern,
+/obj/item/weapon/material/fishing_rod/modern,
+/obj/item/weapon/material/fishing_rod/modern,
+/obj/item/weapon/material/fishing_rod/modern,
+/obj/item/weapon/material/fishing_rod/modern,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"uf" = (
/obj/effect/floor_decal/corner_techfloor_grid{
dir = 9
@@ -10165,6 +10168,145 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
+"ul" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/turf/simulated/wall,
+/area/tether/surfacebase/fish_farm)
+"um" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"un" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"uo" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"up" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/unary/vent_pump/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"uq" = (
+/obj/machinery/atmospherics/unary/vent_scrubber/on,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"ur" = (
+/obj/structure/table/rack,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/obj/item/weapon/material/fishing_net,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"us" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 10
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 8;
+ icon_state = "2-8"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
+"ut" = (
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
+"uu" = (
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/obj/machinery/camera/network/tether{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"uv" = (
+/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/tiled,
+/area/tether/surfacebase/atrium_two)
+"uw" = (
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"ux" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 6
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"uy" = (
+/obj/machinery/light{
+ dir = 8;
+ icon_state = "tube1"
+ },
+/obj/machinery/hologram/holopad,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"uz" = (
+/obj/structure/table/rack,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/obj/item/stack/cable_coil/pink,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"uA" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"uB" = (
+/obj/structure/railing,
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"uC" = (
/obj/effect/floor_decal/borderfloor{
dir = 8
@@ -10222,6 +10364,10 @@
},
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
+"uH" = (
+/obj/effect/floor_decal/industrial/warning/corner,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"uI" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -10256,6 +10402,12 @@
/obj/item/weapon/stool,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
+"uK" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/indoors,
+/area/tether/surfacebase/fish_farm)
"uL" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -10275,6 +10427,18 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
+"uM" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"uN" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -10289,6 +10453,10 @@
},
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
+"uO" = (
+/obj/structure/catwalk,
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
"uP" = (
/obj/structure/cable/cyan{
d1 = 4;
@@ -10351,6 +10519,13 @@
},
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
+"uU" = (
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"uV" = (
/obj/machinery/atmospherics/portables_connector{
dir = 4
@@ -10383,6 +10558,25 @@
/obj/machinery/meter,
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
+"uY" = (
+/obj/effect/floor_decal/spline/plain{
+ icon_state = "spline_plain";
+ dir = 8
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"uZ" = (
+/obj/effect/floor_decal/industrial/warning{
+ 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/tether/surfacebase/fish_farm)
"va" = (
/obj/structure/railing{
dir = 4
@@ -10438,6 +10632,124 @@
/obj/random/trash_pile,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
+"vg" = (
+/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/tether/surfacebase/fish_farm)
+"vh" = (
+/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/tether/surfacebase/atrium_two)
+"vi" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/light{
+ dir = 4
+ },
+/obj/structure/disposalpipe/segment,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"vj" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ d1 = 2;
+ d2 = 4;
+ icon_state = "2-4"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"vk" = (
+/obj/structure/cable{
+ 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/junction,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"vl" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"vm" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"vn" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"vo" = (
+/obj/effect/floor_decal/industrial/warning/corner{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"vp" = (
+/obj/structure/railing{
+ dir = 8
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"vq" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/multi_tile/glass{
+ dir = 1;
+ name = "Fish Farm"
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"vr" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -10456,6 +10768,15 @@
/obj/machinery/portable_atmospherics/canister/oxygen,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
+"vs" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
"vt" = (
/obj/effect/floor_decal/borderfloor{
dir = 6
@@ -10476,6 +10797,29 @@
/obj/machinery/recharge_station,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_eva)
+"vu" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8";
+ pixel_x = 0
+ },
+/obj/effect/floor_decal/steeldecal/steel_decals6{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{
+ dir = 1
+ },
+/obj/machinery/atmospherics/pipe/manifold/hidden/supply{
+ dir = 1
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 4;
+ icon_state = "1-4"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/north_staires_two)
"vv" = (
/obj/effect/floor_decal/borderfloor{
dir = 10
@@ -10545,6 +10889,22 @@
/obj/item/device/floor_painter,
/turf/simulated/floor/tiled,
/area/engineering/lower/atmos_lockers)
+"vA" = (
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/machinery/power/apc{
+ dir = 4;
+ name = "east bump";
+ pixel_x = 28
+ },
+/obj/structure/cable,
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"vB" = (
+/obj/machinery/light/small,
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
"vC" = (
/obj/machinery/atmospherics/unary/vent_scrubber/on{
dir = 4
@@ -10562,6 +10922,27 @@
/obj/effect/floor_decal/corner/yellow/bordercorner2,
/turf/simulated/floor/tiled/monotile,
/area/engineering/atmos)
+"vD" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 2;
+ icon_state = "1-2";
+ pixel_y = 0
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"vE" = (
+/obj/machinery/light{
+ dir = 8
+ },
+/turf/simulated/floor/tiled/techfloor,
+/area/tether/surfacebase/fish_farm)
"vF" = (
/obj/machinery/light_switch{
pixel_y = -28
@@ -10598,6 +10979,17 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/engineering/atmos/storage)
+"vK" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/atrium_two)
"vL" = (
/obj/effect/floor_decal/rust,
/obj/effect/decal/cleanable/dirt,
@@ -10611,6 +11003,29 @@
},
/turf/simulated/floor/plating,
/area/maintenance/engineering/pumpstation)
+"vM" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"vN" = (
+/obj/machinery/door/firedoor/glass,
+/obj/machinery/door/airlock/maintenance/common,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/north_staires_two)
+"vO" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 1
+ },
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
"vP" = (
/obj/effect/floor_decal/corner/purple{
icon_state = "corner_white";
@@ -10692,6 +11107,42 @@
/obj/structure/catwalk,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
+"vW" = (
+/obj/effect/floor_decal/spline/plain,
+/turf/simulated/floor/beach/sand/desert,
+/area/tether/surfacebase/fish_farm)
+"vX" = (
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/structure/disposalpipe/segment{
+ dir = 4
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"vY" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian,
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
+"vZ" = (
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/structure/disposalpipe/segment,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"wa" = (
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply,
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
"wb" = (
/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,
/obj/machinery/atmospherics/pipe/simple/hidden/supply,
@@ -10705,6 +11156,57 @@
"wc" = (
/turf/simulated/wall,
/area/engineering/lower/atmos_lockers)
+"wd" = (
+/obj/machinery/door/airlock/maintenance/common,
+/obj/effect/floor_decal/industrial/warning{
+ icon_state = "warning";
+ dir = 1
+ },
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/fish_farm)
+"we" = (
+/obj/structure/cable{
+ d1 = 4;
+ d2 = 8;
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ d1 = 1;
+ d2 = 8;
+ icon_state = "1-8"
+ },
+/obj/effect/floor_decal/industrial/warning,
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/obj/structure/railing,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 5
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 5
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"wf" = (
+/obj/machinery/light/small{
+ dir = 1
+ },
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/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
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
"wg" = (
/obj/structure/cable/cyan{
d1 = 1;
@@ -10737,9 +11239,74 @@
/obj/machinery/door/firedoor/glass,
/turf/simulated/floor/tiled,
/area/engineering/atmos)
+"wj" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/structure/cable{
+ icon_state = "1-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"wk" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"wl" = (
+/obj/structure/cable{
+ icon_state = "16-0"
+ },
+/obj/structure/cable{
+ icon_state = "0-8"
+ },
+/obj/effect/floor_decal/industrial/outline/yellow,
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 4
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 4
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
"wm" = (
/turf/simulated/wall,
/area/maintenance/engineering/pumpstation)
+"wn" = (
+/obj/machinery/alarm{
+ dir = 8;
+ icon_state = "alarm0";
+ pixel_x = 24
+ },
+/obj/effect/decal/cleanable/dirt,
+/obj/machinery/atmospherics/pipe/simple/hidden/supply{
+ dir = 9;
+ pixel_y = 0
+ },
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/turf/simulated/floor/plating,
+/area/maintenance/lower/rnd)
+"wo" = (
+/turf/simulated/floor/plating,
+/area/tether/surfacebase/fish_farm)
"wp" = (
/obj/machinery/door/airlock/maintenance/engi{
name = "Pump Station"
@@ -10793,6 +11360,43 @@
},
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
+"wt" = (
+/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{
+ dir = 9
+ },
+/obj/machinery/camera/network/civilian{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
+"wu" = (
+/obj/structure/cable{
+ icon_state = "4-8"
+ },
+/obj/machinery/light{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"wv" = (
+/obj/structure/disposalpipe/segment{
+ dir = 8;
+ icon_state = "pipe-c"
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/atrium_two)
+"ww" = (
+/obj/structure/railing{
+ icon_state = "railing0";
+ dir = 4
+ },
+/obj/machinery/camera/network/civilian{
+ icon_state = "camera";
+ dir = 10
+ },
+/turf/simulated/floor/water/deep/indoors,
+/area/tether/surfacebase/fish_farm)
"wx" = (
/obj/structure/cable/green{
d1 = 4;
@@ -10843,14 +11447,39 @@
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/tiled/techfloor,
/area/maintenance/asmaint2)
+"wA" = (
+/obj/structure/closet/hydrant,
+/turf/simulated/wall,
+/area/tether/surfacebase/fish_farm)
"wB" = (
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
+"wC" = (
+/obj/item/device/radio/intercom,
+/turf/simulated/wall,
+/area/tether/surfacebase/north_staires_two)
"wD" = (
/obj/random/junk,
/obj/effect/decal/cleanable/dirt,
/turf/simulated/floor/plating,
/area/maintenance/asmaint2)
+"wE" = (
+/obj/machinery/light{
+ dir = 4;
+ icon_state = "tube1"
+ },
+/obj/effect/floor_decal/industrial/warning{
+ dir = 8
+ },
+/obj/structure/cable{
+ icon_state = "1-2"
+ },
+/obj/machinery/disposal,
+/obj/structure/disposalpipe/trunk{
+ dir = 1
+ },
+/turf/simulated/floor/tiled,
+/area/tether/surfacebase/fish_farm)
"wG" = (
/obj/structure/cable/cyan{
d1 = 2;
@@ -12014,7 +12643,7 @@
},
/obj/machinery/computer/area_atmos/tag{
dir = 4;
- scrub_id = "rnd_can_store"
+ scrub_id = "atrium"
},
/turf/simulated/floor/tiled,
/area/engineering/atmos/monitoring)
@@ -24516,14 +25145,14 @@ ac
ac
ac
ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
+hD
+hD
+hD
+hD
+hD
+hD
+hD
+hD
ac
ac
kb
@@ -24658,14 +25287,14 @@ ac
ac
ac
ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
+hD
+vE
+ut
+ut
+ut
+ut
+vE
+hD
ac
ac
kb
@@ -24800,14 +25429,14 @@ ac
ac
ac
ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
+hD
+un
+uA
+uO
+uO
+vl
+un
+hD
ac
ac
kb
@@ -24942,14 +25571,14 @@ ac
ac
ac
ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
+hD
+hs
+tW
+uO
+uO
+vm
+hs
+hD
ac
ac
kb
@@ -25080,18 +25709,18 @@ ac
ac
ac
ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
+ho
+ho
+ho
+ho
+hD
+hs
+tW
+uO
+uO
+vm
+hs
+hD
ac
ac
kb
@@ -25220,23 +25849,23 @@ ac
ac
ac
ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+ho
+ho
+hs
+hs
+ho
+ul
+vY
+uB
+uO
+uO
+vn
+ww
+ul
+ho
+ho
+ho
bz
cp
il
@@ -25361,24 +25990,24 @@ bn
bn
bn
bn
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+ho
+hq
+hr
+hs
+hs
+tW
+uy
+tQ
+uH
+uU
+uU
+vo
+tQ
+um
+vO
+ho
+ho
jy
il
jy
@@ -25503,24 +26132,24 @@ aR
cm
cn
bn
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+hp
+hq
+hr
+hs
+hs
+hs
+un
+un
+uK
+uY
+uY
+vp
+vp
+vp
+hq
+ho
+ho
bz
il
jy
@@ -25645,24 +26274,24 @@ bn
bn
bn
bn
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+hq
+hr
+hr
+hs
+hs
+hs
+hs
+hs
+hr
+hq
+hq
+hq
+hq
+hq
+vW
+wd
+wo
bz
il
jy
@@ -25787,24 +26416,24 @@ cW
cW
cW
cW
-cW
-cW
-cW
-cW
-ap
-ap
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+hq
+hr
+hs
+hs
+ij
+hs
+hs
+hs
+hr
+hr
+hr
+hq
+hq
+hq
+hq
+ho
+ho
bz
il
cF
@@ -25929,24 +26558,24 @@ cW
cW
cW
cW
-cW
-cW
-cW
-cW
-cW
-ap
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+ho
+hr
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hr
+hr
+hq
+hq
+ho
+ho
+ho
jy
cq
cF
@@ -26072,23 +26701,23 @@ cW
cW
cW
cW
-cW
-cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hr
+hq
+vB
+ho
+ho
+hD
il
il
cF
@@ -26214,23 +26843,23 @@ cW
cW
cW
cW
-cW
-cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+ho
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hr
+hq
+hq
+hq
+ho
+ho
il
bz
cF
@@ -26357,22 +26986,22 @@ cW
cW
cW
cW
-cW
-cW
-cW
-ap
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hr
+hq
+hq
+hq
+hq
+ho
bz
bz
cF
@@ -26499,22 +27128,22 @@ dx
cW
cW
cW
-cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+ho
+hs
+hs
+hs
+hs
+hs
+ij
+hs
+hs
+hr
+hr
+hq
+hq
+ho
+ho
jy
il
cF
@@ -26642,21 +27271,21 @@ dx
dx
cW
cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+hC
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hr
+hq
+hq
+ho
+hD
ii
cE
cF
@@ -26784,21 +27413,21 @@ dx
eU
dx
cW
-cW
-cW
-ap
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+ho
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hs
+hr
+hq
+vB
+ho
+hD
ii
ns
kL
@@ -26926,21 +27555,21 @@ dx
dx
dx
cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+hr
+hr
+hr
+hs
+hs
+hs
+hs
+hs
+hr
+hr
+hq
+hq
+ho
+hD
ii
il
il
@@ -27068,21 +27697,21 @@ eB
dx
dx
cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+hq
+hq
+hr
+hr
+hs
+hr
+hr
+hr
+hr
+hq
+hq
+ho
+ho
+hD
ke
il
il
@@ -27210,21 +27839,21 @@ dx
dx
cW
cW
-cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+ho
+hq
+hq
+hr
+hr
+hr
+hq
+hq
+hq
+hq
+hq
+ho
+ho
+hD
kf
ku
il
@@ -27353,20 +27982,20 @@ cW
cW
cW
cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+ho
+tO
+tO
+tO
+tO
+tO
+tO
+tO
+tO
+tO
+hq
+ho
+ho
+hD
ii
kv
jN
@@ -27495,20 +28124,20 @@ cW
cW
cW
cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-ac
-jy
+hD
+tP
+ub
+up
+ux
+uM
+uZ
+vj
+wE
+vA
+ho
+ho
+ho
+hD
ii
kw
jx
@@ -27637,20 +28266,20 @@ cW
cW
cW
cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ii
-ii
-ii
-ii
-ii
-ii
+wA
+tQ
+uw
+uq
+wt
+hD
+vg
+vq
+hD
+hD
+hD
+hD
+hD
+hD
ii
kx
jx
@@ -27779,15 +28408,15 @@ cW
cW
cW
cW
-cW
-cW
-ac
-ac
-ac
-ac
-ac
-ac
-ii
+hD
+tR
+ue
+ur
+uz
+hD
+vs
+vM
+dY
iO
je
jw
@@ -27920,16 +28549,16 @@ cW
cW
cW
cW
-cW
-cW
ap
-ap
-ap
-ap
-ap
-ac
-ac
-ii
+hD
+hD
+hD
+hD
+hD
+hD
+vs
+vM
+dY
iB
jf
jx
@@ -28062,16 +28691,16 @@ cW
cW
cW
cW
-cW
-cW
ap
gK
gZ
ha
-ap
-ac
-ac
-ii
+dY
+iy
+uu
+vD
+vX
+dY
iP
iT
jx
@@ -28204,16 +28833,16 @@ cW
cW
cW
cW
-cW
-cW
ap
gL
ha
hm
-ap
-ac
-ac
-ii
+dY
+iz
+uv
+vi
+wv
+dY
iP
jf
jx
@@ -28346,16 +28975,16 @@ cW
cW
cW
cW
-cW
-cW
ap
gM
gZ
hn
-ap
-ac
-ii
-ii
+dY
+iz
+vh
+dY
+dY
+dY
iP
jg
jy
@@ -28489,13 +29118,13 @@ ap
ap
ap
ap
-ap
-ap
gN
hb
ap
-ap
-ap
+dY
+wu
+vh
+dY
ii
ix
iQ
@@ -28634,12 +29263,12 @@ gd
gs
gF
gO
-gO
-gO
-hC
-hC
-ij
-iy
+hI
+tU
+vk
+vK
+vZ
+we
iR
ji
jy
@@ -28777,11 +29406,11 @@ ge
ge
ge
hc
-ge
-hD
-ge
+iA
+hf
+wC
ii
-iz
+wf
iS
jj
jy
@@ -28919,11 +29548,11 @@ gt
gt
gt
hd
-ho
+iC
hE
ge
ik
-iA
+wj
iT
il
jz
@@ -29061,11 +29690,11 @@ gt
gt
gP
gt
-hp
+iD
hF
ge
il
-iB
+wk
iU
il
jA
@@ -29203,11 +29832,11 @@ ge
ge
ge
he
-hq
+uc
hG
ge
im
-iB
+wk
iV
jk
il
@@ -29345,11 +29974,11 @@ gu
ge
gQ
hf
-hr
+uo
hH
ge
il
-iC
+wl
il
jf
il
@@ -29487,11 +30116,11 @@ gu
ge
gQ
hf
-hs
-hI
-hD
-il
-iD
+us
+vu
+vN
+wa
+wn
il
jf
il
diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm
index d697bb4a3f..ee464e4ee6 100644
--- a/maps/tether/tether_areas2.dm
+++ b/maps/tether/tether_areas2.dm
@@ -69,6 +69,9 @@
/area/tether/surfacebase/public_garden
name = "\improper Public Garden"
icon_state = "purple"
+/area/tether/surfacebase/fish_farm
+ name = "\improper Fish Farm"
+ icon_state = "red"
/area/tether/surfacebase/bar_backroom
name = "\improper Bar Backroom"
icon_state = "red"
diff --git a/vorestation.dme b/vorestation.dme
index af93f3e9db..2b57b61a23 100644
--- a/vorestation.dme
+++ b/vorestation.dme
@@ -1335,6 +1335,7 @@
#include "code\game\turfs\simulated\wall_types_vr.dm"
#include "code\game\turfs\simulated\walls.dm"
#include "code\game\turfs\simulated\water.dm"
+#include "code\game\turfs\simulated\water_vr.dm"
#include "code\game\turfs\simulated\dungeon\floor.dm"
#include "code\game\turfs\simulated\dungeon\wall.dm"
#include "code\game\turfs\simulated\outdoors\atmoscaves_vr.dm"