diff --git a/GainStation13/code/modules/food_and_drinks/bigbottle.dm b/GainStation13/code/modules/food_and_drinks/bigbottle.dm new file mode 100644 index 0000000000..a04875e20e --- /dev/null +++ b/GainStation13/code/modules/food_and_drinks/bigbottle.dm @@ -0,0 +1,72 @@ +//////////////////////////////////////////////////////////////////////////////// +/// GS13 - big bottles +//////////////////////////////////////////////////////////////////////////////// + +//unfortunately I wasn't able to code in a fancy overlay that changes depending on bottle's contents volume +//however if anyone would like to give it a go, the sprites for it are already there, in the .dmi + +/obj/item/reagent_containers/food/drinks/bigbottle + name = "Bottle" + desc = "You shouldn't see this." + icon = 'GainStation13/icons/obj/food/bigbottle.dmi' + icon_state = "bigbottle_default" + list_reagents = list(/datum/reagent/consumable/space_cola = 25) + custom_materials = list(/datum/material/plastic=200) + foodtype = SUGAR + isGlass = FALSE + volume = 100 + +/obj/item/reagent_containers/food/drinks/bigbottle/starkist + name = "StarKist Bottle" + desc = "A big bottle of Sunkist - for all your chuggin' needs." + icon_state = "bigbottle_fan" + list_reagents = list(/datum/reagent/consumable/sodawater = 20, /datum/reagent/consumable/orangejuice = 60) + +/obj/item/reagent_containers/food/drinks/bigbottle/cola + name = "GT-Cola Bottle" + desc = "A big bottle of GT-Cola - for all your chuggin' needs." + icon_state = "bigbottle_cola" + list_reagents = list(/datum/reagent/consumable/space_cola = 80) + +/obj/item/reagent_containers/food/drinks/bigbottle/spaceup + name = "Space-Up! Bottle" + desc = "A big bottle of Space-Up! - for all your chuggin' needs." + icon_state = "bigbottle_spr" + list_reagents = list(/datum/reagent/consumable/space_up = 60, /datum/reagent/consumable/sodawater = 20) + +/obj/item/reagent_containers/food/drinks/bigbottle/fizz + name = "Fizz-Wizz Bottle" + desc = "A big bottle of Fizz-Wizz - for all your chuggin' needs." + icon_state = "bigbottle_fizz" + list_reagents = list(/datum/reagent/consumable/space_cola = 50, /datum/reagent/consumable/fizulphite = 30) + + +//code for overlays +/obj/item/reagent_containers/food/drinks/bigbottle/on_reagent_change() + cut_overlays() + var/mutable_appearance/reagent_overlay = mutable_appearance(icon, "reagent") + if(reagents.reagent_list.len) + var/datum/reagent/R = reagents.get_master_reagent() + /*if(!renamedByPlayer) + name = "bottle of " + R.name + desc = R.glass_desc*/ + + var/percent = round((reagents.total_volume / volume) * 100) + switch(percent) + if(0) + reagent_overlay.icon_state = "reagent0" + if(1 to 19) + reagent_overlay.icon_state = "reagent20" + if(20 to 39) + reagent_overlay.icon_state = "reagent40" + if(40 to 59) + reagent_overlay.icon_state = "reagent60" + if(60 to 79) + reagent_overlay.icon_state = "reagent80" + if(80 to 100) + reagent_overlay.icon_state = "reagent100" + reagent_overlay.color = mix_color_from_reagents(reagents.reagent_list) + add_overlay(reagent_overlay) + else + reagent_overlay.icon_state = "reagent0" + add_overlay(reagent_overlay) diff --git a/GainStation13/code/modules/vending/gatocola.dm b/GainStation13/code/modules/vending/gatocola.dm index 85749926df..f0788942a2 100644 --- a/GainStation13/code/modules/vending/gatocola.dm +++ b/GainStation13/code/modules/vending/gatocola.dm @@ -6,12 +6,15 @@ product_slogans = "Meow~, time for some cola!" vend_reply = "Meow~ Meow~" products = list( - /obj/item/reagent_containers/food/drinks/beer = 10, /obj/item/reagent_containers/food/drinks/soda_cans/cola = 10, /obj/item/reagent_containers/food/drinks/soda_cans/dr_gibb = 10, /obj/item/reagent_containers/food/drinks/soda_cans/starkist = 10, /obj/item/reagent_containers/food/drinks/soda_cans/space_up = 10, /obj/item/reagent_containers/food/drinks/soda_cans/pwr_game = 10, + /obj/item/reagent_containers/food/drinks/bigbottle/starkist = 6, + /obj/item/reagent_containers/food/drinks/bigbottle/cola = 6, + /obj/item/reagent_containers/food/drinks/bigbottle/spaceup = 6, + /obj/item/reagent_containers/food/drinks/bigbottle/fizz = 3, ) contraband = list( /obj/item/organ/ears/cat = 2, diff --git a/GainStation13/code/modules/vending/mealdor.dm b/GainStation13/code/modules/vending/mealdor.dm index a20b6a87b5..438ad8d62d 100644 --- a/GainStation13/code/modules/vending/mealdor.dm +++ b/GainStation13/code/modules/vending/mealdor.dm @@ -5,6 +5,7 @@ icon_state = "mealdor" product_slogans = "Are you hungry? Eat some of my food!;Be sure to eat one of our tasty treats!;Was that your stomach? Go ahead, get some food!" vend_reply = "Enjoy your meal." + free = TRUE products = list( /obj/item/reagent_containers/food/snacks/fries = 4, diff --git a/GainStation13/code/structures/chair.dm b/GainStation13/code/structures/chair.dm index ad7f4f1fef..b139dffbbb 100644 --- a/GainStation13/code/structures/chair.dm +++ b/GainStation13/code/structures/chair.dm @@ -55,3 +55,35 @@ desc = "Some nice metal shelves." icon = 'hyperstation/icons/obj/objects.dmi' icon_state = "shelf" + +/obj/structure/chair/beanbag + name = "beanbag chair" + desc = "A comfy beanbag chair. Almost as soft as your fat ass." + icon = 'GainStation13/icons/obj/chairs.dmi' + icon_state = "beanbag" + color = "#ffffff" + anchored = FALSE + buildstackamount = 5 + item_chair = null + +/obj/structure/chair/beanbag/gato + name = "GATO beanbag chair" + desc = "A comfy beanbag chair. This one seems to a super duper cutesy GATO mascot." + icon_state = "beanbag_gato" + + +//beanbag chair colors +/obj/structure/chair/beanbag/red + color = "#8b2e2e" + +/obj/structure/chair/beanbag/blue + color = "#345bbc" + +/obj/structure/chair/beanbag/green + color = "#76da4b" + +/obj/structure/chair/beanbag/purple + color = "#a83acf" + +/obj/structure/chair/beanbag/black + color = "#404040" diff --git a/GainStation13/icons/obj/chairs.dmi b/GainStation13/icons/obj/chairs.dmi index 0cca2a6a5a..1aef513332 100644 Binary files a/GainStation13/icons/obj/chairs.dmi and b/GainStation13/icons/obj/chairs.dmi differ diff --git a/GainStation13/icons/obj/food/bigbottle.dmi b/GainStation13/icons/obj/food/bigbottle.dmi new file mode 100644 index 0000000000..1bf0a3cdfd Binary files /dev/null and b/GainStation13/icons/obj/food/bigbottle.dmi differ diff --git a/_maps/map_files/BoxStation/BoxStation.dmm b/_maps/map_files/BoxStation/BoxStation.dmm index 74af32021e..b3fd13ea0a 100644 --- a/_maps/map_files/BoxStation/BoxStation.dmm +++ b/_maps/map_files/BoxStation/BoxStation.dmm @@ -122,7 +122,7 @@ "acr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-8"},/turf/open/floor/plasteel/dark,/area/security/prison/upper) "acs" = (/obj/structure/table/reinforced,/obj/item/storage/box/firingpins{pixel_x = 6},/obj/item/storage/box/firingpins{pixel_x = -3},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "act" = (/obj/structure/table/reinforced,/obj/item/storage/box/chemimp{pixel_x = 6},/obj/item/storage/box/trackimp{pixel_x = -3},/obj/item/storage/lockbox/loyalty,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) -"acu" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) +"acu" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/structure/chair/beanbag/red,/obj/structure/chair/beanbag/red,/obj/structure/chair/beanbag/red,/obj/structure/chair/beanbag/red,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "acv" = (/obj/vehicle/ridden/secway,/obj/item/key/security,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "acw" = (/obj/structure/rack,/obj/item/gun/energy/ionrifle,/obj/item/gun/energy/temperature/security,/obj/item/clothing/suit/armor/laserproof,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "acx" = (/obj/structure/closet/secure_closet/contraband/armory,/obj/effect/spawner/lootdrop/maintenance{lootcount = 8; name = "8maintenance loot spawner"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) @@ -950,8 +950,8 @@ "asq" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/turf/open/floor/wood,/area/service/lawoffice) "asr" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/lawyer,/turf/open/floor/wood,/area/service/lawoffice) "ass" = (/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"ast" = (/obj/structure/chair/stool{pixel_y = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/turf/open/floor/carpet,/area/commons/dorms) -"asu" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/commons/dorms) +"ast" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/beanbag/red,/turf/open/floor/carpet,/area/commons/dorms) +"asu" = (/obj/effect/landmark/xeno_spawn,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet/gato,/area/commons/dorms) "asv" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet,/area/commons/dorms) "asw" = (/obj/machinery/light{dir = 8},/obj/structure/chair/sofa{color = "#c45c57"; dir = 4},/turf/open/floor/carpet,/area/crew_quarters/fitness) "asx" = (/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/vending/autodrobe,/turf/open/floor/plasteel,/area/commons/dorms) @@ -1053,7 +1053,7 @@ "auq" = (/obj/machinery/power/apc{areastring = "/area/lawoffice"; dir = 1; name = "Law Office APC"; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/service/lawoffice) "aur" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/hallway/primary/fore) "aus" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/fore) -"aut" = (/obj/structure/bed,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/spawner/lootdrop/bedsheet,/turf/open/floor/carpet,/area/commons/dorms) +"aut" = (/obj/structure/bed,/obj/machinery/airalarm{pixel_y = 23},/obj/machinery/button/door{id = "Dorm3"; name = "Dorm Bolt Control"; normaldoorcontrol = 1; pixel_x = 25; specialfunctions = 4},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/item/bedsheet/gato,/turf/open/floor/carpet/gato,/area/commons/dorms) "auu" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/obj/structure/closet/secure_closet/personal/cabinet,/turf/open/floor/wood,/area/commons/dorms) "auv" = (/obj/item/toy/poolnoodle/blue,/obj/structure/table,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/crew_quarters/fitness) "auw" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/structure/closet/wardrobe/pjs,/turf/open/floor/plasteel,/area/commons/dorms) @@ -1632,11 +1632,11 @@ "aFG" = (/turf/open/floor/plasteel,/area/command/gateway) "aFH" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/commons/dorms) "aFI" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plating,/area/maintenance/fore) -"aFJ" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) +"aFJ" = (/obj/structure/table,/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/sheet/rglass{amount = 50},/obj/item/stack/rods/fifty,/obj/item/stack/rods/fifty,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "aFK" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva) "aFL" = (/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva) "aFM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/command/storage/eva) -"aFN" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) +"aFN" = (/obj/item/stack/sheet/plasteel{amount = 10},/obj/structure/table,/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "aFO" = (/obj/machinery/light{dir = 8},/obj/structure/table,/obj/item/stack/sheet/plasteel{amount = 10},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "aFP" = (/obj/structure/table,/obj/item/stack/sheet/metal/fifty,/obj/item/stack/sheet/rglass{amount = 50},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "aFQ" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/fore) @@ -1787,9 +1787,9 @@ "aIF" = (/obj/machinery/button/door{id = "stationawaygate"; name = "Gateway Access Shutter Control"; pixel_x = -1; pixel_y = -24; req_access_txt = "31"},/turf/open/floor/plasteel,/area/command/gateway) "aIG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel,/area/command/gateway) "aIH" = (/obj/machinery/light{dir = 4},/obj/structure/closet/secure_closet/exile,/obj/effect/turf_decal/stripes/line{dir = 10},/turf/open/floor/plasteel,/area/command/gateway) -"aII" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/extinguisher,/obj/item/extinguisher,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) -"aIJ" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) -"aIK" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) +"aII" = (/obj/structure/table,/obj/item/stack/sheet/glass/fifty,/obj/item/stack/sheet/glass/fifty,/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/storage/toolbox/mechanical{pixel_x = -2; pixel_y = -1},/obj/item/extinguisher,/obj/item/extinguisher,/obj/machinery/light{dir = 8},/obj/effect/turf_decal/stripes/line{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) +"aIJ" = (/obj/machinery/camera{c_tag = "EVA South"; dir = 1},/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) +"aIK" = (/obj/structure/tank_dispenser/oxygen,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/stripes/line{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "aIL" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/hallway/primary/central) "aIM" = (/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/central) "aIN" = (/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/camera{c_tag = "Central Hallway North"},/obj/effect/turf_decal/tile/blue{dir = 1},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/item/kirbyplants/random,/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -1806,7 +1806,7 @@ "aIY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/cafeteria,/area/service/theater) "aIZ" = (/obj/structure/closet/secure_closet/freezer/cream_pie,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/service/theater) "aJa" = (/turf/open/floor/carpet/black,/area/hallway/primary/central) -"aJb" = (/obj/structure/chair/stool/bar,/turf/open/floor/carpet/black,/area/hallway/primary/central) +"aJb" = (/obj/structure/chair/beanbag/blue,/turf/open/floor/carpet/black,/area/hallway/primary/central) "aJc" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/landmark/start/clown,/turf/open/floor/plasteel,/area/service/theater) "aJd" = (/turf/closed/wall,/area/service/bar) "aJe" = (/obj/machinery/light{light_color = "#cee5d2"},/obj/effect/turf_decal/loading_area{icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/dark,/area/service/bar) @@ -1822,10 +1822,10 @@ "aJo" = (/obj/structure/table,/obj/machinery/reagentgrinder,/turf/open/floor/plasteel,/area/service/hydroponics) "aJp" = (/obj/structure/table,/obj/item/book/manual/hydroponics_pod_people,/obj/item/paper/guides/jobs/hydroponics,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/item/reagent_containers/glass/bottle/mutagen,/obj/item/reagent_containers/glass/bottle/mutagen,/turf/open/floor/plasteel,/area/service/hydroponics) "aJq" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/wood,/area/service/library) -"aJr" = (/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/service/library) +"aJr" = (/obj/structure/chair/beanbag,/turf/open/floor/carpet,/area/service/library) "aJs" = (/obj/structure/table/wood,/obj/item/folder/yellow,/obj/item/pen,/turf/open/floor/carpet,/area/service/library) "aJt" = (/obj/structure/table/wood,/obj/structure/disposalpipe/segment,/turf/open/floor/carpet,/area/service/library) -"aJu" = (/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet,/area/service/library) +"aJu" = (/obj/structure/chair/beanbag/red{dir = 8},/turf/open/floor/carpet,/area/service/library) "aJv" = (/obj/machinery/newscaster{pixel_x = 30},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/wood,/area/service/library) "aJw" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/service/chapel/main) "aJx" = (/obj/structure/disposalpipe/segment,/obj/machinery/button/crematorium{id = "crematoriumChapel"; pixel_x = 25; req_access_txt = "27"},/obj/machinery/light/small{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/service/chapel/main) @@ -1890,8 +1890,8 @@ "aKF" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel,/area/service/hydroponics) "aKG" = (/obj/structure/table,/obj/item/reagent_containers/spray/plantbgone{pixel_y = 3},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 8; pixel_y = 8},/obj/item/reagent_containers/spray/plantbgone{pixel_x = 13; pixel_y = 5},/obj/item/watertank,/turf/open/floor/plasteel,/area/service/hydroponics) "aKH" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/light{dir = 8},/turf/open/floor/wood,/area/service/library) -"aKI" = (/obj/machinery/camera{c_tag = "Library North"},/obj/structure/chair/office/dark,/turf/open/floor/carpet,/area/service/library) -"aKJ" = (/obj/structure/chair/office/dark,/obj/effect/landmark/start/assistant,/turf/open/floor/carpet,/area/service/library) +"aKI" = (/obj/machinery/camera{c_tag = "Library North"},/obj/structure/chair/beanbag/green,/turf/open/floor/carpet,/area/service/library) +"aKJ" = (/obj/effect/landmark/start/assistant,/obj/structure/chair/beanbag/purple{dir = 8},/turf/open/floor/carpet,/area/service/library) "aKK" = (/obj/machinery/light{dir = 4},/turf/open/floor/wood,/area/service/library) "aKL" = (/obj/machinery/airalarm{dir = 4; pixel_x = -22},/obj/machinery/camera{c_tag = "Chapel Crematorium"; dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/dark,/area/service/chapel/main) "aKM" = (/obj/structure/disposalpipe/segment{dir = 5},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/turf/open/floor/plasteel/dark,/area/service/chapel/main) @@ -1974,7 +1974,7 @@ "aMn" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/service/hydroponics) "aMo" = (/obj/machinery/chem_master/condimaster,/turf/open/floor/plasteel,/area/service/hydroponics) "aMp" = (/turf/open/floor/wood,/area/service/library) -"aMq" = (/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/carpet,/area/service/library) +"aMq" = (/obj/structure/chair/beanbag/red,/turf/open/floor/wood,/area/maintenance/bar) "aMr" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/service/library) "aMs" = (/obj/structure/bodycontainer/morgue,/turf/open/floor/plasteel/dark,/area/service/chapel/main) "aMt" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel/dark,/area/service/chapel/main) @@ -2040,7 +2040,7 @@ "aNB" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{name = "Hydroponics"; req_access_txt = "35"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/service/hydroponics) "aNC" = (/obj/machinery/bookbinder,/turf/open/floor/wood,/area/service/library) "aND" = (/obj/structure/chair/comfy/black{dir = 8},/obj/structure/sign/painting/library{pixel_y = -32},/turf/open/floor/wood,/area/service/library) -"aNE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/office/dark{dir = 4},/turf/open/floor/carpet,/area/service/library) +"aNE" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/structure/chair/beanbag/blue,/turf/open/floor/carpet,/area/service/library) "aNF" = (/obj/machinery/door/airlock/public/glass{name = "Chapel Office"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/service/chapel/main) "aNG" = (/obj/machinery/door/morgue{name = "Confession Booth (Chaplain)"; req_access_txt = "22"},/turf/open/floor/plasteel/dark,/area/service/chapel/main) "aNH" = (/obj/item/radio/intercom{broadcasting = 1; frequency = 1480; name = "Confessional Intercom"; pixel_x = 25},/obj/structure/chair,/turf/open/floor/plasteel/dark,/area/service/chapel/main) @@ -2526,7 +2526,7 @@ "aXm" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/wood,/area/commons/vacant_room/office) "aXn" = (/obj/machinery/light{dir = 4},/obj/structure/filingcabinet/chestdrawer,/turf/open/floor/wood,/area/commons/vacant_room/office) "aXo" = (/obj/machinery/portable_atmospherics/canister/air,/turf/open/floor/plating,/area/maintenance/port) -"aXt" = (/obj/structure/chair/bench/left{dir = 8},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"aXt" = (/obj/structure/chair/bench/left{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "aXu" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna) "aXv" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/item/kirbyplants/photosynthetic,/turf/open/floor/plasteel/dark/side{dir = 6},/area/crew_quarters/fitness/sauna) "aXy" = (/obj/machinery/camera{c_tag = "Arrivals Hallway"; dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) @@ -2756,7 +2756,7 @@ "bbY" = (/obj/machinery/door/firedoor,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bbZ" = (/obj/effect/turf_decal/tile/blue,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bca" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"bcb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/office/dark{dir = 8},/turf/open/floor/carpet,/area/service/library) +"bcb" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/chair/beanbag/black{dir = 8},/turf/open/floor/carpet,/area/service/library) "bcc" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bcd" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bce" = (/obj/machinery/light_switch{pixel_y = 28},/obj/machinery/light{dir = 1; pixel_y = 16},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/wood,/area/command/meeting_room) @@ -2830,7 +2830,7 @@ "bdv" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) "bdw" = (/obj/machinery/door/airlock/public/glass{dir = 4; name = "Cryogenics"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/commons/dorms) "bdx" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 6},/turf/open/floor/carpet/red,/area/service/bar) -"bdy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 1},/obj/structure/mirror{pixel_y = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"bdy" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/sink{dir = 1},/obj/structure/mirror{pixel_y = -32},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "bdz" = (/obj/effect/spawner/lootdrop/crate_spawner,/obj/structure/grille/broken,/turf/open/floor/plating,/area/maintenance/port) "bdA" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/closed/wall,/area/crew_quarters/fitness/sauna) "bdB" = (/obj/machinery/door/airlock/maintenance{name = "Locker Room Maintenance"; req_access_txt = "12"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/port) @@ -2934,7 +2934,7 @@ "bfw" = (/obj/structure/sign/departments/medbay/alt,/turf/closed/wall,/area/medical/medbay/central) "bfx" = (/obj/effect/spawner/structure/window,/obj/machinery/door/poddoor/preopen{id = "medshut1"; name = "shutters"},/turf/open/floor/plating,/area/medical/medbay/central) "bfz" = (/obj/machinery/door/firedoor,/turf/open/floor/plasteel/white,/area/medical/medbay/central) -"bfA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/structure/bedsheetbin,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"bfA" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/structure/bedsheetbin,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "bfB" = (/turf/closed/wall,/area/medical/morgue) "bfC" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/door/airlock/medical/glass{id_tag = "MedbayFoyer"; name = "Paramedic's Office"; req_access_txt = "5;6;12;64"},/turf/open/floor/plating,/area/medical/paramedic) "bfD" = (/obj/effect/spawner/structure/window/reinforced,/turf/open/floor/plating,/area/security/checkpoint/medical) @@ -2969,7 +2969,7 @@ "bgg" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port) "bgh" = (/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/freezer,/area/commons/toilet) "bgi" = (/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 9},/turf/open/floor/plasteel/freezer,/area/commons/toilet) -"bgj" = (/obj/structure/chair/bench,/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"bgj" = (/obj/structure/chair/bench,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "bgk" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) "bgl" = (/obj/structure/cable{icon_state = "2-4"},/obj/structure/disposalpipe/segment{dir = 6},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/port) "bgm" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/port) @@ -3215,7 +3215,7 @@ "bkU" = (/obj/structure/flora/ausbushes/ywflowers,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/hallway/primary/central) "bkV" = (/obj/structure/flora/ausbushes/fullgrass,/obj/structure/flora/ausbushes/ppflowers,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/primary/central) "bkW" = (/obj/structure/flora/ausbushes/grassybush,/obj/structure/flora/ausbushes/sunnybush,/obj/structure/window/reinforced,/turf/open/floor/grass,/area/hallway/primary/central) -"bkX" = (/obj/structure/disposalpipe/segment,/obj/structure/chair/office/dark{dir = 1},/turf/open/floor/carpet,/area/service/library) +"bkX" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/chair/beanbag/gato,/turf/open/floor/carpet/gato,/area/commons/dorms) "bkY" = (/obj/effect/turf_decal/stripes/line{dir = 1},/obj/structure/table,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bkZ" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/port) "bla" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/port) @@ -3425,7 +3425,7 @@ "bpc" = (/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/exit) "bpd" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/secondary/exit) "bpf" = (/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) -"bpg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) +"bpg" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) "bph" = (/obj/machinery/door/airlock/maintenance{dir = 4; name = "Detective Maintenance"; req_access_txt = "4"},/turf/open/floor/plating,/area/maintenance/port) "bpi" = (/obj/structure/disposalpipe/segment,/obj/item/kirbyplants/random,/turf/open/floor/plasteel/grimy,/area/security/detectives_office) "bpj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/carpet/royalblue,/area/command/heads_quarters/captain) @@ -3438,7 +3438,7 @@ "bpq" = (/obj/structure/chair/comfy/beige{dir = 8},/turf/open/floor/carpet,/area/hallway/secondary/entry) "bpr" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 4},/turf/open/floor/plasteel/white/corner{dir = 1},/area/hallway/secondary/entry) "bps" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/effect/turf_decal/stripes/corner{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) -"bpt" = (/obj/machinery/camera{c_tag = "Locker Room South"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"bpt" = (/obj/machinery/camera{c_tag = "Locker Room South"; dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "bpu" = (/obj/item/kirbyplants/random,/turf/open/floor/wood,/area/command/heads_quarters/captain) "bpv" = (/obj/machinery/camera{c_tag = "Central Hallway East"; dir = 4},/obj/structure/disposalpipe/segment,/obj/machinery/status_display{pixel_x = -32},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/central) "bpw" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/public/glass{dir = 4; name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) @@ -3458,7 +3458,7 @@ "bpK" = (/obj/machinery/door/airlock/public/glass{dir = 4; name = "Central Access"},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "bpM" = (/obj/structure/flora/junglebush/c,/obj/machinery/light{dir = 1; color = "#ffa500"},/turf/open/floor/grass,/area/crew_quarters/fitness/sauna) "bpN" = (/obj/structure/table/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/reagent_containers/glass/bucket{pixel_y = 9; pixel_x = 8},/obj/machinery/button/door{id = "small_sauna_1"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = 25; specialfunctions = 4},/turf/open/floor/wood,/area/crew_quarters/fitness/sauna) -"bpO" = (/obj/structure/chair/bench/left,/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"bpO" = (/obj/structure/chair/bench/left,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "bpP" = (/obj/structure/window/reinforced/spawner{dir = 1},/obj/structure/sauna_oven,/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "bpQ" = (/obj/item/radio/intercom{name = "Station Intercom (General)"; pixel_y = 20},/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/fitness/sauna) "bpR" = (/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/wood,/area/command/heads_quarters/captain) @@ -3490,8 +3490,8 @@ "bqr" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 4"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "bqs" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper,/obj/machinery/door/airlock/external{name = "Port Docking Bay 3"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/entry) "bqt" = (/obj/machinery/conveyor{dir = 4; id = "garbage"},/obj/machinery/light/small{dir = 1},/turf/open/floor/plating,/area/maintenance/disposal) -"bqw" = (/obj/structure/chair/bench/left{dir = 8},/obj/machinery/button/door{id = "big_sauna_1"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) -"bqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/razor,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"bqw" = (/obj/structure/chair/bench/left{dir = 8},/obj/machinery/button/door{id = "big_sauna_1"; name = "Sauna bolt control"; normaldoorcontrol = 1; pixel_y = -25; specialfunctions = 4},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"bqx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/razor,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "bqz" = (/obj/effect/landmark/blobstart,/turf/open/floor/plating,/area/maintenance/port) "bqA" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 6},/turf/open/floor/plating,/area/maintenance/port) "bqB" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/crate,/turf/open/floor/plasteel,/area/cargo/warehouse) @@ -3510,7 +3510,7 @@ "bqO" = (/obj/machinery/light,/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bqP" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 8},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) "bqQ" = (/obj/machinery/door/airlock/maintenance{req_access_txt = "12"},/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plating,/area/maintenance/starboard) -"bqR" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) +"bqR" = (/obj/structure/window/reinforced{dir = 1; layer = 2.9},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "bqS" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "bqT" = (/obj/structure/closet/emcloset,/turf/open/floor/plasteel/dark,/area/hallway/secondary/exit) "bqU" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/sign/warning/docking,/turf/open/floor/plating,/area/hallway/secondary/entry) @@ -3579,7 +3579,7 @@ "bsj" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/stairs/left,/area/maintenance/port) "bsk" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/open/floor/plasteel/stairs/right,/area/maintenance/port) "bsm" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/closed/wall,/area/crew_quarters/fitness/sauna) -"bsn" = (/obj/structure/window/reinforced/spawner{dir = 1},/obj/machinery/portable_atmospherics/canister/water_vapor,/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"bsn" = (/obj/structure/window/reinforced/spawner{dir = 1},/obj/machinery/portable_atmospherics/canister/water_vapor,/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "bso" = (/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/stairs/left,/area/maintenance/port) "bsp" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/stairs/right,/area/maintenance/port) "bsq" = (/turf/closed/wall,/area/cargo/storage) @@ -4024,7 +4024,7 @@ "bAN" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/obj/effect/turf_decal/loading_area{dir = 4},/turf/open/floor/plasteel,/area/cargo/storage) "bAO" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/cargo/storage) "bAP" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/cargo/storage) -"bAQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/cargo/storage) +"bAQ" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/cargo/storage) "bAR" = (/obj/effect/turf_decal/bot,/obj/machinery/holopad,/turf/open/floor/plasteel,/area/cargo/storage) "bAS" = (/obj/machinery/light_switch{pixel_x = 27},/obj/structure/rack/shelf,/turf/open/floor/plasteel,/area/cargo/storage) "bAT" = (/obj/machinery/computer/cargo/request{dir = 4},/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/cargo/office) @@ -4099,9 +4099,9 @@ "bCl" = (/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/cargo/storage) "bCm" = (/obj/effect/turf_decal/stripes/corner,/turf/open/floor/plasteel,/area/cargo/storage) "bCo" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/machinery/camera{c_tag = "Cargo Office"; dir = 4},/turf/open/floor/plasteel,/area/cargo/office) -"bCp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 1},/obj/structure/chair,/turf/open/floor/plasteel,/area/cargo/office) -"bCq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel,/area/cargo/office) -"bCr" = (/obj/structure/chair,/obj/structure/window/reinforced{dir = 1},/turf/open/floor/plasteel,/area/cargo/office) +"bCp" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/window/reinforced{dir = 1},/obj/structure/chair,/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/turf/open/floor/plasteel,/area/cargo/office) +"bCq" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/chair,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/turf/open/floor/plasteel,/area/cargo/office) +"bCr" = (/obj/structure/chair,/obj/structure/window/reinforced{dir = 1},/obj/effect/turf_decal/loading_area{dir = 10; icon_state = "steel_decals10"},/obj/effect/turf_decal/loading_area{dir = 9; icon_state = "steel_decals10"},/turf/open/floor/plasteel,/area/cargo/office) "bCt" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals1"},/turf/open/floor/plasteel,/area/cargo/office) "bCu" = (/obj/effect/landmark/event_spawn,/turf/open/floor/plasteel,/area/cargo/office) "bCv" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/cargo/office) @@ -6441,9 +6441,9 @@ "cvD" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/ce) "cvE" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/cable{icon_state = "2-4"},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/command/heads_quarters/ce) "cvF" = (/obj/structure/cable{icon_state = "0-8"},/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced,/obj/machinery/door/poddoor/preopen{id = "ceprivacy"; name = "privacy shutter"},/turf/open/floor/plating,/area/command/heads_quarters/ce) -"cvG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/firecloset,/turf/open/floor/plasteel,/area/engineering/main) +"cvG" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/structure/closet/firecloset,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/engineering/main) "cvH" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/engineering/main) -"cvI" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/closet/radiation,/turf/open/floor/plasteel,/area/engineering/main) +"cvI" = (/obj/machinery/camera{c_tag = "Engineering Access"},/obj/structure/closet/radiation,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/engineering/main) "cvJ" = (/obj/machinery/atmospherics/pipe/simple/green/visible,/obj/machinery/portable_atmospherics/pump,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/engineering/atmos) "cvK" = (/obj/machinery/computer/atmos_control/tank/nitrogen_tank{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/engineering/atmos) "cvL" = (/obj/machinery/atmospherics/components/binary/pump/on{dir = 1; name = "N2 Outlet Pump"},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/engineering/atmos) @@ -7203,10 +7203,13 @@ "djA" = (/obj/structure/chair{dir = 8},/turf/open/floor/plasteel/dark,/area/security/brig) "djR" = (/obj/effect/turf_decal/bot,/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/cargo/storage) "dkI" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/closet/secure_closet/brig{id = "Cell 3"; name = "Cell 3 Locker"},/obj/structure/cable{icon_state = "1-4"},/obj/effect/turf_decal/tile/yellow,/obj/effect/turf_decal/tile/yellow{dir = 8},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel,/area/security/brig) +"dlh" = (/obj/structure/chair/beanbag/red{dir = 1},/turf/open/floor/wood,/area/maintenance/bar) "dmF" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/aft) +"dqN" = (/obj/structure/chair/beanbag/purple{dir = 8},/turf/open/floor/carpet/black,/area/hallway/primary/central) "dqT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark/side{dir = 4},/area/security/prison/upper) "dtz" = (/obj/structure/disposalpipe/segment{dir = 6},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/office) "duz" = (/obj/structure/fans/tiny,/obj/machinery/door/airlock/public{name = "Small Sauna #2 Bolts"; id_tag = "small_sauna_2"},/turf/open/floor/wood,/area/crew_quarters/fitness/sauna) +"dyr" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/engineering/main) "dCp" = (/obj/structure/flora/ausbushes/lavendergrass,/turf/open/floor/grass,/area/security/courtroom) "dDM" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/closed/wall/r_wall,/area/security/brig) "dFf" = (/obj/structure/chair/sofa/left{dir = 1},/turf/open/floor/wood,/area/maintenance/port/fore) @@ -7243,18 +7246,19 @@ "fls" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/grass,/area/security/courtroom) "fmC" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/button/door{id = "permacells4"; name = "Privacy Shutters"; pixel_y = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells) "fmH" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/hallway/primary/starboard) -"frp" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"frp" = (/obj/structure/sink{dir = 8; pixel_x = -12; pixel_y = 2},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "ftF" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/machinery/door/airlock/grunge{name = "Permanent Cell 5"; wiretypepath = /datum/wires/airlock/security},/turf/open/floor/plasteel/dark,/area/security/prison/cells) "fwq" = (/obj/effect/turf_decal/loading_area{icon_state = "steel_decals_central7"},/turf/open/floor/plasteel,/area/security/prison) "fzN" = (/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "fAL" = (/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 4},/obj/machinery/door/airlock/external{req_access_txt = "13"; dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary) "fAN" = (/obj/docking_port/stationary{dir = 8; dwidth = 2; height = 5; shuttle_id = "laborcamp_home"; name = "fore bay 1"; roundstart_template = /datum/map_template/shuttle/labour/box; width = 9},/turf/open/space/basic,/area/space) -"fBl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/washing_machine,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"fBl" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/washing_machine,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "fDC" = (/obj/machinery/light,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/brig) "fEc" = (/obj/structure/table/reinforced,/obj/item/reagent_containers/food/snacks/burger/cheese,/obj/item/ashtray{pixel_y = -15},/turf/open/floor/carpet,/area/cargo/miningdock) "fFW" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/machinery/light{dir = 4},/turf/open/floor/plasteel,/area/security/prison/cells) "fGe" = (/obj/item/reagent_containers/food/condiment/enzyme,/turf/open/floor/plasteel/cafeteria,/area/service/theater) "fHR" = (/obj/effect/decal/cleanable/dirt,/turf/open/floor/carpet,/area/maintenance/starboard/fore) +"fKX" = (/obj/structure/sink{dir = 8; pixel_x = -12},/turf/open/floor/wood,/area/crew_quarters/fitness/sauna) "fLF" = (/obj/structure/dresser,/obj/item/flashlight/lamp/green{pixel_x = -4; pixel_y = 14},/obj/machinery/button/door{id = "maintdorm2"; name = "Window Shutter Control"; pixel_x = -26; req_access_txt = "28"},/turf/open/floor/wood{icon_state = "wood-broken5"},/area/maintenance/port/fore) "fNx" = (/obj/structure/flora/junglebush/b,/turf/open/floor/grass,/area/crew_quarters/fitness/sauna) "fOR" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/turf/open/floor/plasteel,/area/security/processing) @@ -7297,9 +7301,9 @@ "gYU" = (/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/landmark/start/assistant,/turf/open/floor/plasteel,/area/crew_quarters/fitness) "hat" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/cargo/miningdock) "haM" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel,/area/security/brig) -"haV" = (/obj/structure/chair/bench/right{dir = 8},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"haV" = (/obj/structure/chair/bench/right{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "hbr" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) -"hcS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/washing_machine,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"hcS" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/washing_machine,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "hda" = (/obj/effect/spawner/structure/window/reinforced,/obj/structure/cable{icon_state = "1-4"},/obj/structure/cable{icon_state = "0-4"},/turf/open/floor/plating,/area/security/prison/upper) "hfQ" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/obj/machinery/light,/turf/open/floor/plasteel/dark/side,/area/crew_quarters/fitness/sauna) "hgj" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/vending/cola/red{onstation = 0},/turf/open/floor/plasteel,/area/security/prison/upper) @@ -7354,7 +7358,7 @@ "iPS" = (/obj/machinery/computer/prisoner/gulag_teleporter_computer,/turf/open/floor/plasteel,/area/security/prison) "iTK" = (/obj/structure/chair{dir = 4},/obj/machinery/airalarm{dir = 4; pixel_x = -22},/turf/open/floor/plasteel/dark,/area/security/brig) "iWg" = (/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) -"iXA" = (/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/shower{pixel_y = 19},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"iXA" = (/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/shower{pixel_y = 19},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "iXJ" = (/obj/structure/reagent_dispensers/peppertank{pixel_x = 30},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/turf/open/floor/plasteel,/area/security/checkpoint/medical) "jaW" = (/obj/structure/table,/obj/item/electropack,/obj/item/healthanalyzer,/obj/item/assembly/signaler,/turf/open/floor/plasteel,/area/science/misc_lab) "jaX" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/security/brig) @@ -7370,8 +7374,10 @@ "jou" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/door/airlock/maintenance{name = "Fitness Maintenance"; req_access_txt = "12"},/turf/open/floor/plasteel,/area/maintenance/fore/secondary) "jqf" = (/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/hallway/primary/central) "jts" = (/turf/open/floor/wood,/area/maintenance/port/fore) +"jtt" = (/obj/effect/decal/cleanable/dirt,/obj/item/reagent_containers/food/drinks/bigbottle/spaceup,/turf/open/floor/plasteel/grimy,/area/maintenance/starboard/aft) "jtZ" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/sauna) "juX" = (/obj/structure/extinguisher_cabinet{pixel_x = 27},/obj/effect/turf_decal/stripes/corner{dir = 8},/turf/open/floor/plasteel,/area/hallway/secondary/entry) +"jvI" = (/obj/structure/table,/obj/machinery/light/small{dir = 8},/obj/item/book/lorebooks/welcome_to_gato,/turf/open/floor/carpet/gato,/area/commons/dorms) "jxw" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/brig) "jxX" = (/obj/structure/cable{icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plating,/area/maintenance/fore/secondary) "jyS" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central4"},/turf/open/floor/plasteel/yellowsiding{dir = 1},/area/crew_quarters/fitness) @@ -7390,18 +7396,19 @@ "jUz" = (/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/starboard/aft) "jWb" = (/obj/effect/turf_decal/stripes/white/line{dir = 9},/turf/open/floor/plasteel,/area/security/prison/upper) "jWn" = (/obj/structure/cable{icon_state = "0-2"},/obj/effect/spawner/structure/window/reinforced/tinted/electrochromatic{electrochromatic_id = "!permabrigshowers"},/turf/open/floor/plating,/area/security/prison/cells) +"jXj" = (/obj/item/kirbyplants/random,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "jXK" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "1-4"},/turf/open/floor/plasteel,/area/security/prison/upper) "jXN" = (/obj/structure/chair/wood/normal{dir = 1},/turf/open/floor/carpet/red,/area/maintenance/bar) "kar" = (/turf/open/floor/plasteel/dark/side{dir = 4},/area/crew_quarters/fitness/sauna) "kaY" = (/obj/structure/weightmachine/weightlifter,/turf/open/floor/plasteel,/area/security/prison/upper) "kgC" = (/obj/effect/turf_decal/stripes/line{dir = 10},/obj/machinery/portable_atmospherics/canister/nitrous_oxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/turf/open/floor/plating,/area/security/execution/transfer) -"khQ" = (/obj/structure/closet/wardrobe/mixed,/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"khQ" = (/obj/structure/closet/wardrobe/mixed,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "kjZ" = (/obj/machinery/vending/sustenance,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper) "knw" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/snacks/meatballspaghetti{pixel_y = 7; pixel_x = -3},/obj/item/ashtray{name = "candle holder"; pixel_x = 10},/obj/item/candle{pixel_x = 10; pixel_y = 5},/turf/open/floor/wood,/area/maintenance/port/fore) "kuo" = (/obj/structure/disposalpipe/segment{dir = 10},/obj/structure/cable{icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 10},/turf/open/floor/plasteel/dark,/area/maintenance/aft) "kvF" = (/obj/effect/turf_decal/tile/green,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/prison/upper) "kxa" = (/obj/machinery/door/airlock/security/glass{id_tag = "permaouter"; name = "Permabrig Transfer"; req_access_txt = "2"},/obj/machinery/door/firedoor,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/mapping_helpers/airlock/cyclelink_helper{dir = 1},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel/dark,/area/security/prison) -"kxb" = (/obj/structure/table/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/reagent_containers/glass/bucket{pixel_y = 9; pixel_x = 8},/obj/structure/window/reinforced/spawner{dir = 1},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"kxb" = (/obj/structure/table/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/stack/sheet/mineral/wood,/obj/item/reagent_containers/glass/bucket{pixel_y = 9; pixel_x = 8},/obj/structure/window/reinforced/spawner{dir = 1},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "kBc" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "kDm" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/maintenance/starboard/fore) "kEI" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red,/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 1},/obj/structure/cable{icon_state = "4-8"},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel,/area/security/prison/cells) @@ -7415,10 +7422,11 @@ "kUV" = (/obj/machinery/door/poddoor/shutters/preopen{id = "rnd"; name = "research lab shutters"},/obj/machinery/autolathe,/obj/machinery/door/window/southright{name = "Research and Development Desk"; req_one_access_txt = "7;29"},/turf/open/floor/plating,/area/science/lab) "kUY" = (/obj/structure/bed,/turf/open/floor/padded,/area/security/execution/transfer) "kWf" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple{dir = 10},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"kWD" = (/obj/structure/chair/bench{dir = 8},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"kWD" = (/obj/structure/chair/bench{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "laC" = (/obj/structure/table,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/item/restraints/handcuffs,/obj/item/taperecorder,/obj/item/folder/red,/turf/open/floor/plasteel/dark,/area/security/prison/upper) "lbn" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/table,/obj/item/reagent_containers/rag/towel,/obj/item/reagent_containers/rag/towel{pixel_y = 3},/obj/item/reagent_containers/rag/towel{pixel_y = 3; pixel_x = 16},/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/fitness/sauna) "lbT" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/turf_decal/tile/bar{dir = 8},/turf/open/floor/plasteel/dark,/area/service/chapel/main) +"lcj" = (/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel,/area/crew_quarters/fitness/sauna) "lfC" = (/obj/structure/table,/obj/item/storage/firstaid/regular,/turf/open/floor/wood,/area/crew_quarters/fitness) "lfD" = (/obj/effect/decal/cleanable/dirt,/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/open/floor/plasteel,/area/security/prison/upper) "lhI" = (/obj/structure/lattice,/obj/structure/lattice,/turf/closed/wall/r_wall,/area/space/nearstation) @@ -7442,7 +7450,7 @@ "lPg" = (/obj/effect/turf_decal/tile/green{dir = 1},/obj/effect/turf_decal/tile/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4},/turf/open/floor/plasteel,/area/security/prison/upper) "lQf" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/flora/ausbushes/lavendergrass,/turf/open/floor/grass,/area/security/courtroom) "lQq" = (/obj/machinery/door/airlock/public/glass{name = "Fitness"; dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) -"lQX" = (/obj/structure/sink{dir = 1},/obj/structure/mirror{pixel_y = -32},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"lQX" = (/obj/structure/sink{dir = 1},/obj/structure/mirror{pixel_y = -32},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "lRf" = (/obj/structure/closet/secure_closet/brig,/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/bot_white,/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 1},/obj/machinery/light{dir = 1},/turf/open/floor/plasteel/dark,/area/security/prison) "lTj" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals7"},/obj/effect/turf_decal/stripes/white/line{dir = 10; icon_state = "steel_decals7"},/turf/open/floor/plasteel,/area/command/bridge) "lUC" = (/obj/machinery/atmospherics/pipe/manifold/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/security/processing) @@ -7504,7 +7512,7 @@ "nFt" = (/turf/open/floor/plating,/area/security/range) "nGb" = (/obj/machinery/door/airlock/grunge,/turf/open/floor/wood,/area/commons/vacant_room/office) "nGL" = (/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/simple/supply/hidden,/obj/structure/cable{icon_state = "1-2"},/turf/open/floor/plasteel,/area/security/prison/cells) -"nJV" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "maintkitchenshutters"; name = "kitchen shutters"},/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore) +"nJV" = (/obj/structure/table/reinforced,/obj/machinery/door/poddoor/shutters/preopen{id = "maintkitchenshutters"; name = "kitchen shutters"},/obj/item/reagent_containers/food/drinks/bigbottle/cola,/turf/open/floor/plasteel/cafeteria,/area/maintenance/port/fore) "nPy" = (/obj/structure/window/reinforced/tinted{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison/upper) "nRa" = (/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel,/area/hallway/secondary/entry) "nSi" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 5},/turf/open/floor/plasteel/white,/area/medical/medbay/central) @@ -7523,6 +7531,7 @@ "orG" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/cells) "otM" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) "ovQ" = (/obj/item/toy/sword,/turf/open/floor/plating,/area/maintenance/port/fore) +"owr" = (/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel,/area/ai_monitored/command/storage/eva) "ozb" = (/obj/effect/turf_decal/stripes/line{dir = 9},/obj/machinery/airalarm{pixel_y = 23},/turf/open/floor/plasteel,/area/security/processing) "ozR" = (/obj/structure/table/wood,/obj/item/stack/packageWrap,/obj/item/paper_bin{pixel_x = 1; pixel_y = 9},/turf/open/floor/wood,/area/service/library) "oDn" = (/turf/open/floor/plasteel/dark/side{dir = 10},/area/crew_quarters/fitness/sauna) @@ -7540,6 +7549,7 @@ "pjs" = (/obj/machinery/door/firedoor,/obj/machinery/door/airlock/security{dir = 8; name = "Evidence Storage"; req_access_txt = "3"},/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "pjz" = (/obj/machinery/shower{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 4},/obj/structure/cable{icon_state = "2-8"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/security/prison/cells) "pkv" = (/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/obj/machinery/button/door{id = "MaintDorm3"; name = "Dorm bolt control"; normaldoorcontrol = 1; specialfunctions = 4; pixel_y = 24},/turf/open/floor/carpet,/area/maintenance/starboard/fore) +"pmp" = (/obj/structure/table/wood,/obj/item/reagent_containers/food/drinks/bigbottle/cola,/turf/open/floor/carpet/red,/area/maintenance/bar) "pqk" = (/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/turf/open/floor/plasteel/dark,/area/ai_monitored/security/armory) "ptj" = (/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 8},/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) "puS" = (/turf/open/floor/plasteel/dark,/area/security/execution/transfer) @@ -7548,6 +7558,7 @@ "pFC" = (/obj/structure/lattice,/obj/structure/grille,/obj/structure/grille/broken,/turf/open/space/basic,/area/space/nearstation) "pHs" = (/obj/structure/bed,/obj/effect/spawner/lootdrop/bedsheet,/obj/structure/mirror{pixel_y = 28; pixel_x = -3},/obj/item/restraints/handcuffs/fake/kinky,/turf/open/floor/wood,/area/maintenance/port/fore) "pNo" = (/obj/machinery/computer/security,/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/security/brig) +"pRY" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/turf/open/floor/carpet/gato,/area/commons/dorms) "pSh" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 5},/turf/closed/wall/r_wall,/area/security/execution/transfer) "pSx" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/closed/wall/r_wall,/area/security/execution/transfer) "pTZ" = (/obj/effect/turf_decal/tile/green,/obj/effect/turf_decal/tile/green{dir = 4},/turf/open/floor/plasteel,/area/security/prison/upper) @@ -7620,7 +7631,7 @@ "sru" = (/obj/structure/table/optable,/obj/item/storage/backpack/duffelbag/sec/surgery,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/bot,/turf/open/floor/plasteel/dark,/area/security/brig) "ssw" = (/turf/open/floor/plasteel/dark/side{dir = 8},/area/crew_quarters/fitness/sauna) "swT" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/structure/cable{icon_state = "4-8"},/obj/structure/cable{icon_state = "2-4"},/turf/open/floor/plasteel/dark,/area/security/execution/transfer) -"syv" = (/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/shower{dir = 1},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) +"syv" = (/obj/structure/window/reinforced/spawner{dir = 4},/obj/machinery/shower{dir = 1},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/crew_quarters/fitness/sauna) "syH" = (/obj/machinery/computer/arcade/battle,/obj/machinery/firealarm{pixel_y = 24},/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper) "sCd" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/cable{icon_state = "4-8"},/turf/open/floor/plasteel,/area/security/prison/upper) "sFH" = (/obj/structure/dresser,/obj/item/flashlight/lamp{pixel_y = 13; pixel_x = -5},/turf/open/floor/carpet,/area/maintenance/starboard/fore) @@ -7665,6 +7676,7 @@ "tFJ" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/stripes/line{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 9},/turf/open/floor/plasteel,/area/security/prison/cells) "tGc" = (/obj/effect/turf_decal/tile/red{dir = 4},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel,/area/security/brig) "tIp" = (/obj/structure/window/reinforced/tinted{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 8},/turf/open/floor/plasteel,/area/security/prison/upper) +"tIr" = (/obj/structure/chair/bench/right{dir = 8},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/structure/sink{dir = 8; pixel_x = -12},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "tRy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/clothing,/turf/open/floor/plasteel/dark/side{dir = 1},/area/crew_quarters/fitness/sauna) "tRG" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/blood/old,/turf/open/floor/plasteel,/area/security/prison/upper) "tSK" = (/obj/structure/cable{icon_state = "4-8"},/obj/effect/landmark/event_spawn,/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/firealarm{pixel_y = 24},/turf/open/floor/plasteel,/area/security/brig) @@ -7706,6 +7718,7 @@ "vlM" = (/obj/machinery/computer/operating,/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/turf_decal/bot,/obj/machinery/firealarm{dir = 8; pixel_x = 24},/turf/open/floor/plasteel/dark,/area/security/brig) "vnp" = (/obj/structure/scale,/turf/open/floor/plasteel/white,/area/medical/medbay/central) "vpq" = (/obj/machinery/light/small{dir = 1; light_color = "#ffc1c1"},/obj/effect/decal/cleanable/blood/old,/turf/open/floor/padded,/area/security/execution/transfer) +"vpO" = (/obj/structure/chair/bench{dir = 8},/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "vrf" = (/obj/effect/turf_decal/tile/red,/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/light/small{dir = 4; light_color = "#d8b1b1"},/turf/open/floor/plasteel,/area/security/execution/transfer) "vrR" = (/obj/machinery/light/small{dir = 4},/turf/open/floor/wood,/area/maintenance/port/fore) "vtI" = (/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/machinery/door/firedoor,/turf/open/floor/plasteel,/area/hallway/primary/central) @@ -7739,7 +7752,7 @@ "wfY" = (/obj/machinery/atmospherics/components/unary/vent_scrubber/on,/obj/effect/turf_decal/tile/red{dir = 8},/obj/effect/turf_decal/tile/red{dir = 1},/turf/open/floor/plasteel/dark,/area/security/office) "wgv" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals_central7"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 5; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/turf/open/floor/plasteel,/area/hallway/primary/fore) "wio" = (/obj/structure/chair/sofa/left{dir = 8},/turf/open/floor/carpet,/area/science/misc_lab) -"wix" = (/obj/structure/chair/bench/right,/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) +"wix" = (/obj/structure/chair/bench/right,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"},/turf/open/floor/plaswood,/area/crew_quarters/fitness/sauna) "wkm" = (/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/white/line{dir = 6; icon_state = "steel_decals3"},/obj/effect/turf_decal/stripes/line{dir = 8},/turf/open/floor/plasteel,/area/cargo/miningdock) "wkI" = (/obj/machinery/door/firedoor,/obj/structure/cable{icon_state = "1-2"},/obj/structure/sign/warning/securearea{pixel_x = -32; pixel_y = 32},/obj/effect/turf_decal/delivery,/obj/machinery/door/poddoor/shutters/preopen{id = "Prison Gate"; name = "Prison Lockdown Shutters"},/turf/open/floor/plasteel/dark,/area/security/range) "wpR" = (/obj/structure/chair{dir = 8},/obj/effect/decal/cleanable/dirt,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel/cafeteria,/area/security/prison/upper) @@ -7767,11 +7780,13 @@ "xiB" = (/obj/effect/landmark/start/warden,/turf/open/floor/plasteel/showroomfloor,/area/security/warden) "xkX" = (/obj/structure/cable{icon_state = "1-2"},/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel/dark,/area/maintenance/port/aft) "xlw" = (/obj/effect/turf_decal/tile/neutral,/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/tile/neutral{dir = 8},/obj/effect/turf_decal/tile/neutral{dir = 1},/obj/effect/landmark/start/prisoner,/obj/machinery/button/door{id = "permacells1"; name = "Privacy Shutters"; pixel_x = 25},/turf/open/floor/plasteel/dark,/area/security/prison/cells) +"xme" = (/obj/structure/closet/secure_closet/personal,/turf/open/floor/carpet/gato,/area/commons/dorms) "xmo" = (/obj/structure/sign/plaques/golden{pixel_y = 32},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 4},/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/turf/open/floor/plasteel,/area/ai_monitored/security/armory) "xnZ" = (/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 4},/obj/machinery/door/airlock/medical/glass{name = "Prison Forestry"; dir = 4},/turf/open/floor/plasteel/dark,/area/security/prison/upper) "xov" = (/obj/machinery/light{dir = 4},/turf/open/floor/grass,/area/security/courtroom) "xoQ" = (/obj/structure/window/reinforced/tinted{dir = 4},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 8},/obj/effect/turf_decal/tile/blue{dir = 4},/obj/effect/turf_decal/tile/blue{dir = 1},/turf/open/floor/plasteel,/area/security/prison/upper) "xrV" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/turf_decal/tile/red{dir = 1},/obj/effect/turf_decal/tile/red{dir = 8},/obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{dir = 8},/turf/open/floor/plasteel,/area/security/brig) +"xtb" = (/obj/effect/turf_decal/loading_area{dir = 4; icon_state = "steel_decals"},/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "steel_decals"},/turf/open/floor/plasteel,/area/cargo/storage) "xtW" = (/obj/effect/turf_decal/stripes/line,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/atmospherics/components/unary/portables_connector/visible{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/open/floor/plating,/area/security/execution/transfer) "xuK" = (/obj/effect/turf_decal/stripes/white/line{dir = 6},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden,/obj/effect/decal/cleanable/dirt,/turf/open/floor/plasteel,/area/security/prison/upper) "xxK" = (/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 2; icon_state = "steel_decals9"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals9"},/turf/open/floor/plasteel,/area/crew_quarters/fitness) @@ -7899,8 +7914,8 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjaotaouaovaowamJaadaaeaaealzalzalzaoxaoyaozalzaaaaaaalzamianOanmamiaoAalzaadaadaadaaFaadaadaadaaFaaFalzamialzatJaaaaaaaaaaaaaaaaaaaaaaaaarjarjarjarjarjarjarjaoGaoHaoHaoHaoIaoHaoHaoHaoJaoKaoKaoKaoLaoKaoKaoMaoNaoOaoPanGaoQanGanGanGanGaoRanGaoSaoSaoSaoSaoTaoUaoVaoWaoXaoXaoYaoZaqGbjqbjeauDbjebjoaszarLaGharEarFjySarFarGarFbjrasBbiOaaaaaeaaeaaeaaaanIapdapeapfanIapgapgapgapgapgalualualualtaphsMlaosaltaltamIaltaltaltaltapialtaltaadmTUcsjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadamJanjanjanjanjanjanjanjanjanjanMapjapkaplamJaadalzapmalzapnapoamiappamialzakTakTalzapqanOanmapqalzalzalzaUtaUtaUtalzalzalzalzalzalzlotalzatJaaaaaaaaaaaaaaaaaaaaaaaaarjaqsaqsarjapsaqsadaaptaoHapuapvapwapxapwaoHapyaoKapzapAapBapCaoKamYanbapDapEapFapGapGapGapGapGapHapIapGapGapGapGapGapJapKapLapMapNapObjsaqGbjtbjebjubjvbjwbjxbjybjzbjybjybjAbjBbjCbjDbjDbjEbiOaadaluapValuapganIanIapWapXanIapYamIamIapZaltaqaamIaqbaltaqcamIamIaqdaltamIaltaqeaqfaltamIaqgaltatJaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjaqhanjanjanjaqiaqjapjapkaqkamJaadalzamialzaqlaqmanQaqnaqoalzaoEamiaqpbjaanOaqqamiamialzqmggzPwXUaDVawCalzxZrcgXvBbalzamiakTatJaaaaaaaaaaaaaaaaaaaaaaaaarjaqsaqsarjaqtaquarjaqvaoHaqwaqxaqyapwapwaoHapyaoKaqzapBaqAaqBaqCamYanbandapEaiEaomaomaomaomaomaqEaqFaomaomaomaomaomaomaomaomaomasGaqGaqIaqGatIayGbjFatIavMayHayHaEXayHayHaRiaJgaqGaqGaqGaqGaqGaaaaqLamIaluapgaqMaqNaqOaqPamIamIamIaltamIaltaqQamIamIaltamIaqRaqSaqTapiamIaltaqUaqValtbjGapZaltatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMaqWapkaqXamJalzalzaqYalzalzalzamPaqZaraaraarbarcardarcarearfargarhalzcgYaXhaXhaXhaXhlwTarielTarialzamiakTatJaaaaaaaaaaaaaaaaaaaaaarjarjaqsarjarjarjarjarjcpFaoHarkarlarmapwarnaoHapyaroarparqarrarsaqCamYanbartapEaiEaomaruarvautarxaryasxaomatBatCatGaomatHauuayzaomeKJaqGbjHauFauFauFauGauHaqJaqKaqKaqKaqKaqKaqJapRaEYbjIaadaadaadaadaluarNaluapgarOamImnybjJaoramIaltaltarQaltaltarRaltaltaqTarSarTamIaltamIarUarUarUarUarUarUarUarUarUatJatJatJatJatJfRxatJaaaaaaaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMarWapkarXamJarYarZasaasbasbasbasbasbasbascasdasealzalzalzalzamialzalztnQaXhaXhaXhuypalzalzalzalzalzamiakTatJaaaaaaaaaaaaaaaaadaadarjashasiarjasjaskaslarjcpFaoHapxasmapxasnapwaoHasoaspasqapBasrbjKaqCamYanbassapEaiEaomastasuasvavxattatuaomavyavAavBaomavyavCbjLaomavDaqGbjMavFapRayFavHavIaqJaqKaqKaqKaqKaqKaqJapRayDbjIaaaaaaaaaaaaaluamIapYapgasMaqTmnyamIasNasOasPapiamIamIamIamIamIamIamIarSasQamIatOamIarUasSasTasUarUasVasWasXarUlHkaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMaqWapkaqXamJalzalzaqYalzalzalzamPaqZaraaraarbarcardarcarearfargarhalzcgYaXhaXhaXhaXhlwTarielTarialzamiakTatJaaaaaaaaaaaaaaaaaaaaaarjarjaqsarjarjarjarjarjcpFaoHarkarlarmapwarnaoHapyaroarparqarrarsaqCamYanbartapEaiEaomjvIxmeautarxaryasxaomatBatCatGaomatHauuayzaomeKJaqGbjHauFauFauFauGauHaqJaqKaqKaqKaqKaqKaqJapRaEYbjIaadaadaadaadaluarNaluapgarOamImnybjJaoramIaltaltarQaltaltarRaltaltaqTarSarTamIaltamIarUarUarUarUarUarUarUarUarUatJatJatJatJatJfRxatJaaaaaaaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMarWapkarXamJarYarZasaasbasbasbasbasbasbascasdasealzalzalzalzamialzalztnQaXhaXhaXhuypalzalzalzalzalzamiakTatJaaaaaaaaaaaaaaaaadaadarjashasiarjasjaskaslarjcpFaoHapxasmapxasnapwaoHasoaspasqapBasrbjKaqCamYanbassapEaiEaombkXasupRYavxattatuaomavyavAavBaomavyavCbjLaomavDaqGbjMavFapRayFavHavIaqJaqKaqKaqKaqKaqKaqJapRayDbjIaaaaaaaaaaaaaluamIapYapgasMaqTmnyamIasNasOasPapiamIamIamIamIamIamIamIarSasQamIatOamIarUasSasTasUarUasVasWasXarUlHkaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaamJanjanjanjanjanjanjanjanjanjanMarWasYasZamJamiamiataatbatcatcatcatcatcatcatdateatfaaFatgalzamiathalzalzatinJVatjalzalzfLFatkpHsalzamiakTatJaaaaaaaaaaaaaaaarjarjarjaqsaqsarjaqsaqsaqsarjcpFaoHapxatlatmatnapxaoHapyatoaoKatpatqatraoKatsanbandapEaiEaomaomaomaomaomatAauwaomavyavAavKaombjNavAavLaomeKJaqGawRawTawUawUawVawWasKaqKaqKaqKaqKaqKaqJapRaEZbjIatJatJatJaadaluamIbjOapgatLamIatMrcbrcbatNrcbrcbrcbatPamIamIamIbjJamIamIamIamIaltamIarUatQatRatRarUatSatTatUarUaadaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadamJanjanjanjanjanjanjanjanjanjanMatVatWatXamJatYbjPauaaubanRaucaudaueaufalzteyateaaFauhatfakTamiasfalzcRrrQDjtsjtsjtstbqauibaoaVEarjaqsarjaqraqrarjaaeaaeaaeaujaukaulaqsaqsarjarjaumarjarjcpFaoHaoHaunaoHauoaoHaoHaupauqaoKaoKaoKaoKaoKauranbausapEaiEaomaruarvaytarxauxauyaomaomawZaqFaomaomaxaaqFaomauBaqGaxcatDaxdaxdaxeaxfatEaqKaqKaqKaqKaqKatFasHaFaaqGaltaltaltaltaltamIaltapgapgapgapgapgapgapgapgapgaltauMauNaltaltaltaltaltaltaltaltamIauOarUatRatRauPauQatQauRarUatJaaaaoBaoBaoBiWgaoBaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSamJamJamJamJamJamJamJamJamJamJamJauTauUamJamJauValzataauWamiauXauYamiamialzteyateauZaadauZalzamiavaalzavbavcrGXvkTvrRavdaveaveaveaviqKsavgampampaviavfavfavfavgaviavgavgavhavgavjavhavkavlavmavnefGavoefGavpavnavnavqavrefGavnefGavnavsavtavuavuavvavwaomastasvasvazyauzauAauCauEauIavzavGawSawXawYaxbaxgatIayBatDayCaxdaxeaxfatIaqKaqKaqKaqKaqKatIauKauLaqGaFTaFSaltasLaqcamIavNaltavOaosavPavQaoraltatLaoraltavRamIaltavSamIaltavTavUavVkDmkDmavWawxavYavZawaawbawcawdarUatJatJatJatJatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG @@ -7909,28 +7924,28 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaat byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweayVaweayUaBcayUayWaxBaxBayXayUaBcayUayYayZazaazbalzataauWalzalzalzalzazcazcazdazeazcazcazcazcazcaugawsaveaveaveaveaveazfaxRaoEawEaBMaBqaBqabFawEaeXaHzazhaHHawEaIDayaaAAazjaABaBwaCWayaaybaznazoazpazpazqazrazpazpazpazsaztaztazuazvayqazwanbazxahfafmaomastasvasvaDoaBPaBQaDraEHaEHaDraBRaBSaDpaDsaDtaDuatIaDAaDBaDCaDDaDKaDNayIaqKaqKaqKaqKaqKayJaltaltaltamIamIaltaltayKazOazPayKapZmnyaltazQfHRpkvaltphKaltazSazTaltazUamIaltapiapiaIpazVapiarUazWayOazXazYazXayOazZarUaadaadatJaadaadiWgaadaoBaoBaoBaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSaAaauSaAbaRJayUaAcaAdaAeaAfayUaRJaAbayUauSaAgaAhalzaAiaAjaAkaAkaAkaAlazcaAmaAnaAoaApaAqaAraAmazcaAsaAtaAujilaAvaAvaAvaAvaAwarYawEaHIaBqaICaIYawEaIZaJcaHzaJfawEavXayaaCXaABaACaABaCYayaaAEaAFaAGaAHaAIaAJaAKaALaAMaANaAOaAPayoayoayoaAQazwanbaARahfafmaomaomaomaomaomaDvaDwaDxaEDaEGaEIaEJazFazFazFazFazFaITaGbaGcaAXaITaILaILayJaqKaqKaqKaqKaqKayJaltapZamIamIbjJaltaAYayKaAZaBaayKamIarPaltsFHmtgfHRaOYiFMaltarPamIaltbjUamIaltaBbbjJhbrayMaqTarUarUarUarUarUarUarUarUarUaCwatJaaaaaaaaaatJaoBaoBaoBaoBaaaaaaaaaaaaaoBaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaayUaQJayUayUayUayUayUayUaQJayUaaamJZaBdazbaBeaBfaBgaBeaBeaBeaBhazcaAmaBiaBjaBkaBlaBmaAmazcaBnaBoaBnaBnaBnaBnaBnaBnaBpaBnawEaJRaBqfGeaJSawEaJTaHzaJVaJWawEavXayaaCXaBwaBxazjaCYayaaqsaBzaydaBAaBBaBCaBDaBEaAPaBFaBGayoayoaBHayoaAQazwanbazxahfafmaomaFVaFWaFXbjVaFHaFYazFazFazFazFaGdazFaGoaGfaGfazFaGpaHxbjWbjXaHAaHCaHDayJaqKaqKaqKaqKaqKayJaltaBYaDLaBZaCaaltaltayKaCbaCcayKaCdaCealtaltaltaltaltaltaCfaCgaChaCiaCiaCiaCjaCkaClaCmaCnaCoaCpaCqaCraCsaCtaCuaCvaCwaCwaCwaadaadaadaadaadaadatJiWgiWgiWgatJatJatJiWgiWgiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauSayWaCxaBeaCyaCzaCAaCBaCCaCDazcaAmaCEaCGaCHaCIaCGaAmazcaCJaCKaCLaCMaCNaCOaCPaCQaEjaEmawEawEawEaxTawEawEawEaKhawEawEawEavXayaaCZaDabjYbjZbkaayaaqsaDbaydaDcaDdaDeayoaDfaDgaDhaDiaDjaAQayqaDkayqazwanbazxahfafmaomaGgaFZaHuaHvaGaaGeaDqaHEaIXaYYaZgaYWbavbcwaHLazFaHNaHObjWbjXaJaaJbaJbaBVaBWaBWaBWaBWaBWaBXaltaBYaDLaDEaDFaDGaDHayKaDIaDJayKarPamIaltaaaaltaFUaGvaGxaGyaGAjekjekjekbkbjekaDPaDQaDRaDSaDTaDTaDTaDUaVqaDWaDXaDYaDZaEaaEbaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauSayWaCxaBeaCyaCzaCAaCBaCCaCDazcaAmaCEaCGaCHaCIaCGaAmazcaCJaCKaCLaCMaCNaCOaCPaCQaEjaEmawEawEawEaxTawEawEawEaKhawEawEawEavXayaaCZaDabjYbjZbkaayaaqsaDbaydaDcaDdaDeayoaDfaDgaDhaDiaDjaAQayqaDkayqazwanbazxahfafmaomaGgaFZaHuaHvaGaaGeaDqaHEaIXaYYaZgaYWbavbcwaHLazFaHNaHObjWbjXaJaaJbdqNaBVaBWaBWaBWaBWaBWaBXaltaBYaDLaDEaDFaDGaDHayKaDIaDJayKarPamIaltaaaaltaFUaGvaGxaGyaGAjekjekjekbkbjekaDPaDQaDRaDSaDTaDTaDTaDUaVqaDWaDXaDYaDZaEaaEbaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaEcaBeaEdaEeaEfaEgaEhaEiazcaFraFsaFwaFxaFsaFwaFxaEkaGVaGYaGZaHaaGZaGZaGZaGZaIuaGVawEaKiaKjaKkaKkaGjaHyaKkaKpaKrawEaxZayaaEraEsaEtaEuaEvayaaqsaEwaydaydaDiaExaEyaEzaEAaydaydayoayoayqaEBayqazwanbazxahfafmaomaGgaHtbczbdwazAaGlaEKaEKaEKbkcaEMaEKbghbghbgiazFaITaJnaLMaLUaLXaJjaMgaCiaCiaCiaCiaCiaCiaCiaCibkdaltaltaltaEPaltayKaEQaERaESaETaEUaEVaEWaEVaHwaHBaHVaHWaHXaFbaFbaFbaFbaFbaFdaFeaCwaCwaCwaCwaCwaCwaCwaFfaFgaFhaCwaCwaCwaadaadaadaadaadaadaadaadaadaadatJatJatJatJatJatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaFiaBeaFjaFkaFlaFmaFnaFoazcaIzaYjbfNbgTbkeaCFaFqazcaIvaIwaFtaFuaElaElaElaFvaIxaIyawEaLcaLgaKkaLhaLkaLlaKkaLnaLoawEaFDayaaFEaFFaEtaFGaENayaaqsaFIayqaFJayoaFKaFLaFMayoaFNayqaFOaFPayqaFLayqaFQaoNaFRahfafmaombkfbkgbkhbjVaHGaHJazFbaubaKbkibkjazFazFazFazFazFaNoaNyaNIaNUaOdaOmaOwaOxaGiaGkjekjekjekjekaGmaGnaLWaOCaOCaRlbkkbklaSuaCnaGqaGraGsaGtaGuaGtaHYaGwaFbaHZaIaaKIaKJaOMaGBaFbaGCaGDaCwaGEaGFaGGaGHaGIaGJaGKaGLaGMaGNaGOaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaFiaBeaFjaFkaFlaFmaFnaFoazcaIzaYjbfNbgTbkeaCFaFqazcaIvaIwaFtaFuaElaElaElaFvaIxaIyawEaLcaLgaKkaLhaLkaLlaKkaLnaLoawEaFDayaaFEaFFaEtaFGaENayaaqsaFIayqaFJowraFKaFLaFMowraFNayqaFOaFPayqaFLayqaFQaoNaFRahfafmaombkfbkgbkhbjVaHGaHJazFbaubaKbkibkjazFazFazFazFazFaNoaNyaNIaNUaOdaOmaOwaOxaGiaGkjekjekjekjekaGmaGnaLWaOCaOCaRlbkkbklaSuaCnaGqaGraGsaGtaGuaGtaHYaGwaFbaHZaIaaKIaKJaOMaGBaFbaGCaGDaCwaGEaGFaGGaGHaGIaGJaGKaGLaGMaGNaGOaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGQayUayWbkmaBeaBeaGSaGTaGUaGTaBeazcazcazcazcazcazcaGWaGXazcaIAaIBaJUaJUaJUaQKaJUaJUbknbkoawEaLpaLxaKkaLkaLSaLkaKkaLTaLZawEaxZayaaHdaHeaHfaHgaHhayaaqsaHiayqaHjayoaHkaFLaHlayoaHmayqaAQaAQayqaHnayqaHoaHpaHqahfanDaomaomaomaomaomaHraHsazFazFazFbjmbkpbkqbkqaLYaMcazFaSwbbVaNuaSJaJdaTTaJdbkraJdaVmaJdaJdaJiaJibksaHKaVnaHMaNvaHKaNxaWJaWLaHPaHQaHRamIaHSaHSaHSaHTaIoaFbaMraNEaOzbagbcbbktaFbaIbaIcaCwaIdaIeaIfaIgaGIaIhaFfaFgaDYaIiaIjaGPaaaatJaaaaaaatJaaaaaaaaaatJaaaaaaaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaIraIlaImaIlaInbkuaLfbkuaLqaLvbkvbkwaxYaCFbkxazcbkybkzbkAbkBbkCbkDbkEbkFbkGbkHawEaMaaMbaKkaKkaKkaKkaKkaMNaMaawEavXayaaIEaIFaIGaFGaIHayaaqsapyayqaIIbjTaFLaFLaFLaIJaIKayqbkIbkJaHFaIMaINaIOaIPbkKbkLaISaIQbkMbkNaITaOuaIVaIWazFbaubbpbkObbcbbcbbcbbcaOvazFaYlbbVaIPbaEaJdaYpaYqaYXaZSaZVbbbaJdaNraNrbbRaOcaKuaJkaJlaJiaJmaHSaHSbbXaHTaHSaHSaHSaJoaJpaHTsGRaFbaJqaJraJsaJtaJuaJvaFbaJwaJxaJyaJzaJAaJBaJCaJDaIhaFfaJEaDYaGNaJFaGPaaaatJaaaaaaatJaaaaMzaMzaMzaMzaMzaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaJGaJHaJIaJHaJJaJHaJHaJHaJKaLObkPbkQaxYaJMaxYazcaJNaJOaJNaBnaBnaBnaBnaJNaJPaJQawEawEaMPaNjaNjaNkaNjaNjaNlawEawEaJXayaaJYayaaJZaKaaKbayaarjaoJayqayqayqaAQaKcaAQayqayqayqbkRbkSbkTaKdaIPaIPaIPaIPaIPaKebkUbkVbkWaITaWGaIVaKgazFazFazFazFazFazFazFazFaKqazFaITaPMaTSbcfaJdbcWaELaPLbdxbdHbdZaJdaDzaNsaNsaNsaOyaKvaKwaJiaKxaKyaKzaKAaKBaKCaKDaKEaKFaKGaHTsGRaFbaKHaOMaMqbkXaOMaKKaFbaKLaKMaKNaKOaKPaKQaKRaCwaCwaKSaFgaDYaIiaIjaGPaaaatJavJaQgaQgaQgaMybkYaNJaNLaMzaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaIraIlaImaIlaInbkuaLfbkuaLqaLvbkvbkwaxYaCFbkxazcbkybkzbkAbkBbkCbkDbkEbkFbkGbkHawEaMaaMbaKkaKkaKkaKkaKkaMNaMaawEavXayaaIEaIFaIGaFGaIHayaaqsapyayqaIIjXjaFLaFLaFLaIJaIKayqbkIbkJaHFaIMaINaIOaIPbkKbkLaISaIQbkMbkNaITaOuaIVaIWazFbaubbpbkObbcbbcbbcbbcaOvazFaYlbbVaIPbaEaJdaYpaYqaYXaZSaZVbbbaJdaNraNrbbRaOcaKuaJkaJlaJiaJmaHSaHSbbXaHTaHSaHSaHSaJoaJpaHTsGRaFbaJqaJraJsaJtaJuaJvaFbaJwaJxaJyaJzaJAaJBaJCaJDaIhaFfaJEaDYaGNaJFaGPaaaatJaaaaaaatJaaaaMzaMzaMzaMzaMzaaaatJaaaaaaiWgaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayWaxBaJGaJHaJIaJHaJJaJHaJHaJHaJKaLObkPbkQaxYaJMaxYazcaJNaJOaJNaBnaBnaBnaBnaJNaJPaJQawEawEaMPaNjaNjaNkaNjaNjaNlawEawEaJXayaaJYayaaJZaKaaKbayaarjaoJayqayqayqaAQaKcaAQayqayqayqbkRbkSbkTaKdaIPaIPaIPaIPaIPaKebkUbkVbkWaITaWGaIVaKgazFazFazFazFazFazFazFazFaKqazFaITaPMaTSbcfaJdbcWaELaPLbdxbdHbdZaJdaDzaNsaNsaNsaOyaKvaKwaJiaKxaKyaKzaKAaKBaKCaKDaKEaKFaKGaHTsGRaFbaKHaOMaOMaONaOMaKKaFbaKLaKMaKNaKOaKPaKQaKRaCwaCwaKSaFgaDYaIiaIjaGPaaaatJavJaQgaQgaQgaMybkYaNJaNLaMzaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaauSaKTaxBaKUaKVaKWaKXaKYaKZhgAaLaaLbaxBaIraNXaNYaNYaNYaOaaNYbkZaNYaNYaNYaNYaNYaNYblaaObblbblcbldaNYaNYaNYaNYaNYbleaNYblfblgblhaLraLmaLsaLmaLtaMWaLuaOeaLwaLRaEEaIRaIRaIRaLNaLPaLPbljaLPaLPaIPaIPaIPaNfaIPaIPaIPaLPaLPblkaLHaLIaLJaLKaPJbcXaNKbllaLPblmblnbloaXUaYkbeMaZMaZMblpaJdaTTaJdbkrbgoaJdaJdaJdaJiaQGaRnaMdaKuaMeaMfaJiblqaMhaMhaMiaMjaMkaMlaMmaMnaMoaHTsGRaFbaGzblraOMaONaMpozRaFbaMsaMtaCwaMublsaKRaKRaCwaMvaMwaMxaDYaCwaCwaCwuzBuzBuzBaQkaQlbltaMybluaQjaOXaMzaaaatJaaaaaaatJaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaaaaaaaaaaaaaaaaaaaaaaayUaRNayUayUayUayUayUayUaRNayUaaamJZaBdaMAaKUaMBaMCaMDaMEaMFaweaMGaLbaMHaIkaLdaMIaMJaMLaMKaMLaMMaLeaLeaLeaLeaLeaLeaLeaLiaLdaLeblvaLeaLeaPKaPOaMQaMRaMQaMRaMSaMQaMTaMQaMUaMQaMVaOnaMXaMYaMZmMXthejqfaIPaIPaIPaIPaIPotMthejqfaLAaLBaNcaLDaNeaLFaLGmMXthevtIaIPaNhaIPaIPaIPmMXthejqfaIPaNiaIPaIPaIPaWIaIPaIPaIPblwaJdblxblyaKsblzaPQaWKaQFaJiaJiaJiaJiaYuaNwaJiaJiaJiaJiaHSaNzaHSaHSaHSaNAaNBaNAaHTsGRaFbaFbaFbblAblBaFbaFbaFbaFbaFbaFbaFbaCwaCwaNFaCwaFfaFfaFgaDYaNGaNHaCwbrZaSZaRkazRkOhpVvaMyaQmaQjaOXaMzatJatJatJatJmoyaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRaNMatJatJatJatJauSaAaauSayUaRJayUaNNaNOaNPaNQayUaRJayUayUauSayWaxBaKUaNRaNSaMDaMEaMFaweaNTaLbaxBaPmaPnaPvblCaPwaPwaPwaPxaPyaQCaNVaNZaPwaPwaPwaQEblDaPwblEblFblFblGaSyaQIaOgaOfaOgaOhaOiaOjaOlaOkaQMaRPaWUaOoaOpaIPaOqaOqaOqaOraOqaOqaOqaOqaOsaOqaOqaNbaNaaNgaLEaOtaLCaNdaOqaOqaPPaOqaOqaOqaOqaOqaOqaOqaOqaIPaIPaIPbfQbfQaRfbfQbfQbfQblHaJdblIblJblKblLaJhaLQaLQbeLblMblNaOAaOBaODaWFaOEblOaJiaOFaOGaOHaOIaKmaOHaOJaOKaHTaHUaFbaOLaOLaOMaONaOOaOOaOPaFbaOQaORaOSaCwaFfaFfbpJaFfaFflbTaDYaCwaOWaCwaQnbamipqazRbcjaSWaMyaSXaOZaSYaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweawfaweayUaXfayUayWaxBaxBayXayUaXfayUaPcaPdaPeaxBaKUaPfaPgaKXaPhaKZaweaPiaLbaLOblPblQmgyaPkaPlaPlaPlaPlaPlaPlaQHaQLaPlaPoaPlaPlaPlaPpaPqaPraPqaPsaPtaPuaYMaLeaRObeuaRZbexblRaPzaScaPAaPAaPMaRgaRmaILaILaILaILaILaILaILaILaPCaPDaPEaPFaPEaPEaPEaPGaPEaPHaPEaPIaPCaILaILaILaILaILaILaILaILaPMaTSaUTaJdaJdaJdblSbeNbeNblSaJdaMOblTaRsblUblVblWblVaJiaSBblXblYaNmaNnaPRaRpblZbmaaOHaPSaPTaPTaPTaPTaPUaVtaHTsGRaFbaPVaMpaOMaONaMpaMpaPWaFbaPXaPYaPZaCwaFfrFuaQaaQbaQbaQcaQdaQeaQfaCwqqnbfTbmbbmcbmdaPbaMyaUsaVCbmeaXcaRkaRkaXdaRkbmfaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyKbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaQoaaaaaaaaaaxwaxyaxzayTaQpbkuaQqaPeaxBaxBaQraQqbkuaQpaPeaxBaxBaxBaQsaQtaQuaQvaQwaQxbmgaQyaQzaLObmhbmiaPjaQBaPluQvbpMlqGfNxaPlsswaThaTmnVktRyaUfaUCaPpaQNaQOaQPaPsnbdaPuaPuaQRaPuaPuaPAaPAaQSaQTaPAaPAaPAaQUbjWbbeaILaaaaaaaaaaaaaaaaaaaaauKSaKnaQVaQWaQXaQYaQZaRaaRbaRcaRdaReuKSaaaaaaaaaaaaaaaaaaaaaaILaVNaIPbjXaJdbmjaRjbmkaTUaNpbmlaWHbmmbmnbdaaSaaSaaSabmoaJiaSBaRoaRqaRuaRraRtaStaSEbmaaOHaRvaVsbmpbmpbmqaRxaOHaHTaRyaFbaRzooZbmraONaRAaRAaRBaFbaFbaRCaFbaCwaRDaGNaOTaREaREaOUaOVaCwaCwaCwaYNbmsbmtbbkaZNbnSaMyaRGaRHaMzaMzaMzaMzaMzaMzaRIaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanaaaaaaaaaaaaaaaaweaXgawgaRKaRLaRLaRLaRLaRLaRLaRLaRLaRKaRLaRLazaaYOcfZnRaaVOaVPsMNaVTbmuaWNaXbaXyaPjaPjaPjaQBaPlkxbbpPbpPbsnaPlsswjmfbpQjTSbpfbpfkaraPpaRVaQOaQOaPsnbdaPuaRWaRXaRXaRYaPAaSdaTxaSbaTAaUNaSebbVbjWbbeaILaaaaaaaaaaaaaPCaPCaPCaPCaSgaShctzaSjaSkaSiaSmaSnctzaSlaSvaPCaPCaPCaPCaaaaaaaaaaaaaILbmvbmwbmxaJdbmybmzaKoaKoaKoaKobmAbmBaSfaSqaKoaKoaKobmCaVoaSBaSCaSDaSFaSGaSHaStaSBaSIaUcaSKbmDaZubbdbmEaSNaOHaHTsGRaFbbadaMpaOMaONaRAaRAaMpaSOaSPaMpaSQaCworqaSRaSSaREaREaVAaSUaSVaCwbchbcibmFbmGbckaZObdjbdmbdnbdobmHbetaRkaRkaRkaRkbpIaTaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSauSauSauSayUayUayUayUayUayUayUayUauSauSmJZaAgaTbxIJaTcaTdaTcnGbaTcaTcaTeaTcaTcaPjaQAaTfaTgaPlhaVbfRbfRhaVaPljNLbpfbpfaTouAvpYbaVMaPpaTqaTraTsaPsaQQaPuaTtaTuaTvaTwaPAaUOaTyaSbaTzaUPaSebbVaPBbbeaILaILaTBaPCaPCaPCaTCaTDaTEaTFaTGaTLaTIaTJxHvaTKaTHaTLaTMaTNaTOaTPaTQaPCaPCaPCaTBaILaILbmJaIPbjXaJdaSraKobmKbmLbmLbmMbmNaNqaSsbmMbmLbmLbmObmCaVoaSBaSCbmPaTXaTYaTZaUaaSBaUbaUcaUdbmQbejbelbmRaUgaUhaHTaHUaFbaUihsZaOMaONaUjaMpaMpaUkbmSaUlaUmaCwaUnaUoaUpaREaREaUqaUrlJOaCwbewaQjaQhbmTbckaZPbfVbfWaQhaQibmUaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXmChaTcaUvdOeaUuaUwaUynzpaUwaTcbmWaRTaUAaUBaPlkWDbfRbfRkWDaPlsswirIlAqaUKaULaUMhzoaPpaPpaPpaPpaPsaQQaPuaPuaPuaPuaPuaPAaUQbgfbmXbmYbmZaSebbVaIPbbeaBuaIRaURaUSaZQaPCaUUlTjaUWaUXaUYaUXaUZaVaaVbaVcaVdaVeaVfaVdaVgaSoaViaPCaZRaUSaVkaVlaCTaVNaIPaxxaJdbnaaKobnbbncbndbnebnfbngaSzbnebndbnhbnibmCaVoaSBbnjbnkbnlaVpbnkbnmbnnaJiaVraUdbnobnpbnpbnqaUgaVtaHTaVuaFbaFbaFbeObaONaVvaVwaMpaVxaVybnraVzaCwuHUaSRaSSaREaREaVAaSUaVBaCwbnsaQjaQhbmTbntbnubnvbfWaQhaQibmUaMzaZNaZOaZPaMzcPzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclbhPatJatJatJatJauSauSauSauSayUayUayUayUayUayUayUayUauSauSmJZaAgaTbxIJaTcaTdaTcnGbaTcaTcaTeaTcaTcaPjaQAaTfaTgaPltIrbfRbfRhaVaPljNLbpfbpfaTouAvpYbaVMaPpaTqaTraTsaPsaQQaPuaTtaTuaTvaTwaPAaUOaTyaSbaTzaUPaSebbVaPBbbeaILaILaTBaPCaPCaPCaTCaTDaTEaTFaTGaTLaTIaTJxHvaTKaTHaTLaTMaTNaTOaTPaTQaPCaPCaPCaTBaILaILbmJaIPbjXaJdaSraKobmKbmLbmLbmMbmNaNqaSsbmMbmLbmLbmObmCaVoaSBaSCbmPaTXaTYaTZaUaaSBaUbaUcaUdbmQbejbelbmRaUgaUhaHTaHUaFbaUihsZaOMaONaUjaMpaMpaUkbmSaUlaUmaCwaUnaUoaUpaREaREaUqaUrlJOaCwbewaQjaQhbmTbckaZPbfVbfWaQhaQibmUaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXmChaTcaUvdOeaUuaUwaUynzpaUwaTcbmWaRTaUAaUBaPlkWDbfRbfRvpOaPlsswirIlAqaUKaULaUMhzoaPpaPpaPpaPpaPsaQQaPuaPuaPuaPuaPuaPAaUQbgfbmXbmYbmZaSebbVaIPbbeaBuaIRaURaUSaZQaPCaUUlTjaUWaUXaUYaUXaUZaVaaVbaVcaVdaVeaVfaVdaVgaSoaViaPCaZRaUSaVkaVlaCTaVNaIPaxxaJdbnaaKobnbbncbndbnebnfbngaSzbnebndbnhbnibmCaVoaSBbnjbnkbnlaVpbnkbnmbnnaJiaVraUdbnobnpbnpbnqaUgaVtaHTaVuaFbaFbaFbeObaONaVvaVwaMpaVxaVybnraVzaCwuHUaSRaSSaREaREaVAaSUaVBaCwbnsaQjaQhbmTbntbnubnvbfWaQhaQibmUaMzaZNaZOaZPaMzcPzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaVDayUayUayWaYSbYnaTcaUxaUuaUuaVHaVIaUzaUwaTcaVJaVKaVQaRTaPlbqwbfRbfRaXtaPlsswkarrWjjtZdIzaXuaXvaPlaVUaVVaVWaVXaVYaVZaWaaWbaWcaWdaWdaWdaWdaWdaWdaWdaWdbbVaIPbjXaCVaIPaWeaWfaWgaWhaWiaWjaWkaWlaWmaWnaWoaWpaWqaWraWsaWtaWuaWvaWkaWwaWxaWyaWzaWAaWBaWCaEpaLyaIPbjXblSbnxaKobnybnzbnzbnAbnBbnCaSAbnAbnzbnzbnDbmCbnEbnFbnGbnHbnIbnJbnKbnLaYoaJiaOHaUdaRwaZWaZWaRwaUgaOHaHTaWDbnMbnNaWPaWQaWRaWSaWSaWTaOMaOMaOMaOMbegaREaREaREaREaREaWVaWWaWXaYIaWZbnObnPbnQbnRaZObnSbfWaQhaQibnTaMzaZPaSTbnUaMzbnwaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRMatJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaXebnVaRJbeybnWayXuvSaTcaXiaXjaXkaXkaXlaXmaXnaTcaXoaRTaVLaPlaPlaPlxVWxVWaPlaPlsswkaraPlaPludKvEfbnXaPlaXzaXAaXBaXCaXDaXEaXBaXFaXGaXGaXHaXIaXJaXKaXLaXMaWdbbVaIPbbZaWEaXPaXQaXRaXSuKSaXTaSpaUVaVhaXXaXYaXYaXZaNtaYbaYcaYdaYeaYfaXVaYgaXTuKSaXSaXRaYhaYiaWMbnYaIPbjXblSbmybmzaKoaKoaKoaKoaKoaKoboaaKoaKoaJebobbocaJiaJiaJiaYraYraYraYraJiaJiaJiaYsaYtbodaRwaRwaYvboeaYwaYxaYyaYzbofaYAaYBaYCaOMaOMaYDaOMaOMaOMaOMbegaYEaYFaYFaYFaYFaYFaYGaYHbogaYJaYKaYLbohbckgSabnvbfWaQhaQiboiaMzbnuaZOaZNaMzcPzaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUayUayUayWayXaYPaTcaYRaXkaXkaXkaXkaYTaUuaTcaYUaYVaVLaPliXAhzAaYZaYZlbnspQmidqnBlyOfBlbqxbfAhcSaPlaZhaZicGrhIGcGraZlaZmaZnaWdaZoaZpaZpaZqaZraZsaZtaWdbbYaLzbomaZvaZvaZvaZvaZvaZvaZwaZxaZvaXXaXZaZzaZAaZAbeDaZAaZAaZCaYbaYeaZDaZEaZFaZDaZDaZDaZDaZDaZDbonaIPbjXaJdboobopbgUboqborbosbotboubovbowboxaJdbfubfuboybozboAaZTaZTaZTaZTboBbozboyaZUaRwboCaZWaZWaZXaZYaYsaHTaZZroPbabaFbbacbafbaeaNDaNCbafaUkaNDboDaCwbahoHHbaiaREaREbaiqMSbajaCwbakbalboEbohboFboGboHbfWaQhaQibmUaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXjleaTcaVFaUwboJbapaUwbaqaUwaTcbarbasbataPlfrpbpgbpfboLbpfbpfbpfbpfbpfeZweZwhrcbfMaPlaZhaZibaxbayaZjbazaZmwGPaWdbaAaZpaZpaZGbaBaZpbaDbbxbbVaIPbbZaZvbaFbaGbaHbaIbaJbcebaLbaMbaNbaOaZAaZAbaPbaQbaPaZAaZAbaRbaSbaCbaTbaUbaXbaYbbzbaVboMaZDbnYaIPbjXaJdaJdblSblSaJdaJdaJdblSblSblSaJdboNaJdboOboPboyboQboRboRboRboRboRboRboSboyboTbbgbbgboTboUboVboWboTaHTaZZbaababaFbaFbaFbbbhaFbbbhaFbbbhaFbaFbaCwaCwbbibbibbibbibbibbiaCwaCwbbjaQjboXboYboZbpabpbbpcaQhaQibpdbpGaRkaRkaRkaRkbpIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaayUbmVayWayXjleaTcaVFaUwboJbapaUwbaqaUwaTcbarbasbataPlfrpbpgbpfboLbpfbpfbpfbpflcjeZweZwhrcbfMaPlaZhaZibaxbayaZjbazaZmwGPaWdbaAaZpaZpaZGbaBaZpbaDbbxbbVaIPbbZaZvbaFbaGbaHbaIbaJbcebaLbaMbaNbaOaZAaZAbaPbaQbaPaZAaZAbaRbaSbaCbaTbaUbaXbaYbbzbaVboMaZDbnYaIPbjXaJdaJdblSblSaJdaJdaJdblSblSblSaJdboNaJdboOboPboyboQboRboRboRboRboRboRboSboyboTbbgbbgboTboUboVboWboTaHTaZZbaababaFbaFbaFbbbhaFbbbhaFbbbhaFbaFbaCwaCwbbibbibbibbibbibbiaCwaCwbbjaQjboXboYboZbpabpbbpcaQhaQibpdbpGaRkaRkaRkaRkbpIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhraGRauSauSayUayUayUayUauSayUayUayUayUayUayUayUayUauSauSmJZayWjuXaweaTcaTdaTcaTcaTcaTcaTeaTcaTcbbmbbnbboaPlsyvoDnlAqhfQxWoxWoxWonVjqMfaUEhPxxenkBcaPlbbtaZinkZbbubbvbbwaZmwGPbphaZsbbybaZbbabbAaZpbpibbCbbVaIPbbZbbDbbEbaJbbFbbGbbGbbHbbIbbJbaNbbKaZAaZAbaPbbLbaPaZAaZAbbMbaSbbBcnlcmeaXWbbSaYabaWbbOaZDbnYbbUaIPaLPbembembembecbpkbehbembembembeibembembembembeobembembembembembembembembplbembembembembembembembcabepbccbcdbaabesbembplbembembembembembembekbeobfObembembembembembembbWbpmbpcaQjbpnbpoaYKbfHaYKbppaYLaQiaOXaMzaMzaMzaMzaMzaRIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJbhrbanauScsHndAbpqayUawiawhawiawiawiawiawiawiawiawiawhawibprbpsaxDbcmbcnbcobcpbcpbcpbcqbcrbcsaPjbctbcubcvaPlaPlduzaPluYcaPlrzmaPlaPlaPlkhQlQXbdybptaPlaZhaZinkZbcAbcBbcCbcDbcEbcFbcGbcGbcGbcHbcIaZsbcJaWdaQUaNhbbZbcKbcLbaJbcMbcNbcObcPbcQbcRbaNbcSbaPaZAbcTbcUbcTaZAbaPaZCbaSbbPcnlcmeaXWbdVaYabaWbpuaZDbpvaIPaIPaIPfmHgxypUcbaabpwbpxbaabaabaabaabcYbaafmHgxypUcbaabcZaYzaYzaYzbvTaYzaYzbpyaYzbpzfmHgxypUcbaabdbbdcbddbdebdfbdfbdfbdgbdibdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdfbdhbdibpAbdkbdkbdlbpBbpCaXaaXabpDbpEbpFbpdbpGaRkaRkbpHaRkbpIaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaayUjzlaKXaKXbpKbdqaxAaXbaxAazaaxBaxBbdqaxAaXbaxAazaaxBaxBaxBbdrbdsbdrbdrbdrbdrbdtbduaPjaPjaPjbdvaVLaPlaUDbfRaTiaPlaUDbfRbpNaPlaPlaPlaPlbdAbdBaPlaZhaZibdCbdDbdEbdFaZmbdzaWdaWdaWdaWdaWdaWdaWdbdGaWdbfPaIPbbZbcKbdIbaJbcMbdJbdKbcPbcQaBrbaNbdLbdMaZAbdNbdObdPaZAbdQbdRbaSaBtbbTbcVbdWbdXbpRbaWbdSaZDbnYbeaaIPbedbgBbgBbgBbpSbpTbpUbgBbgBbgBbpVbefbeebuybgDbgBbgBbgBbgBbgBbpXbqbgwAbgBbpZbqabqbbqcbgBbgDbqdbqebenbqfbqgbeqbeqbeqbaabpZbgDbqhbgBbgBbaafmHgxypUcbaaroPbaafmHgxypUcbaabbWbqibqjbevbqkbfUbqlbqlbqlbqlbqmbqnbqoaMzaMzaMzaMzaMzaMzaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJaaebanauShUbaKXbqpayUbqqayUbqrayUayWaxBaxBayXayUbqsayUayYbezbeAbeAbdrbeBbeCbqtbeEbeFbdtbeGbeHbeIbeIbeJbeKaPlbfRbfRbfRaPlbfRbfRbfRaPlbqzbqAbeObePbeQbeObeRaZibeSbeTaZjbqBaZmaPjbeVbeWbeXbeXbeXbeXbeYbeZbeVbqCaIPbbZaZvbaJbfbbfcbfdbfebffbcQbfgbfhaXYbfibfjbfkbfkbfkbflbfmaYdbfnaCRbdUbdYbqDbfobpRbaWbfpaZDbnYaIPbjXbfvbfvbfvbfvbfvbfvbfvbfwbfxbfxbFWbqEbqFbfwberberberberberbfBbfBbIzbfBbfBbxwbxwbfCbrAbsScPPbsSbqHbfGbqIbqJbfJbfJbfJbfKbfLbfLbfLbfLbfLbqKbqLbqLbqLbqMbqLbqNbqObqLbqLbqPbfSbfSbfSbfSbqQbmtbqRbqSbqSbqRydtbqTbqTaMzatJatJatJatJmoyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRFatJaaebanauShUbaKXbqpayUbqqayUbqrayUayWaxBaxBayXayUbqsayUayYbezbeAbeAbdrbeBbeCbqtbeEbeFbdtbeGbeHbeIbeIbeJbeKaPlfKXbfRbfRaPlfKXbfRbfRaPlbqzbqAbeObePbeQbeObeRaZibeSbeTaZjbqBaZmaPjbeVbeWbeXbeXbeXbeXbeYbeZbeVbqCaIPbbZaZvbaJbfbbfcbfdbfebffbcQbfgbfhaXYbfibfjbfkbfkbfkbflbfmaYdbfnaCRbdUbdYbqDbfobpRbaWbfpaZDbnYaIPbjXbfvbfvbfvbfvbfvbfvbfvbfwbfxbfxbFWbqEbqFbfwberberberberberbfBbfBbIzbfBbfBbxwbxwbfCbrAbsScPPbsSbqHbfGbqIbqJbfJbfJbfJbfKbfLbfLbfLbfLbfLbqKbqLbqLbqLbqMbqLbqNbqObqLbqLbqPbfSbfSbfSbfSbqQbmtbqRbqSbqSbqRydtbqTbqTaMzatJatJatJatJmoyaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabhrbclauSauSayUayUbqUayUaAbaRJayUaAcaAdbfXbfYayUaRJaAbayUauSaAaauSbdrbfZbgabgabgabgbbgcbgdbgebcnbqVbqWbggaPlbpObgjwixaPlbpObgjwixaPlbgkbglqGPbgnbgmqGPbrbbgpbgqaZkbgrbgsaZmbeUbgtbgubeVbgvbgwbgxbgyaPNbgAbrcbgCbrdaZvbgEaZvbgFbgGbgHbgIaXNaXObrebfrbbQbdTbfqbfsaCUaFAaFBbrfbrgbftaZBbrhbricnmbrjbaWbgNaZDbnYaIPbrkbfvbrlbrmbrnbrobrpbfvbrqbrrbrrbrubrsbrtoosbfDbrvbrwbrxberbfEbfFbrybpWbfBbsNbrBbrCbrAbrDbrEmBkbqHbrFbrGbrHbrIbrJbrKbrLbrMbrNbrObrPbfLbrQbrRbrQbfLbrSbrTbrSbfSkUVbrVbrUbfSbrWbrXbfSbrYbmtbrZbsabsbaSZaMyaMzaMzaMzaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadayUbscayUayUayUayUayUayUbsdayUaadaadaadaaabdrbsebdrbsfbgabsgbshbdraRTbsiaPjbsjbskbsmbsmbsmbsmbsmbsmbsmbsmbsmbsobspbsqbsqbsqbsqbsqaZmaZmbsraZiaZmaZmbeVbssbstbsubsvbswbsxjdjbsybszbqCaIPbsAaZvbsBaZvaZvaZvaZvbgIbcQbsCaZvbsDaAxaAxaAyaHcaAzaAxaAxbsDaZDbgObbNbgPbgQbaWbpRbaWbsEaZDbnYaIPbjXbfvbsFbsGbsHbsHbsIbsJbrtbsKbrtbrtbrsbrtbrtbfDuHibxxbsMberbsQbsObsPbPBwytiJKtmtvQxbrAbsSgFObxjbqHbsUbqIbsVbsWbsXbsYbsZbtabtbbtcbtdbtebtfbtgbthbfLbtibtjbtkbfSbgRbgSbgRbtlbgRbgRbfSqLmbmtaMyaMyaMyaMyaMyaaaatJaaeaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabtmaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaabdrbtnbtobtpbtqbtqbtrbtsbttbtuaPjbtvbtwbtxbtxbtxbtybtybtybtybtybtybtzbtAbsqbtBbtCbtDbtEbtFbtGbtHbtIbsqbtJbtKbtLbeVbeVbtMbtNbtObtPbtQbtRbtSbtTbbZbtUbtVbtWbtXbtYaZvbgJbtZaZvaZvaadaAxbuaaBsbubbucaBvaAxaadaZDaZDbudbpjbuebaWbufbugbuhaZDbnYaIPbjXbfvbuibsGbujbukbulbumbrtbunbuobupbuqburbusbfDhjpvKwhwYberbsQbuvbuwbuxbfBbrzbpYbsRbsTbqHbqHbqHbqHbuAbqIbuBbuCbuDbuEbuBbtabuFbuGbtcbtcbtcbtcbuHbfLbuIbuJbuKbfSbuLbgRbgRbuMbuNbuObfSqLmbuPbuQbuRbuSbuTaaeaaeaaeaaeatJatJatJatJiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG @@ -7938,7 +7953,7 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJbdrbwubtobwvbuWbwwbwxbdraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaabwybwzbwAbwBbwCbwDbvdbvdbvdbwEbvdbvdbwFbwGbwHbtPbwIbwJbtPbwKbwLbwMbswbwNbeVbwObwPbbfbtUbwQbwRbwRbwRbwRbwSbwTbwRaadaaaaAxaEnaHbaEobwUaEqaAxaaaaadaZDbwVbwWbwXbwYbwZaZDbxaaZDbxbaIPbxcbfvbxdbxebxfbxgbxhbfvbxibunbvLbvQbxkbrtbxlberoaMbxmbxnberbxobxpbxqbxrbxsbxybxybxubxybxybxybxyaDybxzbqIbxAbxBbxCbxDbxEbxFbxGbxHbxIbxJbxKbxLaRhbfLbrSbxMbxNbfSbxObxPbxQbxRbgRbxSbfSbxTbxUbxVbwtbxWbwtatJatJaaabhraaaaaaatJaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJbdrbxXbtobtobtobdrbdrbdraaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaabwybxYbxZbyabybcpacpacpacpabybbybbybbycbsqbydbyebyfbygbyhbyibeVbyjbswbykbeVbqCbylbjXbtUbtUbwRbymbynbyobcxbypbwRaaaaaaaAxaFybyqbyrbysaFCaAxaaaaaaaZDbytbpjbqDaZDbyuaZDbyvaZDbxbaIPbywbfvbyxbxebyybsHbyzbfvbqGamDbyAbyBbyCbrtbyDberbfDbxvbxtberbfBbyFbfBbyHbyIbyJbyJbyJbyJbyJbyJbyJbyJbyLbyMbfIbfIbfIbfIbfIbyNbyObtcbyPbxLbxLbyQbyRbyNbySbyTbyUbyVbyWbyXbyYbyZbzabzbbfSbzcbfSbzdbzebzebzebzebzebzebzfatJatJatJatJiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJatJaaaatJaaaaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaabzgbwybwybzhbxZbzibvdbzjdjRdjRbzjbvdbvdbvdbzkbsqbzlbzmbznbzobzpbeVbeVbzqaZJbeVbeVbzrbzsbztbzubzvbzwbzxbzybzzbzAbzBbwRbzCbwRaAxaAxbzDaHcbzEaAxaAxaaaaadaZDbzFbzGbzHaZDbzIaZDbzJaZDbxbaIPbywbfvbzKbxebzLbzMbzNbfvbzObunbzPbyBbuubzQbqGbqGbzRbzSbzTbzUbzVbzWbzXbzYrFabAabAbbAcbAdbAebAfbAgbAhbuAbAibAjbAkbAlbAmbAnbAobApbAqbArbAsbAtbxLbAubAvbAwbAxaSxbyVbAybAzbAAbABbgRbACbADbAEbAFbAGbAHjkMjkMjkMbAHbAIbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaabAKbALbAKbAMbANbAObAPbAQbvdbvdbvdbvdbARbvdbASbsqbATbAUbAVbAWbAXbAYbtPbBabBbbBcbBdbBebylbjXasFbBfbBgbBhbBibBjbzAbBkbwRbBlbBmaTBbBnbBovzbbBpbBqaTBaaaaaabBrbBsbBtbBrbBrbBrbBrbBubBrbBvaLzbBwbfvbfvbBxbBybBzbfvbfvbrtbBAbBBbjnbBDbBCbBEbjnbBFbyEbrtbrtbrtbyEbrtbrsbzZbAabBGbBHbBIbBJbBKbBLbAhbBMbBNbBObBPbBPbBPbBQbBRbBSbBTbBUbBVbBWbBXbBYbBZbCabuJbCbbyVbyVbCcbCdbCebCcbyVbCfbCfbCfbCfbCfbCfbCfbCfbCfbCgbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaabAKbALbAKbAMbANbAObAPbAQxtbxtbxtbbvdbARbvdbASbsqbATbAUbAVbAWbAXbAYbtPbBabBbbBcbBdbBebylbjXasFbBfbBgbBhbBibBjbzAbBkbwRbBlbBmaTBbBnbBovzbbBpbBqaTBaaaaaabBrbBsbBtbBrbBrbBrbBrbBubBrbBvaLzbBwbfvbfvbBxbBybBzbfvbfvbrtbBAbBBbjnbBDbBCbBEbjnbBFbyEbrtbrtbrtbyEbrtbrsbzZbAabBGbBHbBIbBJbBKbBLbAhbBMbBNbBObBPbBPbBPbBQbBRbBSbBTbBUbBVbBWbBXbBYbBZbCabuJbCbbyVbyVbCcbCdbCebCcbyVbCfbCfbCfbCfbCfbCfbCfbCfbCfbCgbAJaaaaaaatJaaaiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJatJatJbhratJbhrbhratJbhraaaaaaaaaaaaaaaaaaaaabChbCibCjbCkbvdbzibvdbzjdjRbClbzjbvdbvdbCmbsqbsqbeVbCobCpbCqbCrbCrbswbCtbCubCvbCwbBebylbjXasJbCxbCybCzbCAbCAbCBbCCbCDbCEbCFaTBbCGbCHbCIbCJbCKaTBaadaadbBrbCLbCMbCNbCObCPbCQbCRbBrbnYaIPbCSbCTbCUbCVbCWbCXbCYbCZbDabDbbDcbDdbDdbDdbDdbDdbDebDfbDdbDdbDdbDgbusbDhbDibAabDjbDkbDlbDlbDmbDnbAhiLkbAibDobDpbDqbDrbDsbDtbDubtcbDvbtcbtcbtcbDwbyNbDxbDybDzbDAbDBbDCbDDbDEbDFbDGbDHbDIbDJbDKbDLbDKbDMbDNbDObDPbAJatJatJatJatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaabzgbwybwybDQbvdbzibvddgbdgbdgbdgbbvdbvdbDRbDSbDTbeVbDUbDVbDWbDXbDXbDXbDYbDZbCvbCwbBebylbjXbEabBfbwRbEbbEcbEdbEebEfbEgbEhbEiaTBbEjbCHbEkbElbEmaTBaaaaaabBrbEnbEobEpbEqbErbErbEsbEtbEubEvbEwbExbEybEzbEAbEBbEBbECbEDbEEbEFbEGbEHbEIbEJbEKbELbEMbHqbrtbENbEObEObEPbAabAabAabEQbERbESbBKbDnbAhbETbAibfLbyNbyNbyNbyNbyNbyNbyNbyNbyNbEUbEVbEUbyNbEWbEXbEYbEZbEZbEZbFabFbbFcbFdbFebFfbFgbFhbFibFhbFjbFkbFlbFmbFnbwtbFobFobwtaadiWgiWgiWgaadiWgiWgiWgaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaabFpbChbCibCjbxYbFqbvebFrbwDbvdbFqbvdbvdbvdbDRbFsbFtbeVbFubFvbFwbswbswbswbFxbswbCvbCwbBebylbjXbFybFzbwRbFAbFBbFCbFDbypbwRbFEbFFaTBbFGbFHaMZbjWbFIaTBaaaaaabBrbFJbFKbFLbFMbFNbFObFPbBrbFQaIPbFRbqGbqGbFTbFUbFVbqGbqGbFWbfzbfzbFWbqGbFWbqGbFWbqGbFWbqGbfzbfzbEObFZbDlbGabGbbAabEQbGcbGdbGebGfbAhbGgbGhbGibGjbGkbEZbEZbGlbEZbEZbGmbGnbGobGpbGqbEZbGrbGsbGtbGubGubGubGvbGvbGvbGvbGwbGxbGybGzbGAbGzbGBbGCbCfriRbGEbGFbGGbGHbwtaadaaaaaaaaaatJaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG @@ -7962,20 +7977,20 @@ byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGby byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiWgaaabhraaaaaaaaaaaabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabObbObccGbTLccKbTLbObbTLbObbTLcdVcdWbTLbTLbTLcdXbObbXSbXSbObaaabXSlrDbShaaacdYcdZcbuceacbscebcdYceccedceecefcegcehceicejbQQbZgcekcelcembZucenceocepceqcercescetceuceucevcewcbRcexceycezceAceBceCceDcbYceEccbccbcaBaadcccwHdbZvceFceGaYmbZwbZwbZwceHbZwbZwceIceIceJceIceIbZvbLBbODceKceLceKceMceNbYzceOcePceQceRbPWbPWbPWbVYceScdHceTjaWcdJcgavQHwioceXceYcdPceZcfacfbcfccfdbQocfebXEccDbXEatJatJatJatJbXEaPaaPaaPaaPaevKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiWgaaabhraaaaaaaaaaaabhraadaaeaaeaaeaaeaaeatJaadaadaadaadaadbXScffbTLbTLgwdcfgbObcfhbObcfibObcdWbTLbTLcfjbXRbObaaaaadaaaaaabXSlrDbWFbObbZacfkcflcfmcflcfnbZacfocfpbZabZabZabZacfqcfrbQQcfscftcfucfvbZubZucfwbYdcfxcfycfzcfAbZubZubZncfBcfCcfDcfCcfDcfEcfDcfFaadcaBcaBcaBcaBcaBaadbOhwHdbZvgAicfGcfHcfIcfJcfKcfLcfMcfNcaKcaKcaKcaKcfObZvwHdbODcfPcfQcfRcfScfTbYzcfUbYzcfVcfWbPWbPWcfXbVYcfYcdHcdHsIocdJuRXceWjMfjMfaprcdPcgbcgccgdcgecgfbQocggbXEccDbXEbZYbZYbZYbZYbXEbcgnsmoFOaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeDWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiWgatJbhratJcghbhratJbhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabObbObccGbTLbTLbTLcgibTLcdVcgjbObbObbObcgkbObbObbObbXSbXSbXScglcgmcgncgoccMbZabZabZabZabZabZabZabZabZabZacfjcgpbObcgqcgrcgscgtcgubYicgvcepcgwcepbYdcgxbZubZucfAcgycazcazcgzcgAcgBcbScgCcgDcgEcjOcbXcbYcgFcgGcgGcaBaadbOhwHdcgHcgIcgIcgIcgJcgKcaKcgLcfHcgMcfHcfHcfHcfHcgNbZvwHdbODceKcgOceKcgPcgQbYzcfUbYzcgRcgScgTcgTcgUbVYcgVcgWcdHgdLccyccyuNYccyccyccycdPcdQcgZchacgbchbbQorWbbXExRvsVucEzcEzcEzcEzycpmpbtzPmQMaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaoBaoBaaeaadaadchcaoBbObbObbObbObbObbObbObbObbObbObbTLbTLbTLbTLbTLchdchelkWlkWchgchhchichjchjchjuXcuXcuXcuXcuXcuXcuXcchkchlchlchmbObchnchocgscgtchpchqchrcazcazchschtcazcazchuchvchwbZuchxchychzchAbZuchBchCchDcdtaadcduchEchFchGcaBaadcccchHbXcbXcbXckuobZvchIcaKchJchKchLchMchNchNchNchObZvwHdbODbVYbVYbVYbVYbXxbYzcfUchPchQbVYbVYbVYbVYbVYchRchScdHcdHcdHcdHceUchUboIchVchWbCfbCfbCfbCfbCfbCfcggbXEccDbXEbZYbZYbZYbZYbXEbblmpbmSVaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaatJaaaatJaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaoBaoBaaeaadaadchcaoBbObbObbObbObbObbObbObbObbObbObbTLbTLbTLbTLbTLchdchelkWlkWchgchhchichjchjchjuXcuXcuXcuXcuXcuXcuXcchkchlchlchmbObchnchocgscgtchpchqchrcazcazchschtcazcazchuchvchwbZuchxchychzchAbZuchBchCchDcdtaadcduchEchFchGcaBaadcccchHbXcbXcbXckuobZvchIcaKchJchKchLchMchNchNchNchObZvwHdbODbVYbVYbVYbVYbXxbYzcfUchPchQbVYbVYbVYbVYbVYchRchScdHcdHcdHcdHceUchUboIchVchWbCfbCfbCfbCfbCfbCfcggbXEccDbXEbZYbZYbZYbZYbXEbbljttmSVaPabhraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaatJaaaaaaaaaaaaaaaaaachXchYchYchYchYchZciaciacibciccidciecifcigcihciibObcijbObbObbObbObbObcikbObbObbWFbXTcilcilcilcilcilcilcilcilcimcimcimcimcimbXRcinbObchnchocgsciocipciqcircisceucitciucivceuciwcixciycizciAciBciCciDbZuchBciEciFceCceDcbYciGcgGcgGcaBaadcccnlTbOhbOhbOhbLBbZvciIcaKcaKciJciKciLcaGchNcaGciMbZvwHdbODciNcgTcgTciOciPbYzciQcePciRciSbPWbPWbPWbVYciTciUciVcdHciWcdHcdHcdHciXciYciZcjacjbcjccjdcjecjfrWbbXEccDbXEaadaadatJatJbXEaPaaPaaPaaPaevKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaadaaeaoBaadaoBaoBbXSbXSbXSbTLcjgcjhcjicjjcjkbObbTLbObcjlcjmcjlcjncjogOkcjpbWFxkXcilcjqcjrcjscjtcjucjvcjqcjwcjxcjycjzcimcimcinbObcjAchocgscjBcjCcjDcjDcjEcjFcjFcjFcjFbYdcjGcjHcjIcjIcjIcjJbZuchzcjKcjLcjMcjNcjOcjPcaBcaBcaBcaBcaBaadcccnlTcjQcjRbLAwHdcaCcjScjTcjUcjVcjWcjXcjYchNcjYcjZbZvwHdbODckabPWbPWckbckcbYzcfUbYzcfVckdbPWckecfXbVYckfckgckhckickjckkcklcklckmcknckockpckqckrckscktcjfrWbbXEccDbXEbXEbXEaadaadaadaadaadaadatJatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaadaaeaaeaaeaaeaaeckubTLckvbTLckwckxcjhckybTLckzbTLbObcjlckAcjlckBckCcjlckDbWFxkXcilcjqckEckFckGckHckIcjqckJckKckLggkckNcimcinbObchnchocgsbYdckObYdckPckQcjFckRckSckTbYdckUcfAckVcjIckWciDckXckYckZclacgDclbcjOclccbYcldcleclfcaBaadbOhnlTbOhclgclhwHdbZvclicljclkcllclmcljclnchNclnclocckwHdbODbPWbPWbPWclpclqcePclrbYzcgRclscgTcgTcgUbODcltcluclvclwcltcltclxclyclzclAclBclCclDclEcjfclFcjfrWbbXEclGbXEclHbXEatJcsjaadaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaoBaaaaoBaoBaoBaadaadbXSbXSbXSclIclJclKclLclMccHbObbObclNcjlclOclPcnRcnRclRclRbWFxkXcilclSclTclUckGclVclSclSckJclWclXclYclZcimcinbObchnchoaYncjFcmbcmccmccmdcjFcmfcmgcmhbYdbZucfAcmicmjckWcmkckXckYcmlcmmcgDcmncmocmpcmqcmrcmscmtcaBaadbOhnlTbOhbUcbUcbLBbZvbZwcmucmvbZwcmwbZwbZwbZwbZwbZwbZvwHdbODbVYbVYbVYbVYchQcmxcfUcmychQbVYbVYbVYbVYbODcmzcmAcmzcmBcmzcltclxclycmCcmDcjfcmEcmFcmEcjfcmGcjfrWbbXEcmHcmIcblbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaoBaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadbXScmJcmKcmKcmLcjkbXRbObcmMcmNcjlcmOclPcnRcnRmUPcmObShxkXcilclSclScmScmTcmUcmVcmWcmXcmYcmZcnacnbcimcinbObcnccndcnecjFcnfcngcnhcnicnjcnjcnjcnjcbOcbQcfAckVcjIckWcnpckXcmkcnqchBcnrcnsceCcntcnucnvcleclecaBaadcccciHcnwbOhcnxbLBcnycgIcgIcnzbZwcnAcnBcnCbOhcnDcnEbOCwHdbODciNcgTcgTcnFciPbYzciQcePcnGcnHbPWbPWbPWbODcnIcmzcmzcmzcmzcltcnJcnJcnKcmDcjfcnLcnLcnLcnLcnLcjfcggbXEcnMcbmcnNbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaadaadaadbXScmJcmKcmKcmLcjkbXRbObcmMcmNcjlcmOclPcnRcnRmUPpmpbShxkXcilclSclScmScmTcmUcmVcmWcmXcmYcmZcnacnbcimcinbObcnccndcnecjFcnfcngcnhcnicnjcnjcnjcnjcbOcbQcfAckVcjIckWcnpckXcmkcnqchBcnrcnsceCcntcnucnvcleclecaBaadcccciHcnwbOhcnxbLBcnycgIcgIcnzbZwcnAcnBcnCbOhcnDcnEbOCwHdbODciNcgTcgTcnFciPbYzciQcePcnGcnHbPWbPWbPWbODcnIcmzcmzcmzcmzcltcnJcnJcnKcmDcjfcnLcnLcnLcnLcnLcjfcggbXEcnMcbmcnNbZYatJaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaaQaaQaaQaaQaaQaaQaaYaaQaaQaaQaaQaaQaaaaaabObbObbObbObbObbObcnObObbObbObbObcnPcnQcjlcmOclPcnRcnRcmOcmRbShbXTcilcnScnTcnUcnVcjqcmSapccnWaWYcnXcnYcnZcimcoacobcoccodcgscjFcoecnkcogcohcoicojcokcolbYdbZuconcjIcjIcjIcoobZucopcoqchBchCbZucdtcorcoscaBcaBcaBcaBaadccccotcoubOhcovcowcoxbXccoycozbOhcoAcoBcoCbOhcoDwEVbYwcoEbODckackebPWcoFckcbYzcfUbYzcfVcoGbPWbPWcfXbODcoHcmzcoIcoJcoKcoLcoMcoNcoOcmDcjfcnLcoPcoQcnLcnLcjfrWbbXEcoScoTccDbZYatJaaaatJaaaaaaaaahAVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaadaaaaadaaaacfaaaaadaaaaadaaaaaQaadaadbObcoUcoVbTLcoWbTLbTLbTLbTLbXRbObcoXcoYcoZkJiclPcnRcnRjXNjXNbShxkXcilcpccpdcmUcmUcmUcpecpfcpgcphcpicpjcpkcimbObbObcplcpmcpncjFcjFcpobnZcohcprcprcprcprbYdcnncnocptcpucpvcpwcpxcpycpzclacgDcpAcjOclccnucpBcpCcpCcaBaadcccbLAnlTbOhbOhcpDbKtbOhcpEwKnbOhbOhcpGbOhbOhwKncpHbSXcpIbODbPWbPWbPWcpJcpKcePclrbYzcgRcpLcgTcgTcgUbODcmzcmzcpMcmzcmzcltcnJcnJcpNcpOcjfcnLcnLcpPcnLcnLcjfrWbbXEbXEbXEccDbXEaadaaaatJaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaacpQcpRcpSaaacpQcpRcpSaaacpQcpRcpSaaaaaQaaaaaabObcpTbTLcpUbObbObcpVbObbObbObbObckAcpWckAckAcjlcjlcjlcjlcjlbShbXTcilclScpXcpYcjqcpZclSclSckJcqackMcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcqmcqntDkcqpcqqcqrbYdcqtcqucqvceucqwcqxcgycqycgCcexchCcqzcdtcorcqAcqBcqCcqDcaBaadbOhbOhnlTcqEcqFcpDcqGbOhcpEcqHwEVcqIcqJcqKwEVcqLcqMbXGcqNbODbVYbVYbVYbVYchQcqOcfUcqPchQbVYbVYbVYbVYbODcltcltcltcltcltcltcqQcqQcqRcqScjfcjfcjfcjfcjfcjfcjfrWbbXEcqTgWmccDbXEaadaadlHkaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObcqWbTLbTLbObcfibTLcqYccNcgjbObcqZcracrbckAclQcjlcjlclQclQbWFxkXcilcjqcrdcrecjqcrfcrgcjqckJcrhcricrjcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvbFXcrxbnZcnkbYdcrzbZucpscgycrAcrBcrCcrDcrEbZtcrFcrGceCcntcnucrHcpCcpCcaBaadbOhbLAcrIcrJcrKcrLbYmbOhcrMcrNcrOcqMbOCcqMcpHcrPcrQbXGdmFbODciNcgTcgTcrSciPbYzcrTcePcrUcrVbPWbPWbPWbODcrWbZWcrXcrYcrYcltcrZcrZcqRcmDcltcnMcsacoScsbcscbXErWbbXEcsbcsbccDbXEbXEbXEaaeaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObcqWbTLbTLbObcfibTLcqYccNcgjbObcqZcracrbckAaMqcjlcjlclQclQbWFxkXcilcjqcrdcrecjqcrfcrgcjqckJcrhcricrjcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvbFXcrxbnZcnkbYdcrzbZucpscgycrAcrBcrCcrDcrEbZtcrFcrGceCcntcnucrHcpCcpCcaBaadbOhbLAcrIcrJcrKcrLbYmbOhcrMcrNcrOcqMbOCcqMcpHcrPcrQbXGdmFbODciNcgTcgTcrSciPbYzcrTcePcrUcrVbPWbPWbPWbODcrWbZWcrXcrYcrYcltcrZcrZcqRcmDcltcnMcsacoScsbcscbXErWbbXEcsbcsbccDbXEbXEbXEaaeaaaaaaaaaatJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaacpQcqVcpSaadcpQcqVcpSaadcpQcqVcpSaaaaadaadaadbObaVjcqXcsdbObcselkWcsfcsgcfjbObcshneLcsickAcrccjlckBrCTcskbWFxkXcilcjqcslcsmcsncsocspcjqcsqcsrcsscstcsucimcsvcswcsxcsycszcsAcsBcsCcsDcpqcsEcohcsGixkcsIcsJbZucpscsKcsLbZubZucsKcsKcsKchCcsMcsNcorcoscaBcaBcaBcaBaadbOhcovcsOcsPcsQcsRcsSbOhbOhcsTcsUcsVbOCcsWcsXbOhbOhbXGdmFbODckabPWbPWcsYckcbYzcfUbYzcfVcsZbPWbPWcfXbODcsbctactbctcctdcltctectecqRcmDcltctfctgcthctictjctkctlcmIcmIcmIctmctnctoctpaaeaaeaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObctqctrctsbObcttctubObctvbObbObctwctxctyckAcpbcjlcjlcpbcpbbWFxkXcilcilcilcilcilcilcilcilcimcimcimcimcimcimbObctAbObbObctBctBctBctCctDctEctBctFctGctHbYdbZucdpctIcsKcpwcesbZucaychwcsKchCcsKbYdctJctKcjPaadaadaadaadctLctMctNctOctPctQctQctQctRctSctTcsVctUcsVcsVbOhctVbXGcrRbODbPWbPWbSZctWctXcePctYbYzcgRctZcgTcgTcgUbODbXEcuacubbXEbXEcltcltcltcuccudcltcuecsbcufccDcugbXEcoRbXEbXEcuhbXEbXEbXEbXEaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadcpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaadaadaaaaaabObctqctrctsbObcttctubObctvbObbObctwctxctyckAdlhcjlcjlcpbcpbbWFxkXcilcilcilcilcilcilcilcilcimcimcimcimcimcimbObctAbObbObctBctBctBctCctDctEctBctFctGctHbYdbZucdpctIcsKcpwcesbZucaychwcsKchCcsKbYdctJctKcjPaadaadaadaadctLctMctNctOctPctQctQctQctRctSctTcsVctUcsVcsVbOhctVbXGcrRbODbPWbPWbSZctWctXcePctYbYzcgRctZcgTcgTcgUbODbXEcuacubbXEbXEcltcltcltcuccudcltcuecsbcufccDcugbXEcoRbXEbXEcuhbXEbXEbXEbXEaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaadaaacpQcqVcpSaaacpQcqVcpSaaacpQcqVcpSaaaaadaaaaaacuicujcujcujcujbObbObcukculbObbObbObbObbObbObbXSbXSbXSbXSbObcumcuncgmcuocupcuqcuqcuqcuqcuqcuqcuqcuqcuqcuqcuqcuqcurbTLcttctBcuscutcuucuvcuwctBcuxcuycuzbYdcuAcuBcezcuCcuDcuEcuFcuCcuFcuCcuGcsKbYdcuHcuIcuJcuKcuLcuMctMcuNcuOcuPcuQcuRcuScuTctQcuUbLAcuVcuWcuXcuYcuZbXobXocvacvbbODbODbODbODbODbODbODcvcbODbODbODbODbODbODbODcvdcveqFccvfcvgctkcvhcvicvjcvkbXEbXEbXEbXEcvlbXEbXEcvmbXEcvncvocsbbXEaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG -byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaaaaaacvpaaaaaaaaacvpaaaaaaaaacvpaaaaaaaadcuicuicuicvqcvrcvscvtcvubTLcvvcvwcvxchfchflkWchfchflkWlkWlkWlkWlkWlkWcvychlcvzcvAcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLctBctBcvBcvCcvDcvEcvFcvGcvHcvIbYdcuAcvJcvKcvLcvMcvNcvOcvPbZucvQcvRcvScvTcvUcvVcvWcvXcvYcvZcwacwbcwccwdcwecwfcwgcwhctQbLAbLAcsVcsVbKtcsVcwibLAbLAbXGcwjbZYaaaaaaaaaaaaaaabZYcwkbZYaaaaaaaaaaaaaaabZYcwlcwmcwncwocwpcwqcwrcwrcwscwtcwucwvcwwcwxcwycwzcwAcwBbXEcqUcsbcwCbXEaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG +byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaaaaaacvpaaaaaaaaacvpaaaaaaaaacvpaaaaaaaadcuicuicuicvqcvrcvscvtcvubTLcvvcvwcvxchfchflkWchfchflkWlkWlkWlkWlkWlkWcvychlcvzcvAcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLcyLctBctBcvBcvCcvDcvEcvFcvGdyrcvIbYdcuAcvJcvKcvLcvMcvNcvOcvPbZucvQcvRcvScvTcvUcvVcvWcvXcvYcvZcwacwbcwccwdcwecwfcwgcwhctQbLAbLAcsVcsVbKtcsVcwibLAbLAbXGcwjbZYaaaaaaaaaaaaaaabZYcwkbZYaaaaaaaaaaaaaaabZYcwlcwmcwncwocwpcwqcwrcwrcwscwtcwucwvcwwcwxcwycwzcwAcwBbXEcqUcsbcwCbXEaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaadcwDcwEcwEcwFcwGcwGcwGcwGcwGcwGcwGcwGcwGcwGcwGcwHcwIcwJcwKcwLcwMcwNcwOlkWlkWcwPccNbObbXSbXSbXSbXSbXSbXSbXSbXSbXSbObbObcwQcwRcwScwTcyLcwUcwUcwVcyLcyLcwWcwXcwYcwZcxacyLcxbcxccxdctBcxecxfcxgcxhcxicxjcxkcxlcxmbYdbYdcxnbZncxocxpcxqbZncxobZncdtbZncxrbYdcxscxscxtcxucxvcxwctQcxxcxycxzcxAcxBcxCcxDctQcxEbLAcqMcqMcxFcsVcqMbLAcxGbXGcwjbZYaaaaaaaaaaaaaaabZYcwkbZYaaaaaaaaaaaaaaabZYjUzbZUbXEcxHcnNbXEbXEbZYbZYbXEbXEcxIccDcxJcwncxKcxLcxMbXEbXEbXEbXEbXEaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaaaadaaaaaaaaacxNaaaaaaaaacxNaaaaaaaaacxNaaaaaaaadcuicuicuicxOcxPcxQcujbTLbTLccHbTLbObaaaaaaaadaaaaaaaadaaaaaaaadaaabObcxRbObcxScxTcyLcxUcxVcxVcxWcxXcxYcxZcyacybcyccydcyecyfcygctBcyhcxfcyicyjcykctBcylcymcyncyLaadcyoaadcypcyqcyoaadcypaadcyraadcyraadaadaoBcoraoBaadcypctQcyscytcwdcyucyvcywcyxcyycyzcyAcyBcqMbOCcqMcyCbLAbLAbXGcwjbXEbZYbZYbZYbXEbXEbXEcwkbXEbXEbXEbZYbZYbZYbXEcwlcyDbXEcyEccDbXEaaaaaaaaaaaabXEcsbccDcyFcyGcyGcyHcyIcyGaaaaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG byGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaQaaQaaQaadaaacpQcyJcpSaaacpQcyJcpSaaacpQcyJcpSaaaaadaaaaaacuicujcujcujcujcyKbXRbTLbTLbObbObbXScyLcyLcyLcyLcyLcyLcyLaadbObbObbObcyMcyNcyLcyOcyPcxVcxWcxXcyQcyRcyScyTcyUcxXcyVcyWcyXctBcyYcyZczaczbczcctBcuxczdcyLcyLcaBczecduczecaBczecduczecaBczfcduczgcaBaoBaoBcoraoBaoBcypczhcziczjczkczlczmcznczoctOczpcsVcsVcsVczqcsVcsVbOhbOhbKtczrczscztczuczsczvczwczxczycvfqFcczzczAqFccvfczBczCczDbXEczEccDbXEbXEbZYbZYbXEbXEcsbccDczFcyGczGczHczIcyGaaaaaaaadaadaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyGbyG diff --git a/_maps/map_files/KiloStation/KiloStation.dmm b/_maps/map_files/KiloStation/KiloStation.dmm index 616d8530b3..e9a1dd473c 100644 --- a/_maps/map_files/KiloStation/KiloStation.dmm +++ b/_maps/map_files/KiloStation/KiloStation.dmm @@ -5066,10 +5066,8 @@ /turf/open/floor/plasteel, /area/security/office) "aiL" = ( -/obj/structure/chair{ - dir = 4 - }, /obj/effect/landmark/start/security_officer, +/obj/structure/chair/beanbag/red, /turf/open/floor/plasteel, /area/security/office) "aiM" = ( @@ -20628,7 +20626,7 @@ /obj/effect/landmark/start/assistant, /obj/structure/bed/double, /obj/item/bedsheet/double_gato, -/turf/open/floor/carpet/purple, +/turf/open/floor/carpet/gato, /area/commons/locker) "aJw" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, @@ -33669,8 +33667,8 @@ /turf/open/floor/plasteel/dark, /area/science/storage) "beo" = ( -/obj/item/kirbyplants/random, -/turf/open/floor/carpet/purple, +/obj/structure/chair/beanbag/gato, +/turf/open/floor/carpet/gato, /area/commons/locker) "bep" = ( /obj/effect/turf_decal/tile/purple, @@ -52690,7 +52688,7 @@ pixel_x = 1; pixel_y = 5 }, -/turf/open/floor/carpet/purple, +/turf/open/floor/carpet/gato, /area/commons/locker) "bKl" = ( /obj/structure/flora/rock/pile, @@ -58802,7 +58800,7 @@ /turf/closed/wall, /area/hallway/secondary/entry) "bUa" = ( -/turf/open/floor/carpet/purple, +/turf/open/floor/carpet/gato, /area/commons/locker) "bUb" = ( /obj/effect/turf_decal/tile/red, @@ -81189,7 +81187,7 @@ /obj/machinery/atmospherics/components/unary/vent_scrubber/on/layer1{ dir = 1 }, -/obj/structure/chair/stool, +/obj/structure/chair/beanbag/red, /turf/open/floor/wood{ icon_state = "wood-broken" }, @@ -84076,6 +84074,12 @@ }, /turf/open/floor/plasteel/dark, /area/maintenance/starboard) +"sMB" = ( +/obj/structure/chair/beanbag/black{ + dir = 1 + }, +/turf/open/floor/wood, +/area/commons/vacant_room/office) "sNb" = ( /obj/machinery/door/airlock/public/glass{ dir = 4 @@ -85166,7 +85170,9 @@ /turf/open/space/basic, /area/solars/port/fore) "ykB" = ( -/obj/structure/chair/stool, +/obj/structure/chair/beanbag/red{ + dir = 8 + }, /turf/open/floor/wood, /area/commons/vacant_room/office) "ylS" = ( @@ -124147,9 +124153,9 @@ aqg fkk ppP qCS -ykB +aqg kXo -ykB +sMB diq bPJ bUN diff --git a/_maps/map_files/MetaStation/MetaStation.dmm b/_maps/map_files/MetaStation/MetaStation.dmm index 8a87925a59..067d02df5e 100644 --- a/_maps/map_files/MetaStation/MetaStation.dmm +++ b/_maps/map_files/MetaStation/MetaStation.dmm @@ -50879,7 +50879,7 @@ /area/command/heads_quarters/ce) "fpF" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/bench/right, +/obj/structure/chair/pew/right, /turf/open/floor/plasteel/chapel{ dir = 4 }, @@ -51434,13 +51434,9 @@ /turf/open/floor/carpet/purple, /area/maintenance/port/fore) "fKu" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, -/turf/open/floor/plasteel/chapel{ - dir = 4 - }, -/area/service/chapel/main) +/obj/structure/chair/beanbag/black, +/turf/open/floor/wood, +/area/service/library) "fKv" = ( /obj/structure/chair/comfy/black{ dir = 4 @@ -52039,7 +52035,7 @@ /turf/open/floor/carpet/royalblue, /area/command/bridge) "gdi" = ( -/obj/structure/chair/bench/left, +/obj/structure/chair/pew/left, /turf/open/floor/plasteel/chapel{ dir = 8 }, @@ -55855,7 +55851,7 @@ /area/service/hydroponics) "iqU" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/bench/left, +/obj/structure/chair/pew/left, /turf/open/floor/plasteel/chapel{ dir = 8 }, @@ -58384,7 +58380,7 @@ /turf/open/floor/plasteel/dark, /area/security/office) "jMs" = ( -/obj/structure/chair/bench/left, +/obj/structure/chair/pew/left, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -58828,7 +58824,7 @@ /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{ dir = 9 }, -/obj/structure/chair/bench/right, +/obj/structure/chair/pew/right, /turf/open/floor/plasteel/chapel{ dir = 4 }, @@ -60718,9 +60714,7 @@ /turf/open/floor/plasteel, /area/commons/locker) "kZv" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, +/obj/structure/chair/beanbag/gato, /turf/open/floor/carpet/gato, /area/commons/dorms) "kZR" = ( @@ -61284,7 +61278,7 @@ dir = 4 }, /obj/effect/landmark/event_spawn, -/obj/structure/chair/bench/left, +/obj/structure/chair/pew/left, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -63989,7 +63983,7 @@ /area/maintenance/port/aft) "mWm" = ( /obj/machinery/atmospherics/pipe/simple/scrubbers/hidden, -/obj/structure/chair/bench/right, +/obj/structure/chair/pew/right, /turf/open/floor/plasteel/chapel, /area/service/chapel/main) "mWy" = ( @@ -66788,7 +66782,7 @@ }, /area/engineering/break_room) "oJk" = ( -/obj/structure/chair/bench/right, +/obj/structure/chair/pew/right, /turf/open/floor/plasteel/chapel{ dir = 4 }, @@ -69451,9 +69445,6 @@ /area/commons/storage/primary) "qfP" = ( /obj/effect/decal/cleanable/cobweb/cobweb2, -/obj/structure/chair/comfy/black{ - dir = 8 - }, /turf/open/floor/plasteel/chapel{ dir = 4 }, @@ -72698,13 +72689,13 @@ /turf/closed/wall, /area/commons/toilet/restrooms) "rVx" = ( -/obj/structure/chair/comfy/black{ - dir = 8 - }, /obj/machinery/camera{ c_tag = "Chapel - Starboard"; dir = 8 }, +/obj/structure/chair/bench{ + dir = 8 + }, /turf/open/floor/plasteel/chapel{ dir = 4 }, @@ -73430,7 +73421,7 @@ /turf/open/floor/plasteel/dark, /area/ai_monitored/command/storage/eva) "spZ" = ( -/obj/structure/chair/bench/right, +/obj/structure/chair/pew/right, /turf/open/floor/plasteel/chapel, /area/service/chapel/main) "sqe" = ( @@ -76721,7 +76712,7 @@ /area/security/prison) "urB" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden, -/obj/structure/chair/bench/left, +/obj/structure/chair/pew/left, /turf/open/floor/plasteel/chapel{ dir = 1 }, @@ -80484,6 +80475,9 @@ name = "Station Intercom (General)"; pixel_x = 29 }, +/obj/structure/chair/bench/left{ + dir = 8 + }, /turf/open/floor/plasteel/chapel, /area/service/chapel/main) "wDM" = ( @@ -82038,8 +82032,10 @@ /turf/open/floor/plasteel, /area/commons/fitness/recreation) "xuF" = ( -/obj/structure/chair/comfy/black, /obj/effect/landmark/start/assistant, +/obj/structure/chair/beanbag/black{ + dir = 8 + }, /turf/open/floor/wood, /area/service/library) "xuP" = ( @@ -83448,6 +83444,12 @@ }, /turf/open/floor/plasteel, /area/commons/storage/primary) +"yeu" = ( +/obj/structure/chair/bench/right{ + dir = 8 + }, +/turf/open/floor/plasteel/chapel, +/area/service/chapel/main) "yeJ" = ( /obj/machinery/airalarm{ dir = 1; @@ -104373,7 +104375,7 @@ glc sqe txq glc -fEX +fKu yhY vfr iHr @@ -108287,10 +108289,10 @@ gcI fvo fvo qfP -qrc +yeu rVx wDJ -fKu +eRk fvo aaa aaa diff --git a/_maps/map_files/PubbyStation/PubbyStation.dmm b/_maps/map_files/PubbyStation/PubbyStation.dmm index ac2c85c77a..c4a6be612d 100644 --- a/_maps/map_files/PubbyStation/PubbyStation.dmm +++ b/_maps/map_files/PubbyStation/PubbyStation.dmm @@ -13714,20 +13714,14 @@ req_access_txt = "0" }, /obj/effect/spawner/lootdrop/bedsheet, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/wood, /area/commons/dorms) "aBN" = ( -/obj/machinery/light/small{ - dir = 1 +/obj/structure/chair/beanbag/red{ + dir = 8 }, -/obj/structure/sign/plaques/deempisi{ - pixel_y = 28 - }, -/obj/machinery/atmospherics/components/unary/vent_pump/on{ - dir = 4 - }, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) +/turf/open/floor/plasteel/dark, +/area/service/library) "aBO" = ( /obj/machinery/button/door{ id = "Dorm1"; @@ -13741,7 +13735,7 @@ /obj/machinery/atmospherics/pipe/simple/supply/hidden{ dir = 4 }, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/wood, /area/commons/dorms) "aBP" = ( /obj/machinery/atmospherics/pipe/simple/supply/hidden{ @@ -14372,20 +14366,21 @@ "aDb" = ( /obj/structure/table/wood, /obj/item/storage/book/bible, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/wood, /area/commons/dorms) "aDc" = ( /obj/structure/chair/wood/normal{ dir = 8 }, -/turf/open/floor/plasteel/grimy, +/turf/open/floor/wood, /area/commons/dorms) "aDd" = ( -/obj/machinery/atmospherics/components/unary/vent_scrubber/on{ - dir = 4 +/obj/structure/sign/painting/library{ + pixel_x = -32 }, -/turf/open/floor/plasteel/grimy, -/area/commons/dorms) +/obj/structure/chair/beanbag/green, +/turf/open/floor/plasteel/dark, +/area/service/library) "aDe" = ( /obj/structure/closet/secure_closet/security, /obj/item/radio/intercom{ @@ -55911,6 +55906,10 @@ }, /turf/open/floor/plating, /area/maintenance/department/engine) +"ehP" = ( +/obj/structure/chair/beanbag/purple, +/turf/open/floor/plasteel/dark, +/area/service/library) "ekq" = ( /obj/machinery/atmospherics/pipe/manifold/scrubbers/hidden{ dir = 4 @@ -57022,9 +57021,7 @@ /obj/structure/light_construct/small{ dir = 8 }, -/obj/structure/chair/comfy/black{ - dir = 4 - }, +/obj/structure/chair/beanbag/black, /turf/open/floor/carpet, /area/maintenance/department/crew_quarters/dorms) "gxq" = ( @@ -58700,9 +58697,7 @@ /turf/open/floor/carpet, /area/service/lawoffice) "jTI" = ( -/obj/structure/chair/wood/normal{ - dir = 4 - }, +/obj/structure/chair/beanbag/red, /turf/open/floor/plasteel/dark, /area/service/chapel/main/monastery) "jUV" = ( @@ -59993,7 +59988,7 @@ /turf/open/floor/plating, /area/tcommsat/computer) "mEe" = ( -/obj/structure/chair/wood/normal{ +/obj/structure/chair/beanbag/red{ dir = 8 }, /turf/open/floor/plasteel/dark, @@ -63611,7 +63606,7 @@ /turf/open/floor/plasteel, /area/cargo/storage) "uaC" = ( -/obj/structure/chair/comfy/black{ +/obj/structure/chair/beanbag{ dir = 8 }, /turf/open/floor/carpet, @@ -65680,6 +65675,12 @@ }, /turf/open/floor/plasteel, /area/construction/mining/aux_base) +"ygb" = ( +/obj/structure/chair/beanbag/blue{ + dir = 8 + }, +/turf/open/floor/plasteel/dark, +/area/service/library) "ygZ" = ( /obj/structure/closet/crate, /obj/effect/spawner/lootdrop/maintenance{ @@ -80298,7 +80299,7 @@ crM cux ihQ yaJ -crg +ihQ aoa qdm qdm @@ -82123,8 +82124,8 @@ efY mIG tGK uTz -uTz -tGK +aDd +ehP czH tGK mUw @@ -83151,8 +83152,8 @@ tGK tGK tGK tGK -tGK -tGK +aBN +ygb tGK mum hDL @@ -103338,7 +103339,7 @@ mef ayk azs mef -aBN +avf aDc mef poI @@ -103596,7 +103597,7 @@ ayl azt mef aBO -aDd +beB mef aEU aFE diff --git a/_maps/map_files/generic/CentCom.dmm b/_maps/map_files/generic/CentCom.dmm index 079880e918..e959887114 100644 --- a/_maps/map_files/generic/CentCom.dmm +++ b/_maps/map_files/generic/CentCom.dmm @@ -1630,7 +1630,7 @@ /turf/open/floor/plasteel/white, /area/fatlab) "bqq" = ( -/obj/structure/chair/comfy/black{ +/obj/structure/chair/beanbag/gato{ dir = 8 }, /turf/open/floor/carpet/gato, @@ -8108,6 +8108,12 @@ }, /turf/open/floor/plasteel/white, /area/centcom/holding) +"giQ" = ( +/obj/structure/chair/beanbag/black{ + dir = 8 + }, +/turf/open/floor/carpet/black, +/area/centcom/ferry) "gjk" = ( /obj/structure/sign/barsign{ pixel_y = 32 @@ -8165,6 +8171,9 @@ /obj/structure/window{ dir = 1 }, +/obj/structure/chair/beanbag/gato{ + dir = 8 + }, /turf/open/floor/carpet/black, /area/centcom/ferry) "gmG" = ( @@ -20611,9 +20620,7 @@ /turf/open/floor/plasteel/dark, /area/fatlab) "prT" = ( -/obj/structure/chair/comfy/black{ - dir = 4 - }, +/obj/structure/chair/beanbag/gato, /turf/open/floor/carpet/gato, /area/centcom/evac) "ptJ" = ( @@ -72725,7 +72732,7 @@ gao xIK wLr cnu -cnu +giQ cnu lSM eNU diff --git a/_maps/map_files/gs13/Fast_Food.dmm b/_maps/map_files/gs13/Fast_Food.dmm index 64c19a29fc..36ede3dc9e 100644 --- a/_maps/map_files/gs13/Fast_Food.dmm +++ b/_maps/map_files/gs13/Fast_Food.dmm @@ -110,7 +110,7 @@ "dU" = (/obj/effect/turf_decal/tile/brown{dir = 1},/obj/effect/turf_decal/tile/brown{dir = 4},/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "eb" = (/obj/machinery/door/airlock/public{name = "EMPLOYEE AREA"},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/machinery/door/poddoor/shutters/old/preopen{id = "fastfood_bar"},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee) "ef" = (/obj/effect/turf_decal/tile/brown{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) -"ei" = (/obj/machinery/jukebox{req_one_access = null},/obj/machinery/light{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"ei" = (/obj/machinery/jukebox{req_one_access = null},/obj/machinery/light{dir = 4},/obj/structure/sign/poster/official/gato_logo{pixel_y = -32},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "eq" = (/obj/effect/turf_decal/tile/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "et" = (/obj/machinery/atmospherics/components/unary/vent_pump/on,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee) "eE" = (/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) @@ -127,7 +127,7 @@ "fA" = (/obj/structure/lattice/catwalk,/obj/machinery/light/small{dir = 1},/turf/open/floor/plating/airless,/area/ruin/space/has_grav/fastfood_employee) "fB" = (/obj/structure/closet/firecloset/full,/obj/machinery/light{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/obj/effect/turf_decal/tile/purple,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "fD" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/wood,/area/ruin/space/has_grav/fastfood_employee) -"fF" = (/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_x = 10},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola{pixel_x = -10},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"fF" = (/obj/item/reagent_containers/food/drinks/drinkingglass/filled/cola{pixel_x = 10},/obj/item/reagent_containers/food/drinks/drinkingglass/filled/nuka_cola{pixel_x = -10},/obj/structure/table/plasmaglass,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "fN" = (/obj/structure/closet/emcloset/anchored,/obj/machinery/light/small{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "fR" = (/obj/machinery/power/terminal{dir = 1},/obj/structure/cable{icon_state = "0-2"; pixel_y = 1},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "fX" = (/obj/structure/lattice,/turf/open/space/basic,/area/space) @@ -264,7 +264,7 @@ "uZ" = (/obj/effect/turf_decal/tile/neutral,/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "vb" = (/obj/effect/turf_decal/tile/neutral{dir = 4},/obj/effect/turf_decal/arrows/white{dir = 1},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/effect/turf_decal/tile/neutral{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "vq" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 5},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) -"vA" = (/obj/structure/chair/comfy/blue{dir = 8},/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"vA" = (/obj/effect/turf_decal/tile/purple,/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "vB" = (/obj/machinery/teleport/station,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/effect/turf_decal/stripes{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 4},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "vD" = (/obj/structure/table,/obj/structure/extinguisher_cabinet{pixel_x = -5; pixel_y = 30},/obj/item/reagent_containers/food/condiment/enzyme{layer = 5; pixel_x = -5; pixel_y = 6},/obj/item/reagent_containers/food/condiment/enzyme{layer = 5; pixel_y = 6},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 10},/obj/item/reagent_containers/food/condiment/peppermill{pixel_x = 3; pixel_y = 10},/obj/item/reagent_containers/food/condiment/saltshaker{pixel_x = 10; pixel_y = 10},/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee) "vG" = (/obj/structure/lattice/catwalk,/obj/machinery/light/small{dir = 4},/turf/open/space/basic,/area/ruin/space/has_grav/fastfood_main) @@ -278,7 +278,7 @@ "wG" = (/obj/structure/window/fulltile,/obj/structure/flora/ausbushes/brflowers,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main) "wJ" = (/obj/machinery/light{dir = 4},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "wK" = (/obj/effect/turf_decal/tile/brown,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_employee) -"wN" = (/obj/structure/chair/comfy/black{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"wN" = (/obj/structure/chair/beanbag/gato{dir = 8},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "wR" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) "wX" = (/obj/structure/window/fulltile,/obj/structure/flora/junglebush/c,/obj/structure/sign/poster/contraband/corn_oil{pixel_y = -32},/obj/machinery/light/floor,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main) "xa" = (/obj/item/reagent_containers/food/snacks/cracker,/obj/structure/table/wood,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) @@ -357,7 +357,7 @@ "Fi" = (/obj/structure/closet/crate,/obj/effect/turf_decal/loading_area{icon_state = "drain"; name = "drain"; dir = 1},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "Fm" = (/obj/effect/turf_decal/arrows/white{dir = 1},/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 1},/obj/effect/turf_decal/tile/purple{dir = 4},/obj/effect/turf_decal/tile/purple{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "Ft" = (/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/obj/effect/decal/cleanable/blood/gibs,/obj/item/reagent_containers/food/snacks/sausage,/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) -"Fw" = (/obj/item/trash/can,/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) +"Fw" = (/obj/item/trash/can,/obj/item/reagent_containers/food/drinks/bigbottle/cola{pixel_x = -8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "Fz" = (/obj/structure/disposalpipe/segment{dir = 9},/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee) "FM" = (/obj/structure/chair/office/dark{dir = 8},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/carpet/black,/area/ruin/space/has_grav/fastfood_employee) "FZ" = (/obj/machinery/atmospherics/components/unary/vent_pump/on{dir = 4},/obj/effect/turf_decal/stripes/white/line{dir = 1; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 4; icon_state = "steel_grid_diagonal"},/obj/effect/turf_decal/stripes/white/line{dir = 8; icon_state = "steel_decals1"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee) @@ -438,7 +438,7 @@ "Pl" = (/obj/machinery/computer/arcade,/turf/open/floor/carpet/orange,/area/ruin/space/has_grav/fastfood_main) "Pq" = (/obj/structure/flora/junglebush,/obj/structure/window/reinforced{dir = 8},/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main) "PD" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/tile/brown{dir = 4},/obj/structure/sign/poster/contraband/robust_softdrinks{pixel_x = 32},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 6},/turf/open/floor/plasteel,/area/ruin/space/has_grav/fastfood_main) -"PF" = (/obj/structure/chair/comfy/black{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"PF" = (/obj/structure/chair/beanbag/gato{dir = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "PK" = (/obj/effect/turf_decal/tile/brown,/obj/effect/turf_decal/loading_area{dir = 6; icon_state = "steel_panel"; name = "steel pannel"},/turf/open/floor/plasteel/cafeteria,/area/ruin/space/has_grav/fastfood_employee) "PM" = (/obj/structure/rack,/obj/item/storage/bag/ore,/obj/item/t_scanner/adv_mining_scanner/lesser,/obj/item/pickaxe/mini,/obj/item/shovel,/obj/item/clothing/suit/space/eva,/obj/item/clothing/head/helmet/space/eva,/obj/effect/turf_decal/loading_area{dir = 8; icon_state = "drain"; name = "drain"},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "PN" = (/obj/structure/window/fulltile,/obj/structure/flora/ausbushes/fernybush,/turf/open/floor/grass,/area/ruin/space/has_grav/fastfood_main) @@ -497,7 +497,7 @@ "Vd" = (/obj/machinery/light/small{dir = 8},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_employee) "Vm" = (/obj/machinery/atmospherics/pipe/simple/supply/hidden{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{icon_state = "0-4"},/obj/machinery/power/apc{name = "Customer APC"; pixel_y = 28},/turf/open/floor/plating,/area/ruin/space/has_grav/fastfood_main) "Vo" = (/obj/machinery/gibber,/obj/effect/turf_decal/loading_area{dir = 1; icon_state = "drain"; name = "drain"},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_employee) -"Vt" = (/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) +"Vt" = (/obj/item/trash/plate{pixel_x = -5; pixel_y = 4},/obj/structure/table/wood/bar,/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_main) "Vx" = (/obj/structure/sign/poster/official/cleanliness{pixel_x = 32},/obj/machinery/atmospherics/components/unary/vent_scrubber/on{dir = 1},/turf/open/floor/plasteel/freezer,/area/ruin/space/has_grav/fastfood_main) "Vy" = (/obj/structure/table,/obj/item/reagent_containers/food/condiment/mayonnaise,/obj/item/reagent_containers/food/condiment/sugar{pixel_x = -10},/obj/machinery/atmospherics/pipe/simple/scrubbers/hidden{dir = 1},/turf/open/floor/plasteel/dark,/area/ruin/space/has_grav/fastfood_employee) "Vz" = (/obj/structure/sign/barsign,/obj/machinery/atmospherics/pipe/simple/supply/hidden,/turf/closed/wall,/area/ruin/space/has_grav/fastfood_employee) diff --git a/code/game/objects/items/RCD.dm b/code/game/objects/items/RCD.dm index 129e1cb8be..aa85db6c47 100644 --- a/code/game/objects/items/RCD.dm +++ b/code/game/objects/items/RCD.dm @@ -164,7 +164,7 @@ RLD lefthand_file = 'icons/mob/inhands/equipment/tools_lefthand.dmi' righthand_file = 'icons/mob/inhands/equipment/tools_righthand.dmi' custom_price = PRICE_ABOVE_EXPENSIVE - custom_premium_price = PRICE_ALMOST_ONE_GRAND + custom_premium_price = PRICE_ABOVE_EXPENSIVE //GS13 tweak max_matter = 160 item_flags = NO_MAT_REDEMPTION | NOBLUDGEON has_ammobar = TRUE diff --git a/code/modules/clothing/gloves/color.dm b/code/modules/clothing/gloves/color.dm index 1837504e99..96dc79c6f0 100644 --- a/code/modules/clothing/gloves/color.dm +++ b/code/modules/clothing/gloves/color.dm @@ -11,7 +11,7 @@ resistance_flags = NONE var/can_be_cut = 1 custom_price = PRICE_EXPENSIVE - custom_premium_price = PRICE_ALMOST_ONE_GRAND + custom_premium_price = PRICE_ABOVE_EXPENSIVE //GS13 tweak /obj/item/toy/sprayoncan name = "spray-on insulation applicator" diff --git a/tgstation.dme b/tgstation.dme index 6c2d16019f..6255779b05 100644 --- a/tgstation.dme +++ b/tgstation.dme @@ -4011,6 +4011,7 @@ #include "GainStation13\code\modules\client\preferences\preferences.dm" #include "GainStation13\code\modules\clothing\under\jobs\modular_items.dm" #include "GainStation13\code\modules\events\vent_clog.dm\vent_clog.dm" +#include "GainStation13\code\modules\food_and_drinks\bigbottle.dm" #include "GainStation13\code\modules\food_and_drinks\drinks.dm" #include "GainStation13\code\modules\food_and_drinks\food.dm" #include "GainStation13\code\modules\food_and_drinks\recipes_bigpizza.dm"