diff --git a/code/__defines/is_helpers.dm b/code/__defines/is_helpers.dm index 69e4c0583aa..a9873595e9a 100644 --- a/code/__defines/is_helpers.dm +++ b/code/__defines/is_helpers.dm @@ -89,7 +89,7 @@ GLOBAL_VAR_INIT(refid_filter, TYPEID(filter(type="angular_blur"))) #define is_vehicle_inpassable(A) (istype(A, /turf/space) || istype(A, /turf/simulated/floor/water) || istype(A, /turf/simulated/floor/lava)) // Diveable water -#define isdiveablewater(A) istype(A, /turf/simulated/floor/water/deep/ocean/diving) +#define isdiveablewater(A) (istype(A, /turf/simulated/floor/water/deep/ocean/diving) || istype(A, /turf/simulated/floor/water/underwater/open) || istype(A, /turf/simulated/floor/water/underwater/indoors/open)) /// NaN isn't a number, damn it. Infinity is a problem too. #define isnum_safe(x) ( isnum((x)) && !isnan((x)) && !isinf((x)) ) diff --git a/code/game/machinery/floodlight.dm b/code/game/machinery/floodlight.dm index 3bd60c90748..735fbc79d0d 100644 --- a/code/game/machinery/floodlight.dm +++ b/code/game/machinery/floodlight.dm @@ -133,3 +133,10 @@ cell = W to_chat(user, "You insert the power cell.") update_icon() + +/obj/machinery/floodlight/starts_on + icon_state = "flood01" + +/obj/machinery/floodlight/starts_on/Initialize(mapload) + . = ..() + turn_on() diff --git a/code/game/objects/items/stacks/tiles/tile_types.dm b/code/game/objects/items/stacks/tiles/tile_types.dm index 115ef1abcb9..7831f13b706 100644 --- a/code/game/objects/items/stacks/tiles/tile_types.dm +++ b/code/game/objects/items/stacks/tiles/tile_types.dm @@ -295,6 +295,12 @@ icon_state = "tile_white" no_variants = FALSE +/obj/item/stack/tile/floor/purple + name = "purple floor tile" + singular_name = "purple floor tile" + color = COLOR_PURPLE_GRAY + no_variants = FALSE + /obj/item/stack/tile/floor/dark name = "dark floor tile" singular_name = "dark floor tile" diff --git a/code/game/objects/random/misc_vr.dm b/code/game/objects/random/misc_vr.dm index 65cfa9c33da..e705d2ae582 100644 --- a/code/game/objects/random/misc_vr.dm +++ b/code/game/objects/random/misc_vr.dm @@ -436,3 +436,40 @@ prob(5);/obj/item/clothing/suit/shibari/black, prob(5);/obj/item/clothing/suit/shibari/pink ) + +/obj/random/chips + name = "random chips" + icon_state = "chips" + spawn_nothing_percentage = 10 + +/obj/random/chips/item_to_spawn() + return pick( + prob(35);/obj/item/spacecasinocash/c1, + prob(10);/obj/item/spacecasinocash/c10, + prob(5);/obj/item/spacecasinocash/c100, + ) + +/obj/random/chips/better + name = "better random chips" + icon_state = "chips_1" + spawn_nothing_percentage = 0 + +/obj/random/chips/item_to_spawn() + return pick( + prob(35);/obj/item/spacecasinocash/c10, + prob(15);/obj/item/spacecasinocash/c100, + prob(5);/obj/item/spacecasinocash/c200, + prob(1);/obj/item/spacecasinocash/c500, + ) + +/obj/random/chips/good + name = "good random chips" + icon_state = "chips_2" + +/obj/random/chips/item_to_spawn() + return pick( + prob(45);/obj/item/spacecasinocash/c100, + prob(15);/obj/item/spacecasinocash/c200, + prob(5);/obj/item/spacecasinocash/c500, + prob(1);/obj/item/spacecasinocash/c1000, + ) diff --git a/code/game/objects/structures/artstuff.dm b/code/game/objects/structures/artstuff.dm index 460a5ae9d24..81e57268432 100644 --- a/code/game/objects/structures/artstuff.dm +++ b/code/game/objects/structures/artstuff.dm @@ -349,6 +349,18 @@ desc_with_canvas = "A piece of art (or \"art\"). Anyone could've hung it." persistence_id = "public" +/obj/structure/sign/painting/public/north + pixel_y = 30 + +/obj/structure/sign/painting/public/south + pixel_y = -30 + +/obj/structure/sign/painting/public/east + pixel_x = 30 + +/obj/structure/sign/painting/public/west + pixel_x = -30 + /obj/structure/sign/painting/library_secure name = "\improper Curated Painting Exhibit mounting" desc = "For masterpieces hand-picked by the librarian." diff --git a/code/game/turfs/flooring/flooring.dm b/code/game/turfs/flooring/flooring.dm index 01a7c4a5d35..018603f2a17 100644 --- a/code/game/turfs/flooring/flooring.dm +++ b/code/game/turfs/flooring/flooring.dm @@ -375,6 +375,10 @@ var/list/flooring_types /decl/flooring/tiling/new_tile/monotile icon_base = "monotile" +/decl/flooring/tiling/new_tile/monotile/purple + icon_base = "monotile-purple" + build_type = /obj/item/stack/tile/floor/purple + /decl/flooring/tiling/new_tile/steel_grid icon_base = "steel_grid" build_type = /obj/item/stack/tile/floor/steelgrip @@ -427,6 +431,12 @@ var/list/flooring_types has_damage_range = null build_type = /obj/item/stack/tile/floor/yellow +/decl/flooring/tiling/purple + name = "floor" + icon_base = "purple" + has_damage_range = null + build_type = /obj/item/stack/tile/floor/purple + /decl/flooring/tiling/dark name = "floor" desc = "How ominous." diff --git a/code/game/turfs/flooring/flooring_premade.dm b/code/game/turfs/flooring/flooring_premade.dm index 3655d1269bf..9a6c9df1dda 100644 --- a/code/game/turfs/flooring/flooring_premade.dm +++ b/code/game/turfs/flooring/flooring_premade.dm @@ -220,6 +220,10 @@ icon_state = "monotile" initial_flooring = /decl/flooring/tiling/new_tile/monotile +/turf/simulated/floor/tiled/monotile/purple + icon_state = "monotile-purple" + initial_flooring = /decl/flooring/tiling/new_tile/monotile/purple + /turf/simulated/floor/tiled/steel_grid name = "floor" icon = 'icons/turf/flooring/tiles_vr.dmi' @@ -411,6 +415,11 @@ icon_state = "white" initial_flooring = /decl/flooring/tiling/yellow +/turf/simulated/floor/tiled/purple + name = "purple floor" + icon_state = "purple" + initial_flooring = /decl/flooring/tiling/purple + /turf/simulated/floor/tiled/freezer name = "tiles" icon_state = "freezer" diff --git a/code/game/turfs/simulated/outdoors/outdoors.dm b/code/game/turfs/simulated/outdoors/outdoors.dm index ee836b4d402..68b75d09fd4 100644 --- a/code/game/turfs/simulated/outdoors/outdoors.dm +++ b/code/game/turfs/simulated/outdoors/outdoors.dm @@ -258,6 +258,9 @@ var/list/turf_edge_cache = list() flooring_override = pickweight(possibledirts) return ..() +/turf/simulated/floor/outdoors/newdirt_nograss/caves + outdoors = OUTDOORS_NO + /turf/simulated/floor/outdoors/sidewalk name = "sidewalk" desc = "Concrete shaped into a path!" diff --git a/code/game/turfs/simulated/underwater.dm b/code/game/turfs/simulated/underwater.dm index 6b90c56a071..213a259d1ec 100644 --- a/code/game/turfs/simulated/underwater.dm +++ b/code/game/turfs/simulated/underwater.dm @@ -1,3 +1,4 @@ + /turf/simulated/floor/water/underwater name = "sea floor" desc = "It's the bottom of the sea, there's water all over the place!" @@ -93,3 +94,91 @@ icon_state = "wood-broken0" // So it shows up in the map editor as water. water_icon = 'icons/turf/flooring/wood_vr.dmi' water_state = "wood-broken0" + +/turf/simulated/floor/water/underwater/rocks + icon_state = "rock" + +/turf/simulated/floor/water/underwater/open + icon = 'icons/effects/weather.dmi' + icon_state = "underwater-indoors" // Just looks underwater in the map editor, will be invisible once ingame + name = "deeper waters" + desc = "The watery depths seem to go even deeper here." + +/turf/simulated/floor/water/underwater/open/update_icon() + . = ..() + icon = 'icons/turf/open_space.dmi' + icon_state = "black_open_lighter" + +/turf/simulated/floor/water/underwater/open/LateInitialize() + . = ..() + AddElement(/datum/element/turf_z_transparency, FALSE) + +/turf/simulated/floor/water/underwater/open/CanZPass(atom/A, direction, recursive) + return TRUE + +/turf/simulated/floor/water/underwater/open/handle_water_icons() + // We'll rely on the turfs below for water visuals! + SHOULD_CALL_PARENT(FALSE) + var/atom/movable/weather_visuals/visuals = new(null) + visuals.icon = 'icons/effects/weather.dmi' + visuals.icon_state = "underwater" + vis_contents += visuals + +// Indoors variants that do not use outdoor lighting, and must re-add water overlay icons since they won't be relying on the weather system to do it! + +/turf/simulated/floor/water/underwater/indoors + outdoors = OUTDOORS_NO + var/overlay_icon = 'icons/effects/weather.dmi' + var/overlay_state = "underwater-indoors" + var/atom/movable/weather_visuals/visuals + +/turf/simulated/floor/water/underwater/indoors/handle_water_icons() + SHOULD_CALL_PARENT(FALSE) + var/atom/movable/weather_visuals/visuals = new(null) + visuals.icon = overlay_icon + visuals.icon_state = overlay_state + vis_contents += visuals + +/turf/simulated/floor/water/underwater/indoors/open + icon = 'icons/effects/weather.dmi' + icon_state = "underwater-indoors" // Just looks underwater in the map editor, will be invisible once ingame + name = "deeper waters" + desc = "The watery depths seem to go even deeper here." + +/turf/simulated/floor/water/underwater/indoors/open/LateInitialize() + . = ..() + AddElement(/datum/element/turf_z_transparency, FALSE) + +/turf/simulated/floor/water/underwater/indoors/open/update_icon() + . = ..() + icon = 'icons/turf/open_space.dmi' + icon_state = "black_open_lighter" + +/turf/simulated/floor/water/underwater/indoors/open/CanZPass(atom/A, direction, recursive) + return TRUE + +/turf/simulated/floor/water/underwater/indoors/cult + icon = 'icons/turf/flooring/cult.dmi' + icon_state = "cult" + +/turf/simulated/floor/water/underwater/indoors/ruins + icon = 'maps/redgate/falls/icons/turfs/marble.dmi' + icon_state = "1" + +/turf/simulated/floor/water/underwater/indoors/sand + icon = 'icons/misc/beach.dmi' + icon_state = "sand" + +/turf/simulated/floor/water/underwater/indoors/wood + icon = 'icons/turf/flooring/wood_vr.dmi' + icon_state = "wood" + +/turf/simulated/floor/water/underwater/indoors/woodbroken + icon = 'icons/turf/flooring/wood_vr.dmi' + icon_state = "wood-broken0" + +/turf/simulated/floor/water/underwater/indoors/rocks + icon_state = "rock" + +/turf/simulated/floor/water/underwater/indoors/rocks/vis_hide + flags = TURF_ACID_IMMUNE | VIS_HIDE diff --git a/code/game/turfs/simulated/wall_types.dm b/code/game/turfs/simulated/wall_types.dm index 2822a97e414..7dd6d46b3fe 100644 --- a/code/game/turfs/simulated/wall_types.dm +++ b/code/game/turfs/simulated/wall_types.dm @@ -648,6 +648,12 @@ strict_blending = TRUE diagonal_blending = TRUE +/turf/simulated/wall/tgmc/window/CanPass(atom/movable/mover, turf/target) + // This IS a glass window, so things that can pass glass should pass through here! + if(istype(mover) && mover.checkpass(PASSGLASS)) + return TRUE + return ..() + /turf/simulated/wall/tgmc/window/rwall icon_state = "rwall_window0" wall_base_state = "rwall_window" diff --git a/code/game/turfs/simulated/water.dm b/code/game/turfs/simulated/water.dm index ac0d17a2746..b8dfe2079dc 100644 --- a/code/game/turfs/simulated/water.dm +++ b/code/game/turfs/simulated/water.dm @@ -23,6 +23,11 @@ var/watercolor = null +/turf/simulated/floor/water/proc/handle_water_icons() + icon_state = under_state // This isn't set at compile time in order for it to show as water in the map editor. + var/image/water_sprite = image(icon = water_icon, icon_state = water_state, layer = WATER_LAYER) + add_overlay(water_sprite) + /turf/simulated/floor/water/Initialize(mapload) . = ..() update_icon() @@ -30,10 +35,7 @@ /turf/simulated/floor/water/update_icon() ..() // To get the edges. - - icon_state = under_state // This isn't set at compile time in order for it to show as water in the map editor. - var/image/water_sprite = image(icon = water_icon, icon_state = water_state, layer = WATER_LAYER) - add_overlay(water_sprite) + handle_water_icons() /turf/simulated/floor/water/get_edge_icon_state() return "water_shallow" diff --git a/code/modules/lighting/lighting_fake_sun_vr.dm b/code/modules/lighting/lighting_fake_sun_vr.dm index 26261f60e4f..b7ce18bf8f8 100644 --- a/code/modules/lighting/lighting_fake_sun_vr.dm +++ b/code/modules/lighting/lighting_fake_sun_vr.dm @@ -240,3 +240,10 @@ var/static/list/fake_sunlight_zs = list() "color" = "#1c49ff" ) ) +/obj/effect/fake_sun/underwater/lighter + possible_light_setups = list( + list( + "brightness" = 1, + "color" = "#4bd1f3" + ) + ) diff --git a/code/modules/mob/dead/observer/observer_vr.dm b/code/modules/mob/dead/observer/observer_vr.dm index e96b0660496..b24660c7bae 100644 --- a/code/modules/mob/dead/observer/observer_vr.dm +++ b/code/modules/mob/dead/observer/observer_vr.dm @@ -68,19 +68,31 @@ if(!isobserver(src)) //Make sure they're an observer! return - var/list/ar = list() - for(var/obj/machinery/transhuman/autoresleever/A in world) + // Set up an assorted list of auto-resleevers using their area name as the key, (as there should only ever be one per area) + var/list/autoresleevers = list() + for(var/obj/machinery/transhuman/autoresleever/A in GLOB.active_autoresleevers) if(A.spawntype) continue else - ar |= A + var/area/resleever_area = get_area(A) + autoresleevers[resleever_area.name] = A - var/obj/machinery/transhuman/autoresleever/thisone = pick(ar) + var/obj/machinery/transhuman/autoresleever/chosen_resleever = null + if(length(autoresleevers) > 1) + // Prompt user to choose which one they wanna go to + var/choice = tgui_input_list(src, "There are multiple auto-resleevers available! Choose one.", "Choose Auto-Resleever", autoresleevers) + if(!choice) + // well okay then :L + return + chosen_resleever = autoresleevers[choice] + else + // If there's less than one, just choose whatever one is available (if any) + chosen_resleever = autoresleevers[pick(autoresleevers)] - if(!thisone) + if(!chosen_resleever) to_chat(src, span_warning("There appears to be no auto-resleevers available.")) return - var/L = get_turf(thisone) + var/L = get_turf(chosen_resleever) if(!L) to_chat(src, span_warning("There appears to be something wrong with this auto-resleever, try again.")) return diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm b/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm index 72c7c4b5a82..228d157c2f9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/horse.dm @@ -178,10 +178,9 @@ ai_log("handle_wander_movement() : Entered.", AI_LOG_TRACE) if(isturf(holder.loc) && can_act()) wander_delay-- - var/turf/simulated/floor/water/deep/ocean/diving/sink = holder.loc var/turf/simulated/floor/water/underwater/surface = holder.loc var/mob/living/simple_mob/H = holder - if(istype(sink) && H.vore_fullness) + if(isdiveablewater(holder.loc) && H.vore_fullness) holder.zMove(DOWN) wander_delay = base_wander_delay else if(istype(surface) && !H.vore_fullness) diff --git a/code/modules/multiz/movement.dm b/code/modules/multiz/movement.dm index b615f054965..c3f7e4e4221 100644 --- a/code/modules/multiz/movement.dm +++ b/code/modules/multiz/movement.dm @@ -54,8 +54,7 @@ return 0 if(direction == DOWN) - var/turf/simulated/floor/water/deep/ocean/diving/sink = start - if(istype(sink) && !destination.density) + if(isdiveablewater(start) && !destination.density) var/pull_up_time = max((3 SECONDS + (src.movement_delay() * 10) * swim_modifier), 1) to_chat(src, span_notice("You start diving underwater...")) src.audible_message(span_notice("[src] begins to dive under the water."), runemessage = "splish splosh") @@ -90,7 +89,7 @@ to_chat(src, span_warning("You gave up on pulling yourself up.")) return 0 - else if(istype(destination, /turf/simulated/floor/water/deep/ocean/diving)) + else if(isdiveablewater(destination)) var/pull_up_time = max((5 SECONDS + (src.movement_delay() * 10) * swim_modifier), 1) to_chat(src, span_notice("You start swimming upwards...")) src.audible_message(span_notice("[src] begins to swim towards the surface."), runemessage = "splish splosh") diff --git a/code/modules/resleeving/autoresleever.dm b/code/modules/resleeving/autoresleever.dm index ff2016a57fe..a6f34021f80 100644 --- a/code/modules/resleeving/autoresleever.dm +++ b/code/modules/resleeving/autoresleever.dm @@ -1,3 +1,5 @@ +GLOBAL_LIST_EMPTY(active_autoresleevers) + /obj/machinery/transhuman/autoresleever name = "automatic resleever" desc = "Uses advanced technology to detect when someone needs to be resleeved, and automatically prints and sleeves them into a new body. It even generates its own biomass!" @@ -13,6 +15,14 @@ var/spawn_slots = -1 //How many people can be spawned from this? If -1 it's unlimited var/spawntype //The kind of mob that will be spawned, if set. +/obj/machinery/transhuman/autoresleever/Initialize(mapload) + . = ..() + GLOB.active_autoresleevers += src + +/obj/machinery/transhuman/autoresleever/Destroy() + . = ..() + GLOB.active_autoresleevers -= src + /obj/machinery/transhuman/autoresleever/update_icon() . = ..() if(stat & (BROKEN | MAINT | EMPED)) diff --git a/icons/effects/weather.dmi b/icons/effects/weather.dmi index bfbb1c767e9..5d58f27e364 100644 Binary files a/icons/effects/weather.dmi and b/icons/effects/weather.dmi differ diff --git a/icons/misc/random_spawners.dmi b/icons/misc/random_spawners.dmi index 19fec95f8b5..77eca854d9c 100644 Binary files a/icons/misc/random_spawners.dmi and b/icons/misc/random_spawners.dmi differ diff --git a/icons/turf/flooring/tiles_vr.dmi b/icons/turf/flooring/tiles_vr.dmi index 77c699d107b..56160b1bbbd 100644 Binary files a/icons/turf/flooring/tiles_vr.dmi and b/icons/turf/flooring/tiles_vr.dmi differ diff --git a/icons/turf/open_space.dmi b/icons/turf/open_space.dmi index 4b3ba1fb671..bb5caa0b459 100644 Binary files a/icons/turf/open_space.dmi and b/icons/turf/open_space.dmi differ diff --git a/maps/common/common_defines.dm b/maps/common/common_defines.dm index 9e63e2fa432..04ea9d647ff 100644 --- a/maps/common/common_defines.dm +++ b/maps/common/common_defines.dm @@ -104,6 +104,8 @@ #define Z_NAME_REDGATE_JUNGLE_CAVE "Redgate - Jungle Underground" #define Z_NAME_REDGATE_JUNGLE "Redgate - Jungle" #define Z_NAME_REDGATE_FACILITY "Redgate - Facility" +#define Z_NAME_REDGATE_CASINO_CANAL "Redgate - Casino Canal" +#define Z_NAME_REDGATE_CASINO_CANAL_LOWER "Redgate - Casino Canal Lower Level" /obj/effect/landmark/map_data/groundbase height = 3 diff --git a/maps/groundbase/groundbase_defines.dm b/maps/groundbase/groundbase_defines.dm index 53a7af2c359..139bca2452c 100644 --- a/maps/groundbase/groundbase_defines.dm +++ b/maps/groundbase/groundbase_defines.dm @@ -201,6 +201,7 @@ list(Z_NAME_REDGATE_CASCADING_FALLS), list(Z_NAME_REDGATE_JUNGLE_CAVE, Z_NAME_REDGATE_JUNGLE), list(Z_NAME_REDGATE_FACILITY), + list(Z_NAME_REDGATE_CASINO_CANAL_LOWER, Z_NAME_REDGATE_CASINO_CANAL), ) lateload_gb_north = list( diff --git a/maps/offmap_vr/common_offmaps.dm b/maps/offmap_vr/common_offmaps.dm index 85922fd1eea..e55a7a3022d 100644 --- a/maps/offmap_vr/common_offmaps.dm +++ b/maps/offmap_vr/common_offmaps.dm @@ -241,6 +241,8 @@ #ifdef AWAY_MISSION_TEST #include "../redgate/falls/falls.dmm" #include "../redgate/abandonedisland.dmm" +#include "../redgate/casino_canal/casino_canal_1.dmm" +#include "../redgate/casino_canal/casino_canal_2.dmm" #include "../redgate/cybercity.dmm" #include "../redgate/darkadventure.dmm" #include "../redgate/eggnogtown.dmm" @@ -289,6 +291,11 @@ desc = "Caves and grass and a tavern, woah!" mappath = "maps/redgate/innland.dmm" +/datum/map_template/common_lateload/redgate/casino_canal + name = Z_NAME_REDGATE_ABANDONED_ISLAND + desc = "It seems like it used to be people here!" + mappath = "maps/redgate/casino_canal/casino_canal.dmm" + /datum/map_template/common_lateload/redgate/abandonedisland name = Z_NAME_REDGATE_ABANDONED_ISLAND desc = "It seems like it used to be people here!" @@ -392,6 +399,19 @@ desc = "A facility full of unusual experiments." mappath = "maps/redgate/facility.dmm" +/datum/map_template/common_lateload/redgate/casino_canal + name = Z_NAME_REDGATE_CASINO_CANAL + desc = "An underwater casino at the bottom of the sea." + mappath = "maps/redgate/casino_canal/casino_canal_2.dmm" + +/datum/map_template/common_lateload/redgate/casino_canal_lower + name = Z_NAME_REDGATE_CASINO_CANAL_LOWER + desc = "The lower floor of an underwater casino at the bottom of the sea." + mappath = "maps/redgate/casino_canal/casino_canal_1.dmm" + +/obj/effect/landmark/map_data/underwater_casino + height = 2 + ////////////////////////////////////////////////////////////////////////////////////// // Admin-use z-levels for loading whenever an admin feels like #ifdef AWAY_MISSION_TEST diff --git a/maps/redgate/casino_canal/casino_canal.dm b/maps/redgate/casino_canal/casino_canal.dm new file mode 100644 index 00000000000..2999c205401 --- /dev/null +++ b/maps/redgate/casino_canal/casino_canal.dm @@ -0,0 +1,324 @@ +#define UNDERWATER_CASINO_NAME "Casino Canal" + +// ****************************** +// ***** OBJECTS ****** +// ****************************** + +// Different type of chip machine that gives visitors a set amount of chips to start with. +// No pay-to-win here - One free use per ckey, and that's it! +/obj/machinery/oneuse_chipmachine + name = "automated chip dispenser" + desc = "A curious device that dispenses a set amount of chips to each visitor one time, and one time only." + icon = 'icons/obj/casino.dmi' + icon_state = "chipmachine" + anchored = 1 + var/list/used_ckeys = list() // Players who have already received their chips. + var/amt_chips_to_dispense = 250 + var/speaking = FALSE // Whether or not we are saying one message (to prevent overlap) + +/obj/machinery/oneuse_chipmachine/proc/state_message(var/message, var/delay=0) + PROTECTED_PROC(TRUE) + SHOULD_NOT_SLEEP(TRUE) + // If we don't want a delay, say the message + if(!delay) + speaking = FALSE + playsound(loc, 'sound/voice/emotes/wawa.ogg', 50, 1) + audible_message("[icon2html(src,hearers(src))] [span_bold("\The [src]")] states, \"[message]\"", runemessage = "wawa") + // If we do, call the delay-less part of this but with, well, the delay + else + speaking = TRUE + addtimer(CALLBACK(src, PROC_REF(state_message), message), delay, TIMER_DELETE_ME) + + +/obj/machinery/oneuse_chipmachine/attackby(obj/item/W, mob/user, attack_modifier, click_parameters) + if(!speaking) + // No pay-to-win! + if(istype(W,/obj/item/spacecash)) + state_message("Our apologies, but the [UNDERWATER_CASINO_NAME] does not accept payments of any kind. We ask only for your enjoyment of our games and facilities.") + state_message("Instead, please extend an empty hand before this machine. If this is your first time using this machine this shift, we will provide you with a set of starting chips.", 3 SECONDS) + if(istype(W,/obj/item/spacecasinocash)) + state_message("Our apologies, but the [UNDERWATER_CASINO_NAME] does not convert chips to money.") + state_message("We do not require money to run our facilities. By that same token, you do not need money to enjoy them.", 3 SECONDS) + +/obj/machinery/oneuse_chipmachine/attack_hand(mob/user) + if(user.ckey in used_ckeys) + if(!speaking) + state_message("You have already received your chips for this shift.") + state_message("The [UNDERWATER_CASINO_NAME] allows only [amt_chips_to_dispense] chips to be given per visitor, regardless of financial status.", 3 SECONDS) + else + spawn_casinochips(amt_chips_to_dispense, src.loc, user) + playsound(loc, 'sound/items/vending.ogg', 50, 1) + state_message("Thank you for visiting the [UNDERWATER_CASINO_NAME]. Please accept these complementary chips and enjoy your stay.", 1 SECONDS) + used_ckeys += user.ckey + +// ****************************** +// ***** AREAS ****** +// ****************************** + +/area/redgate/underwater_casino + name = UNDERWATER_CASINO_NAME + dynamic_lighting = TRUE + flags = RAD_SHIELDED + base_turf = /turf/simulated/floor/water/underwater + +/area/redgate/underwater_casino/indoors + name = UNDERWATER_CASINO_NAME + " Interior" + requires_power = FALSE + +// Upper floors + +/area/redgate/underwater_casino/indoors/upper + name = UNDERWATER_CASINO_NAME + " - Top Floor" + icon_state = "deck2" + base_turf = /turf/simulated/open + +/area/redgate/underwater_casino/indoors/upper/hall + name = UNDERWATER_CASINO_NAME + " - Halls (Top Floor)" + ambience = AMBIENCE_CASINO + +/area/redgate/underwater_casino/indoors/upper/maintenance + name = UNDERWATER_CASINO_NAME + " - Maintenance (Top Floor)" + icon_state = "deckmaint2" + sound_env = TUNNEL_ENCLOSED + +/area/redgate/underwater_casino/indoors/upper/bar + name = UNDERWATER_CASINO_NAME + " - Bar" + icon = 'icons/turf/areas.dmi' + icon_state = "bar" + sound_env = LARGE_ENCLOSED + +/area/redgate/underwater_casino/indoors/upper/lounge + name = UNDERWATER_CASINO_NAME + " - Lounge" + icon_state = "grewhicir" + sound_env = SMALL_SOFTFLOOR + +/area/redgate/underwater_casino/indoors/upper/kitchen + name = UNDERWATER_CASINO_NAME + " - Kitchen" + icon = 'icons/turf/areas.dmi' + icon_state = "kitchen" + +/area/redgate/underwater_casino/indoors/upper/entry + name = UNDERWATER_CASINO_NAME + " - Entry" + icon_state = "redwhitri" + +/area/redgate/underwater_casino/indoors/upper/shop + name = UNDERWATER_CASINO_NAME + " - Shop" + icon_state = "bluwhisqu" + +/area/redgate/underwater_casino/indoors/upper/janitorcloset + name = UNDERWATER_CASINO_NAME + " - Janitorial Supply Closet" + icon_state = "bluwhitri" + +/area/redgate/underwater_casino/indoors/upper/bathroom + name = UNDERWATER_CASINO_NAME + " - Bathroom" + sound_env = SOUND_ENVIRONMENT_BATHROOM + icon = 'icons/turf/areas.dmi' + icon_state = "toilet" + +/area/redgate/underwater_casino/indoors/upper/comms + name = UNDERWATER_CASINO_NAME + " - Communications" + icon_state = "yellow" + +/area/redgate/underwater_casino/indoors/upper/vacant + name = UNDERWATER_CASINO_NAME + " - Vacant Site" + icon = 'icons/turf/areas.dmi' + icon_state = "vacant_site" + +/area/redgate/underwater_casino/indoors/upper/barback + name = UNDERWATER_CASINO_NAME + " - Bar Vacant Site (Top Floor)" + icon = 'icons/turf/areas.dmi' + icon_state = "vacant_site" + +/area/redgate/underwater_casino/indoors/upper/airlock + name = UNDERWATER_CASINO_NAME + " - Airlock" + icon = 'icons/turf/areas.dmi' + icon_state = "green" + +/area/redgate/underwater_casino/indoors/upper/airlock/west + name = UNDERWATER_CASINO_NAME + " - Airlock (West)" + +/area/redgate/underwater_casino/indoors/upper/airlock/east + name = UNDERWATER_CASINO_NAME + " - Airlock (East)" + +/area/redgate/underwater_casino/indoors/upper/airlock/south + name = UNDERWATER_CASINO_NAME + " - Airlock (South)" + +/area/redgate/underwater_casino/indoors/upper/casino + name = UNDERWATER_CASINO_NAME + " - Game Floor" + icon = 'icons/turf/areas.dmi' + icon_state = "casino" + ambience = AMBIENCE_CASINO + +/area/redgate/underwater_casino/indoors/upper/casino/back + name = UNDERWATER_CASINO_NAME + " - Game Floor (Back Room)" + icon_state = "casino2" + +/area/redgate/underwater_casino/indoors/upper/casino/slots + name = UNDERWATER_CASINO_NAME + " - Game Floor (Slot Machines)" + icon_state = "casino2" + +/area/redgate/underwater_casino/indoors/upper/security + name = UNDERWATER_CASINO_NAME + " - Security (Top Floor)" + icon = 'icons/turf/areas_vr.dmi' + icon_state = "security" + +/area/redgate/underwater_casino/indoors/upper/security + name = UNDERWATER_CASINO_NAME + " - Security Meeting Room" + +// Lower floors + +/area/redgate/underwater_casino/indoors/lower + name = UNDERWATER_CASINO_NAME + " - Bottom Floor" + icon_state = "deck1" + base_turf = /turf/simulated/mineral/floor + +/area/redgate/underwater_casino/indoors/lower/hall + name = UNDERWATER_CASINO_NAME + " - Halls (Bottom Floor)" + ambience = AMBIENCE_CASINO + +/area/redgate/underwater_casino/indoors/lower/maintenance + name = UNDERWATER_CASINO_NAME + " - Maintenance (Bottom Floor)" + sound_env = TUNNEL_ENCLOSED + icon_state = "deckmaint1" + +/area/redgate/underwater_casino/indoors/lower/barback + name = UNDERWATER_CASINO_NAME + " - Bar Vacant Site (Bottom Floor)" + icon = 'icons/turf/areas.dmi' + icon_state = "vacant_site" + +/area/redgate/underwater_casino/indoors/lower/autoresleeving + name = UNDERWATER_CASINO_NAME + " - Auto Resleeving" + icon_state = "medical" + +/area/redgate/underwater_casino/indoors/lower/resleeving + name = UNDERWATER_CASINO_NAME + " - Resleeving" + icon_state = "medical" + +/area/redgate/underwater_casino/indoors/lower/laundry + name = UNDERWATER_CASINO_NAME + " - Laundry" + icon = 'icons/turf/areas.dmi' + icon_state = "laundry" + +/area/redgate/underwater_casino/indoors/lower/dorms + name = UNDERWATER_CASINO_NAME + " - Dorms" + flags = RAD_SHIELDED | BLUE_SHIELDED | AREA_FLAG_IS_NOT_PERSISTENT | AREA_FORBID_EVENTS | AREA_FORBID_SINGULO | AREA_SOUNDPROOF | AREA_ALLOW_LARGE_SIZE | AREA_BLOCK_SUIT_SENSORS | AREA_BLOCK_TRACKING | AREA_BLOCK_INSTANT_BUILDING + +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1 + name = UNDERWATER_CASINO_NAME + " - Dormitory One" + icon_state = "dorm1" + +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2 + name = UNDERWATER_CASINO_NAME + " - Dormitory Two" + icon_state = "dorm2" + +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3 + name = UNDERWATER_CASINO_NAME + " - Dormitory Three" + icon_state = "dorm3" + +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4 + name = UNDERWATER_CASINO_NAME + " - Dormitory Four" + icon_state = "dorm3" + +/area/redgate/underwater_casino/indoors/lower/dorms/vip + name = UNDERWATER_CASINO_NAME + " - VIP Suite" + icon = 'icons/turf/areas.dmi' + icon_state = "Sleep" + +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen + name = UNDERWATER_CASINO_NAME + " - VIP Suite Kitchen" + icon_state = "kitchen" + +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath + name = UNDERWATER_CASINO_NAME + " - VIP Suite Bathroom" + icon_state = "toilet" + +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom + name = UNDERWATER_CASINO_NAME + " - VIP Suite Bedroom" + +/area/redgate/underwater_casino/indoors/lower/dorms/secret + name = UNDERWATER_CASINO_NAME + " - The Back Dorm" + icon = 'icons/turf/areas.dmi' + icon_state = "Sleep" + +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1 + name = UNDERWATER_CASINO_NAME + " - Private Game Room One" + icon = 'icons/turf/areas.dmi' + icon_state = "casino" + +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2 + name = UNDERWATER_CASINO_NAME + " - Private Game Room Two" + icon = 'icons/turf/areas.dmi' + icon_state = "casino2" + +/area/redgate/underwater_casino/indoors/lower/arcade + name = UNDERWATER_CASINO_NAME + " - Arcade" + icon = 'icons/turf/areas.dmi' + icon_state = "arcade" + +/area/redgate/underwater_casino/indoors/lower/boxing + name = UNDERWATER_CASINO_NAME + " - The Ring" + icon_state = "red" + +/area/redgate/underwater_casino/indoors/lower/security + name = UNDERWATER_CASINO_NAME + " - Security (Bottom Floor)" + icon = 'icons/turf/areas_vr.dmi' + icon_state = "security" + +/area/redgate/underwater_casino/indoors/lower/security/armory + name = UNDERWATER_CASINO_NAME + " - Armory" + icon_state = "armory" + +// Misc. areas (caves, secret buildings etc) +/area/redgate/underwater_casino/indoors/upper/secret + name = UNDERWATER_CASINO_NAME + " - ??? (Top Floor)" + +/area/redgate/underwater_casino/indoors/lower/secret + name = UNDERWATER_CASINO_NAME + " - ??? (Bottom Floor)" + +/area/redgate/underwater_casino/indoors/upper/secret/researchbase + name = UNDERWATER_CASINO_NAME + " - Secret Research Base" + icon = 'icons/turf/areas.dmi' + icon_state = "purple" + +/area/redgate/underwater_casino/indoors/upper/secret/cave + name = UNDERWATER_CASINO_NAME + " - Cave (Top Floor)" + sound_env = SOUND_ENVIRONMENT_CAVE + +/area/redgate/underwater_casino/indoors/lower/secret/cave + name = UNDERWATER_CASINO_NAME + " - Cave (Bottom Floor)" + sound_env = SOUND_ENVIRONMENT_CAVE + +/area/redgate/underwater_casino/indoors/upper/secret/piratebase + name = UNDERWATER_CASINO_NAME + " - Pirate Base (Top Floor)" + icon = 'icons/turf/areas.dmi' + icon_state = "red" + +/area/redgate/underwater_casino/indoors/lower/secret/piratebase + name = UNDERWATER_CASINO_NAME + " - Pirate Base (Bottom Floor)" + icon = 'icons/turf/areas.dmi' + icon_state = "red" + +/area/redgate/underwater_casino/indoors/upper/secret/piratebasetunnel + name = UNDERWATER_CASINO_NAME + " - Secret Tunnel (Top Floor)" + icon = 'icons/turf/areas.dmi' + icon_state = "red" + sound_env = TUNNEL_ENCLOSED + +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel + name = UNDERWATER_CASINO_NAME + " - Secret Tunnel (Bottom Floor)" + icon = 'icons/turf/areas.dmi' + icon_state = "red" + sound_env = TUNNEL_ENCLOSED + +/area/redgate/underwater_casino/indoors/upper/secret/biodome + name = UNDERWATER_CASINO_NAME + " - Biodome" + icon = 'icons/turf/areas.dmi' + icon_state = "green" + sound_env = SMALL_ENCLOSED + +// Outdoors areas + +/area/redgate/underwater_casino/outdoors + name = UNDERWATER_CASINO_NAME + " Exterior" + icon_state = "blublacir" + sound_env = SOUND_ENVIRONMENT_UNDERWATER diff --git a/maps/redgate/casino_canal/casino_canal_1.dmm b/maps/redgate/casino_canal/casino_canal_1.dmm new file mode 100644 index 00000000000..1399b394ace --- /dev/null +++ b/maps/redgate/casino_canal/casino_canal_1.dmm @@ -0,0 +1,26803 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/random/junk, +/turf/simulated/floor/water/underwater/indoors/rocks/vis_hide, +/area/redgate/underwater_casino/outdoors) +"ab" = ( +/turf/simulated/wall/tgmc/plain_redstripe_r, +/area/redgate/underwater_casino/indoors/lower/security) +"ac" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"ad" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"ae" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/boxing) +"af" = ( +/obj/effect/floor_decal/milspec/color/red/half, +/obj/machinery/light, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"ag" = ( +/turf/simulated/wall/tgmc/plain_redstripe_r, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"ah" = ( +/obj/structure/stairs/spawner/north, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"ai" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"aj" = ( +/obj/machinery/door/window/northright{ + pixel_y = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ak" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"al" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"am" = ( +/turf/simulated/wall/tgmc/window/redstripe_r, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"an" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ao" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ap" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"aq" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"ar" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"as" = ( +/obj/machinery/door/window/brigdoor/eastright, +/obj/effect/floor_decal/milspec/color/orange, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"at" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/machinery/light/small/neon/generic_red{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"au" = ( +/obj/structure/ghost_pod/ghost_activated/maint_lurker/redgate, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"av" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aw" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"ax" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ay" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"az" = ( +/obj/machinery/door/window/westleft{ + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aA" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"aB" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aC" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aD" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aE" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"aF" = ( +/obj/machinery/door/window/westleft{ + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aG" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/storage/fancy/candle_box, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aH" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aI" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aJ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aK" = ( +/obj/machinery/door/window/westleft{ + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aL" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aM" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aN" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"aO" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/space_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"aP" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/space_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aQ" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aS" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"aT" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/space_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aU" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aV" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aW" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"aX" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/space_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aY" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"aZ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"ba" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"bb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"bc" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "VIP Suite Bedroom"; + id_tag = "c_vipbedroom" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"bd" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"be" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bg" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bh" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bj" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bk" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"bl" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"bm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"bn" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"bo" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bp" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bq" = ( +/obj/structure/table/borosilicate, +/obj/random/drinksoft, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"br" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = 28; + pixel_y = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bs" = ( +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"bt" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"bu" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bv" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bw" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"bx" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"by" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/machinery/vending/cigarette{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"bz" = ( +/obj/machinery/washing_machine, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"bA" = ( +/obj/item/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"bB" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bC" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"bD" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"bE" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"bF" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bG" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bH" = ( +/obj/structure/table/rack/gun_rack/steel, +/obj/item/gun/energy/gun{ + pixel_y = 7 + }, +/obj/item/gun/energy/gun{ + pixel_y = -5 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"bI" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"bJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"bK" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/space_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bL" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bM" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bN" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"bP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"bQ" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bS" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"bT" = ( +/obj/structure/table/woodentable, +/obj/machinery/light, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bU" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bV" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bW" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/storage/fancy/candle_box, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"bX" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/storage/fancy/candle_box, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"bY" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"bZ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"ca" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"cb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cc" = ( +/obj/machinery/vending/security, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"cd" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"ce" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"cf" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"cg" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_dorm2"; + name = "Dorm 2 Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"ch" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ci" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"cj" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"ck" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"cl" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"cm" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"cn" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_dorm3"; + name = "Dorm 4 Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"co" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"cp" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"cq" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"cr" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/disposal/wall/cleaner{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"cs" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ct" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cu" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cv" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cw" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cx" = ( +/obj/machinery/light/small/neon/generic_yellow{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"cy" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cz" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/sign/directions/roomnum{ + pixel_y = -26; + dir = 4 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"cA" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"cB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cC" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"cD" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/machinery/light, +/obj/structure/sign/directions/roomnum{ + pixel_y = -26; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"cE" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cF" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"cG" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cH" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/golden, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cI" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"cJ" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/hall) +"cK" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/hall) +"cL" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/machinery/light, +/obj/structure/sign/directions/roomnum{ + pixel_y = -26; + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"cM" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"cN" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + dir = 4; + name = "Private Game Room 2"; + id_tag = "c_gameroom2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cQ" = ( +/turf/simulated/wall/tgmc/whitewall, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"cR" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"cS" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"cT" = ( +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"cU" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/disposal/wall/cleaner, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"cV" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4; + pixel_x = 9; + pixel_y = 7 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"cW" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"cX" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"cY" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/arcade) +"cZ" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/lower/arcade) +"da" = ( +/turf/simulated/wall/tgmc/whitewall, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"db" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/barback) +"dc" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/laundry) +"dd" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"de" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"df" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/medical{ + dir = 4; + req_access = null + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"dg" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"dh" = ( +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"di" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"dj" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dk" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/machinery/vending/coffee{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"dl" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"dm" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/wall/tgmc/darkwall{ + can_open = 1; + desc = "A huge chunk of metal used to separate rooms. There appears to be thin gaps along the borders." + }, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dn" = ( +/obj/machinery/computer/arcade/clawmachine, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"do" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"dp" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "The Back Dom"; + id_tag = "c_backdorm" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"dq" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dr" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"ds" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/maintenance/morestuff, +/obj/random/chips{ + pixel_x = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"du" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"dv" = ( +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"dw" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dx" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"dy" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/barback) +"dz" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/golden, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"dA" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dB" = ( +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dC" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"dD" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"dE" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"dF" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"dG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"dH" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"dI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"dJ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"dK" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + name = "VIP Bedroom Lock"; + id = "c_vipbedroom"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"dL" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"dM" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"dN" = ( +/obj/machinery/light, +/turf/simulated/floor/water/indoors{ + name = "bath water"; + desc = "The clean waters bubble gently." + }, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"dO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"dP" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"dQ" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/water/indoors{ + name = "bath water"; + desc = "The clean waters bubble gently." + }, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"dR" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"dS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"dT" = ( +/obj/structure/bed/chair/bay/comfy/black, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"dU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"dV" = ( +/obj/machinery/disposal/wall/cleaner{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"dW" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"dX" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"dY" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"dZ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"ea" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_dorm1"; + name = "Dorm 1 Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"eb" = ( +/obj/structure/disposalpipe/tagger{ + dir = 2; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ec" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ed" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ee" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ef" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/machinery/button/remote/airlock{ + dir = 4; + pixel_x = -23; + pixel_y = 4; + id = "c_vipbathroom"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 12; + pixel_x = -23; + dir = 4 + }, +/obj/structure/privacyswitch{ + pixel_y = 17; + pixel_x = -23; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"eg" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/flame/candle{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/storage/box/matches{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"eh" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"ei" = ( +/obj/machinery/vending/loadout/gadget, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"ej" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ek" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"el" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"em" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"en" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"eo" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards/casino, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"ep" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"eq" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"er" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"es" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"et" = ( +/obj/structure/railing, +/obj/structure/disposaloutlet{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"eu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"ev" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ew" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"ex" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/railing/grey, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ey" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/railing/grey, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ez" = ( +/obj/random/trash_pile, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"eA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"eB" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "Dorm 1"; + id_tag = "c_dorm1" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"eC" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "Dorm 2"; + id_tag = "c_dorm2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"eD" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "Dorm 3"; + id_tag = "c_dorm3" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"eE" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "Dorm 4"; + id_tag = "c_dorm4" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"eF" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + name = "Private Game Room 1"; + id_tag = "c_gameroom1" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"eG" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"eH" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"eI" = ( +/obj/structure/table/rack/steel, +/obj/item/gun/energy/sickshot{ + pixel_y = 9 + }, +/obj/item/gun/energy/sickshot, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"eJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"eK" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + dir = 4; + name = "VIP Suite"; + id_tag = "c_vipsuite" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"eL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"eM" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"eN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"eO" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"eP" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"eQ" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"eR" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"eS" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_vipsuite"; + name = "VIP Suite Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"eT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/laundry) +"eU" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"eV" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"eW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"eX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"eY" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"eZ" = ( +/obj/structure/bed/chair/bay/comfy/black, +/obj/structure/disposalpipe/tagger{ + dir = 4; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"fa" = ( +/obj/structure/bed/chair/bay/comfy/black, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"fb" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"fc" = ( +/obj/structure/table/steel, +/obj/item/disk/nifsoft/compliance{ + pixel_y = 3; + pixel_x = 16 + }, +/obj/machinery/light, +/obj/item/sleevemate{ + pixel_x = -2 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fd" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"fe" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"ff" = ( +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"fg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"fh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"fi" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"fj" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fk" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fl" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"fn" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"fo" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"fp" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fq" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fr" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fs" = ( +/obj/structure/disposaloutlet{ + dir = 8; + pixel_x = 7 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"ft" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/barback) +"fu" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fv" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fx" = ( +/turf/simulated/wall/tgmc/window/redstripe_r, +/area/redgate/underwater_casino/indoors/lower/security) +"fy" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + name = "Resleeving"; + sortType = "Resleeving" + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fz" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fA" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fB" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fD" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fE" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fF" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"fG" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"fH" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/machinery/door/airlock/angled_bay/vault{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"fI" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fJ" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"fK" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fL" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fM" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fN" = ( +/obj/structure/table/gamblingtable, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fO" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fQ" = ( +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fR" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"fS" = ( +/turf/simulated/floor/weird_things/dark, +/area/redgate/underwater_casino/outdoors) +"fT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fV" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 2; + name = "Resleeving"; + sortType = "Resleeving" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"fW" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"fX" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"fY" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/spacespice, +/obj/item/reagent_containers/food/condiment/spacespice, +/obj/item/reagent_containers/food/condiment/carton/sugar, +/obj/item/reagent_containers/food/condiment/carton/sugar, +/obj/item/reagent_containers/food/condiment/small/saltshaker, +/obj/item/reagent_containers/food/condiment/small/saltshaker, +/obj/item/reagent_containers/food/condiment/small/peppermill, +/obj/item/reagent_containers/food/condiment/small/peppermill, +/obj/random/donkpocketbox, +/obj/structure/closet/walllocker_double/kitchen/north, +/obj/item/storage/box/beakers{ + name = "box of measuring cups"; + pixel_x = 2; + pixel_y = 3; + starts_with = list(/obj/item/reagent_containers/glass/beaker/measuring_cup = 7) + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"fZ" = ( +/turf/simulated/wall/solidrock, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ga" = ( +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"gb" = ( +/obj/structure/disposalpipe/junction/yjunction, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"gc" = ( +/obj/structure/disposalpipe/tagger{ + dir = 4; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"gd" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/chips{ + pixel_x = -9 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"ge" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"gf" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/obj/random/chips{ + pixel_y = 13 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"gg" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"gh" = ( +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"gi" = ( +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"gj" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"gk" = ( +/mob/living/simple_mob/shadekin/yellow/retaliate/dark, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"gl" = ( +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"gm" = ( +/obj/structure/ghost_pod/ghost_activated/maint_lurker/redgate, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"gn" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/table/woodentable, +/obj/item/capture_crystal{ + pixel_y = 7 + }, +/obj/item/capture_crystal{ + pixel_y = 1 + }, +/obj/item/capture_crystal{ + pixel_y = -6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"go" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloor/corner2/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"gp" = ( +/obj/structure/stairs/spawner/west, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"gq" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gr" = ( +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gs" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gt" = ( +/obj/random/roguemineloot, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gu" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gv" = ( +/obj/structure/closet/bombcloset/double, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"gw" = ( +/turf/simulated/wall/tgmc/darkwall{ + can_open = 1; + desc = "A huge chunk of metal used to separate rooms. There appears to be thin gaps along the borders." + }, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gx" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gy" = ( +/obj/machinery/door/window/westleft, +/obj/machinery/light, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"gz" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/pirate, +/obj/random/humanoidremains{ + pixel_x = 11 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"gA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/ladder/up, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/boxing) +"gB" = ( +/obj/machinery/light/small/torch, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gC" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gD" = ( +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/outdoors) +"gE" = ( +/obj/structure/closet/athletic_mixed, +/obj/random/unidentified_medicine/drug_den, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"gF" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gG" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gH" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/water/deep/indoors, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gI" = ( +/turf/simulated/wall/tgmc/whitewall, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"gJ" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gK" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"gL" = ( +/turf/simulated/wall/solidrock/mossyrockpoi, +/area/redgate/underwater_casino/outdoors) +"gM" = ( +/turf/simulated/wall/tgmc/chigusa, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gN" = ( +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"gO" = ( +/turf/simulated/wall/tgmc/chigusa, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"gP" = ( +/turf/simulated/wall/tgmc/chigusa/deco2, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"gQ" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gR" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gS" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gT" = ( +/obj/machinery/light/small/torch{ + dir = 4 + }, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gU" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"gV" = ( +/obj/random/junk, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gW" = ( +/turf/simulated/floor/water/indoors{ + name = "warm pool" + }, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gX" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"gY" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"gZ" = ( +/turf/simulated/wall/tgmc/darkwall{ + can_open = 1; + desc = "A huge chunk of metal used to separate rooms. There appears to be thin gaps along the borders." + }, +/area/redgate/underwater_casino/indoors/lower/barback) +"ha" = ( +/turf/simulated/floor/water/deep/indoors, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/storage/fancy/candle_box, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"hc" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hd" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"he" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"hf" = ( +/obj/random/crate, +/obj/random/contraband/nofail, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hg" = ( +/obj/structure/table/glass, +/obj/item/storage/firstaid/regular{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"hh" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"hi" = ( +/obj/machinery/light/small/torch{ + dir = 8 + }, +/turf/simulated/floor/water/deep/indoors, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hj" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hk" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"hl" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hm" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hn" = ( +/obj/random/fishing_junk{ + pixel_x = 7 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ho" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/item/clothing/gloves/arm_guard/bulletproof, +/obj/item/clothing/shoes/leg_guard/bulletproof, +/obj/item/clothing/suit/armor/bulletproof/alt, +/obj/item/clothing/head/helmet/bulletproof, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"hp" = ( +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"hq" = ( +/obj/item/material/fishing_rod/modern/cheap, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hr" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"hs" = ( +/obj/random/fishing_junk{ + pixel_y = 9 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ht" = ( +/obj/random/fishing_junk, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hu" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"hv" = ( +/obj/structure/table/woodentable, +/obj/random/contraband/nofail, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hw" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hx" = ( +/obj/structure/table/woodentable, +/obj/item/material/sword/sabre, +/obj/random/coin{ + pixel_y = 8; + pixel_x = -5 + }, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hy" = ( +/obj/structure/table/rack/gun_rack/steel, +/obj/item/gun/energy/netgun{ + pixel_y = 7 + }, +/obj/item/gun/energy/netgun{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"hz" = ( +/obj/structure/simple_door/hardwood, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hA" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hB" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hC" = ( +/turf/simulated/wall/solidrock, +/area/redgate/underwater_casino/outdoors) +"hD" = ( +/obj/structure/sign/flag/pirate/left{ + pixel_y = 30 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hE" = ( +/obj/structure/catwalk, +/obj/random/junk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"hF" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"hG" = ( +/obj/structure/sign/flag/pirate/right{ + pixel_y = 30 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hH" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hI" = ( +/obj/structure/table/woodentable, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/random/contraband/nofail, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hK" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hL" = ( +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"hM" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"hN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hO" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/item/gun/energy/zip, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hQ" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hR" = ( +/obj/structure/ghost_pod/ghost_activated/maint_lurker/redgate, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hT" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/table/woodentable, +/obj/random/maintenance/foodstuff, +/obj/random/drinkbottle{ + pixel_y = -11; + pixel_x = -6 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hU" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hV" = ( +/turf/simulated/floor/water/indoors{ + name = "bath water"; + desc = "The clean waters bubble gently." + }, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"hW" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/obj/random/chips, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"hX" = ( +/obj/structure/table/standard, +/obj/random/nukies_can_legal, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"hY" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"hZ" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 5 + }, +/obj/structure/window/reinforced{ + dir = 4; + pixel_x = 4 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ia" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/bottle/rum{ + pixel_y = 9; + pixel_x = -5 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ib" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/piratedouble, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ic" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/head/hgpiratecap, +/obj/item/clothing/suit/hgpirate, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"id" = ( +/obj/random/chips{ + pixel_y = 10 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"ie" = ( +/obj/random/roguemineloot, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"if" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ig" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"ih" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + fill_color = "#e0503a"; + stripe_color = "#3c0d06" + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ii" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/pirate, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"ij" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/suit/pirate, +/obj/item/clothing/shoes/boots/tactical{ + pixel_y = -10 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"ik" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pirate, +/obj/item/clothing/shoes/boots/tactical{ + pixel_y = -10 + }, +/obj/item/clothing/head/pirate, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"il" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"im" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/medical{ + dir = 4; + req_access = null + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"in" = ( +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"io" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + fill_color = "#e0503a"; + stripe_color = "#3c0d06"; + dir = 4 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"ip" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"iq" = ( +/obj/structure/table/woodentable, +/obj/random/coin, +/obj/random/cigarettes{ + pixel_y = 15; + pixel_x = 5 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"ir" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/pirate, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"is" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pirate, +/obj/item/clothing/shoes/boots/tactical{ + pixel_y = -10 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"it" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/shoes/boots/tactical{ + pixel_y = -10 + }, +/obj/item/clothing/head/pirate, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"iu" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"iv" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/random/maintenance/security, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"iw" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"ix" = ( +/obj/random/maintenance/medical, +/obj/random/maintenance/security{ + pixel_y = -15 + }, +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/secret/piratebase) +"iy" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iz" = ( +/turf/simulated/floor/water/underwater/indoors/rocks/vis_hide, +/area/redgate/underwater_casino/outdoors) +"iA" = ( +/obj/machinery/vending/loadout/accessory, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"iB" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater/indoors/rocks/vis_hide, +/area/redgate/underwater_casino/outdoors) +"iC" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iD" = ( +/obj/structure/flora/tree/bigtree, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iE" = ( +/obj/machinery/chem_master/condimaster, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"iF" = ( +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"iG" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iH" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iI" = ( +/obj/structure/flora/bboulder2, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iJ" = ( +/obj/random/junk, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"iK" = ( +/obj/random/awayloot/nofail, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iL" = ( +/obj/random/trash, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"iM" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"iN" = ( +/obj/random/trash, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"iO" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"iP" = ( +/obj/random/maintenance, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"iQ" = ( +/obj/random/forgotten_tram, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"iR" = ( +/obj/structure/flora/bboulder1, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iS" = ( +/obj/random/maintenance, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"iT" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iU" = ( +/mob/living/simple_mob/shadekin/purple, +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/outdoors/grass/heavy, +/area/redgate/underwater_casino/outdoors) +"iV" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/outdoors) +"iW" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"iX" = ( +/obj/random/maintenance/morestuff, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"iY" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"iZ" = ( +/obj/random/maintenance, +/obj/random/trash, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"ja" = ( +/obj/random/multiple/random_size_crate/no_weapons, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jb" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"jc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "c_privateroom2_win" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "c_privateroom2_win" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "c_privateroom2_win" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"jd" = ( +/obj/random/multiple/underdark/treasure, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"je" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"jf" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"jg" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"jh" = ( +/mob/living/simple_mob/vore/alienanimals/skeleton/alt{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"ji" = ( +/obj/structure/bed, +/obj/item/bedsheet/pirate, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"jj" = ( +/obj/machinery/light/small/torch, +/obj/random/maintenance, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"jk" = ( +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"jl" = ( +/obj/random/maintenance, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"jm" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/obj/random/maintenance, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"jn" = ( +/obj/random/maintenance/misc, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/lower/secret/piratebasetunnel) +"jp" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"jG" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"jM" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"jP" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"kk" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 6 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"km" = ( +/obj/machinery/light/floortube, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"kp" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"ks" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/hosdouble, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"ku" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"kw" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"kH" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"kI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"kL" = ( +/obj/machinery/smartfridge/drinks, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"lf" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ln" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"lt" = ( +/obj/structure/stairs/spawner/north, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"lu" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"lw" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"ly" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"lz" = ( +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/alarm/alarms_hidden{ + dir = 4; + pixel_x = -20; + pixel_y = 18 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"lE" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"lG" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"lO" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/structure/table/bench/standard, +/obj/structure/sign/painting/public/east, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"lW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"lZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"mb" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"mo" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"mp" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"mq" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/item/storage/toolbox/mechanical, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"mr" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"mG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"nh" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"nv" = ( +/obj/machinery/computer/transhuman/resleeving, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"nB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"nL" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"nN" = ( +/obj/structure/table/borosilicate, +/obj/random/coin, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"nO" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"nS" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"nY" = ( +/mob/living/simple_mob/animal/passive/fish/koi, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"oc" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/structure/sign/painting/public/west, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"oo" = ( +/obj/structure/dummystairs{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"or" = ( +/obj/structure/table/rack/steel, +/obj/item/gun/projectile/shotgun/doublebarrel/flare, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"os" = ( +/obj/structure/flora/pottedplant/subterranean, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"ox" = ( +/obj/machinery/light/small/neon/generic_pink{ + dir = 8; + pixel_x = 25 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"oF" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"oP" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"pf" = ( +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"pi" = ( +/obj/machinery/vending/nukie, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"pl" = ( +/obj/structure/flora/pottedplant/large, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"pn" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"px" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"pz" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/flame/candle{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/storage/box/matches{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"pM" = ( +/obj/structure/railing, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"pN" = ( +/obj/structure/flora/pottedplant/aquatic, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"pR" = ( +/obj/machinery/door/window/brigdoor/westleft, +/obj/effect/floor_decal/milspec/color/orange, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"qc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"qf" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"qp" = ( +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"qq" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 8 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"qr" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"qt" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/techmaint, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"qv" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower) +"qx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"qD" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"qF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"re" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"rn" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"ru" = ( +/obj/structure/bed/chair/bay{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"rw" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"rz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"rG" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"rH" = ( +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"rI" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"rJ" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"rO" = ( +/obj/structure/closet/secure_closet/brig, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"rY" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"rZ" = ( +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"sj" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"sm" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"sn" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/bottle/champagne, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"sq" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"sw" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"sE" = ( +/obj/structure/fitness/boxing_ropes, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"sK" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/flame/candle{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/storage/box/matches{ + pixel_x = -4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"sL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"sM" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"sN" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"sT" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = -23; + pixel_x = -2; + dir = 1; + id = "c_backdorm"; + specialfunctions = 4; + name = "Back Dorm Lock" + }, +/obj/machinery/light_switch{ + pixel_y = -22; + pixel_x = 6; + dir = 1 + }, +/obj/structure/privacyswitch{ + pixel_y = -22; + pixel_x = 11; + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"sW" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/orange, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"sX" = ( +/obj/structure/closet/cabinet, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"tc" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"td" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"tl" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"tt" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"ty" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/cedouble, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"tA" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot, +/obj/item/clothing/gloves/arm_guard/riot, +/obj/item/clothing/shoes/leg_guard/riot, +/obj/item/clothing/suit/armor/riot/alt, +/obj/item/clothing/head/helmet/riot, +/obj/item/shield/riot, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"tE" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"tL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"tN" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"tQ" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"tZ" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"ua" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker_double/casino/south, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/storage/pill_bottle/dice_nerd{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/deck/cards/casino/triple{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"ul" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"um" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/vending/loadout/costume, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"un" = ( +/obj/structure/dummystairs{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"up" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker_double/casino/south, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/storage/pill_bottle/dice_nerd{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/deck/cards/casino/triple{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ut" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ux" = ( +/obj/structure/flora/underwater/seaweed1, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"uy" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = 28; + pixel_y = 9 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"uR" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"uT" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66"; + dir = 4; + name = "VIP Suite Bathroom"; + id_tag = "c_vipbathroom" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"uX" = ( +/obj/machinery/vending/loadout/loadout_misc, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"vg" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"vh" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"vl" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"vq" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 9 + }, +/obj/structure/sign/directions/roomnum{ + pixel_y = -26 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"vA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"vC" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"vD" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"vF" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/lower/laundry) +"vJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"vN" = ( +/obj/structure/table/fancyblack, +/obj/item/flame/candle{ + pixel_y = 2; + pixel_x = -7 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"vX" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"wf" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"wg" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"wh" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"wq" = ( +/obj/effect/floor_decal/borderfloorblack/full, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"wA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"wF" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"wS" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 20 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 29 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 38 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"wT" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"wU" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/borderfloor/corner2/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"xa" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/obj/structure/ghost_pod/ghost_activated/maint_lurker/redgate, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"xf" = ( +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/lower/barback) +"xu" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"xH" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"xJ" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/cell/device/weapon{ + pixel_y = 5; + pixel_x = -7 + }, +/obj/item/cell/device/weapon{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/cell/device/weapon{ + pixel_y = -6; + pixel_x = -7 + }, +/obj/item/cell/device/weapon{ + pixel_y = -6; + pixel_x = 4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"xP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"xT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"xX" = ( +/obj/machinery/clonepod/transhuman, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"xY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 10 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"xZ" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"yf" = ( +/obj/effect/fake_sun{ + do_sun = 0; + do_weather = 1; + weather_visuals_icon_state = "storm" + }, +/turf/simulated/wall/solidrock, +/area/redgate/underwater_casino/outdoors) +"yl" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"yn" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"yp" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"yr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/disposalpipe/tagger{ + dir = 4; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"yv" = ( +/obj/machinery/vending/fitness, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"yy" = ( +/obj/machinery/vending/loadout/uniform, +/turf/simulated/floor/tiled/techmaint, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"yA" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"yB" = ( +/obj/machinery/computer/arcade/orion_trail{ + dir = 4 + }, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"yL" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"yN" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -5; + pixel_y = 15; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 6; + pixel_y = 15; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -5; + pixel_y = 8; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 6; + pixel_y = 8; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -5; + pixel_y = 1; + icon_state = "bottle-1" + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"yO" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"yV" = ( +/obj/structure/table/standard, +/obj/random/coin, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"zb" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/contraband, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"ze" = ( +/obj/structure/sign/poster{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"zf" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"zn" = ( +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"zo" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"zx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"zy" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"zA" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"zB" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 9 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"zX" = ( +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Ae" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"As" = ( +/obj/structure/fitness/boxing_ropes/turnbuckle{ + dir = 4 + }, +/obj/structure/fitness/boxing_ropes/bottom, +/turf/simulated/fitness, +/area/redgate/underwater_casino/indoors/lower/boxing) +"At" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Ay" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"AF" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/red, +/obj/random/maintenance/security, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"AQ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"AX" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"AY" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"AZ" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/maintenance/morestuff, +/obj/random/chips, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Bd" = ( +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Bl" = ( +/obj/structure/bed/chair/bay/comfy/black, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Bm" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/rddouble, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"Bu" = ( +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/barback) +"Bw" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"By" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Bz" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 10 + }, +/obj/machinery/light/small/neon/generic_yellow{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"BM" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards/casino, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"BX" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Cl" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/storage/fancy/candle_box, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Cy" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"CA" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/arcade) +"CM" = ( +/obj/machinery/door/window/westleft, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"CO" = ( +/obj/structure/bed/chair/sofa/corp, +/obj/machinery/light/small/neon/looktoucheat{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"CQ" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"CX" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 7 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"CY" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = -4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Da" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Dc" = ( +/obj/structure/closet/boxinggloves, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Dm" = ( +/obj/structure/ladder/up, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Ds" = ( +/obj/machinery/door/window/westleft{ + pixel_x = -4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Dw" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/flora/pottedplant/orientaltree{ + pixel_y = 15; + pixel_x = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"DB" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"DE" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"DG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"DH" = ( +/obj/structure/table/reinforced, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"DN" = ( +/obj/machinery/vending/loadout/clothing, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"DT" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"DV" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Ef" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"Ei" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/chips{ + pixel_x = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Ej" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"Em" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"En" = ( +/obj/structure/bed/chair/bay/comfy/black, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Er" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/railing/grey{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Et" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Ez" = ( +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"EB" = ( +/obj/effect/floor_decal/milspec/color/orange/half, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"EI" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"ER" = ( +/obj/machinery/clonepod/transhuman, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"EX" = ( +/obj/structure/bed/chair/bay{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"EZ" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"Fq" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Fx" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"FB" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"FP" = ( +/obj/structure/table/standard, +/obj/random/mech_toy, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"FS" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/obj/structure/table/bench/steel, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"Ga" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Gh" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"Gj" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/food/drinks/metaglass{ + pixel_y = 8; + pixel_x = 5 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/shotglass{ + pixel_x = -3 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Go" = ( +/obj/structure/flora/underwater/plant3, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Gz" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"GB" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"GC" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/flora/pottedplant/orientaltree{ + pixel_y = 15; + pixel_x = 9 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"GD" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"Ha" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Hk" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Hm" = ( +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Ho" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 11; + pixel_y = 5 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Hy" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"HJ" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"HQ" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"HV" = ( +/obj/structure/table/steel, +/obj/random/contraband/nofail, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"HW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"If" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Ii" = ( +/obj/structure/stairs/spawner/north, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Il" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_gameroom2"; + name = "Private Game Room 2 Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/button/windowtint{ + pixel_y = 28; + pixel_x = -9; + id = "c_privateroom2_win" + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"In" = ( +/obj/structure/table/rack/gun_rack/steel, +/obj/item/gun/energy/ionrifle/pistol{ + pixel_y = 7 + }, +/obj/item/gun/energy/ionrifle/pistol{ + pixel_y = -4 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"Iy" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall/cleaner, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"IC" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"IE" = ( +/obj/structure/table/glass, +/obj/random/soap{ + pixel_x = 9; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"IJ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"IZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/pottedplant/largebush, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Jc" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/effect/floor_decal/corner/white/diagonal{ + dir = 4 + }, +/obj/machinery/vending/cola/soft{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Je" = ( +/obj/structure/table/rack/steel, +/obj/item/handcuffs, +/obj/item/handcuffs, +/obj/item/handcuffs/legcuffs, +/obj/item/handcuffs/legcuffs, +/obj/item/storage/box/handcuffs{ + pixel_x = 1; + pixel_y = 11 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"Jo" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 4 + }, +/turf/simulated/fitness, +/area/redgate/underwater_casino/indoors/lower/boxing) +"JE" = ( +/obj/machinery/transhuman/autoresleever, +/turf/simulated/floor/tiled/techmaint, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"JI" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/trash_pile, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"JN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"JO" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_dorm4"; + name = "Dorm 3 Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"Kc" = ( +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Kd" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Kf" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Ks" = ( +/obj/machinery/media/jukebox/hacked, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"KE" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 10 + }, +/obj/structure/table/bench/steel, +/obj/machinery/light, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security) +"KH" = ( +/obj/structure/table/rack/steel, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/obj/item/clothing/gloves/arm_guard/laserproof, +/obj/item/clothing/shoes/leg_guard/laserproof, +/obj/item/clothing/suit/armor/laserproof, +/obj/item/clothing/head/helmet/laserproof, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"KO" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"KT" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"KZ" = ( +/obj/machinery/light/small/neon/generic_red{ + pixel_y = 25; + pixel_x = -13 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Lc" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Lm" = ( +/obj/structure/flora/pottedplant/minitree{ + pixel_y = 14 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Lp" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Lt" = ( +/obj/structure/flora/underwater/grass1, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Lv" = ( +/obj/machinery/door/window/westleft, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Lz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"LE" = ( +/obj/structure/table/glass, +/obj/machinery/light{ + dir = 1 + }, +/obj/item/multitool{ + pixel_x = -8 + }, +/obj/random/chips{ + pixel_y = 2; + pixel_x = 8 + }, +/obj/random/chips{ + pixel_y = 8; + pixel_x = 17 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"LG" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/flame/candle{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/storage/box/matches{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"LN" = ( +/obj/machinery/vending/altevian, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"LO" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"LR" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/railing/grey{ + dir = 8 + }, +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"LV" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/structure/sign/painting/public/north, +/obj/structure/disposalpipe/tagger{ + dir = 4; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Mc" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/hosdouble, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Mi" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Mr" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Mt" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Mz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"MA" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"MC" = ( +/mob/living/simple_mob/animal/passive/fish/perch, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"MF" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/structure/table/standard, +/obj/item/storage/laundry_basket, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"MI" = ( +/obj/structure/table/reinforced, +/obj/item/material/kitchen/rollingpin{ + pixel_y = 23; + pixel_x = 3 + }, +/obj/item/reagent_containers/food/condiment/enzyme{ + layer = 5; + pixel_x = -9; + pixel_y = 22 + }, +/obj/item/material/knife/butch{ + pixel_y = 15; + pixel_x = 4 + }, +/obj/item/book/manual/chef_recipes{ + pixel_x = -9; + pixel_y = -3 + }, +/obj/item/book/manual/cook_guide{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"ML" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"MP" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance/clean, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"MQ" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"MZ" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack/corner, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"Na" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Nq" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Nu" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Nv" = ( +/obj/effect/floor_decal/spline/plain, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Nz" = ( +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"NB" = ( +/obj/structure/flora/underwater, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"NH" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"NK" = ( +/obj/structure/table/rack/shelf/steel, +/obj/item/gun/energy/laser{ + pixel_x = -1; + pixel_y = 2 + }, +/obj/item/gun/energy/laser{ + pixel_x = -1; + pixel_y = -11 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"Ok" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Oo" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Oq" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/purple/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Oz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"OD" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/flame/candle{ + pixel_y = 5; + pixel_x = 6 + }, +/obj/item/storage/box/matches{ + pixel_x = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"OJ" = ( +/obj/effect/floor_decal/rust, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"OL" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"OR" = ( +/obj/structure/table/borosilicate, +/obj/random/fromList/sexy_costumes, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Pb" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Ph" = ( +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"Pl" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Pr" = ( +/obj/structure/bed/double/padded, +/obj/item/bedsheet/hopdouble, +/obj/structure/curtain/black, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm3) +"Pu" = ( +/obj/machinery/microwave{ + pixel_y = 6 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Pw" = ( +/obj/structure/railing/grey{ + dir = 1 + }, +/turf/simulated/floor/water/indoors{ + name = "bath water"; + desc = "The clean waters bubble gently." + }, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"Px" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Pz" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/blue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/structure/sign/painting/public/south, +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"PT" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Qf" = ( +/obj/structure/fitness/boxing_ropes/bottom, +/obj/structure/fitness/boxing_ropes/turnbuckle{ + dir = 8 + }, +/turf/simulated/fitness, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Qp" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/golden, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Qq" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"Qy" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"QG" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"QU" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/railing/grey, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"QX" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Rc" = ( +/obj/structure/table/glass, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -5; + pixel_y = 15; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 6; + pixel_y = 15; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -5; + pixel_y = 8; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = 6; + pixel_y = 8; + icon_state = "bottle-1" + }, +/obj/item/reagent_containers/glass/bottle/biomass{ + pixel_x = -5; + pixel_y = 1; + icon_state = "bottle-1" + }, +/turf/simulated/floor/tiled/eris/white/cargo, +/area/redgate/underwater_casino/indoors/lower/resleeving) +"Rd" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Re" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"Rh" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker_double/casino/south, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 12; + pixel_x = -7 + }, +/obj/item/storage/pill_bottle/dice_nerd{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/item/deck/cards/casino/triple{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Rl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "c_privateroom1_win" + }, +/obj/structure/window/reinforced/polarized{ + id = "c_privateroom1_win" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "c_privateroom1_win" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Rn" = ( +/obj/structure/table/gamblingtable, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"Rz" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/space_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"RA" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"RC" = ( +/obj/machinery/computer/arcade/clawmachine, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"RF" = ( +/turf/simulated/fitness, +/area/redgate/underwater_casino/indoors/lower/boxing) +"RM" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"RR" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"RX" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/sif, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom2) +"RZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"Sd" = ( +/obj/structure/fitness/boxing_ropes, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Sg" = ( +/obj/structure/fitness/boxing_ropes, +/obj/structure/fitness/boxing_ropes/turnbuckle{ + dir = 4 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Sm" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Sn" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Sv" = ( +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"SG" = ( +/obj/machinery/rnd/production/protolathe/department/security, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"SM" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/machinery/light{ + dir = 4 + }, +/obj/fruitspawner/tomato, +/obj/fruitspawner/tomato, +/obj/fruitspawner/tomato, +/obj/fruitspawner/tomato, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/obj/fruitspawner/apple, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"SP" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Te" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards/casino, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Tg" = ( +/obj/structure/fitness/boxing_ropes{ + dir = 8 + }, +/turf/simulated/fitness, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Tl" = ( +/obj/structure/dancepole{ + pixel_y = 6 + }, +/obj/effect/floor_decal/spline/fancy/wood/three_quarters, +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"To" = ( +/obj/structure/bed/chair/bay{ + dir = 4 + }, +/obj/structure/sign/poster{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Ts" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"TA" = ( +/obj/structure/table/woodentable, +/obj/machinery/light, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"TD" = ( +/turf/simulated/wall/tgmc/window/white/reinf, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"TK" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"TL" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"TU" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"TW" = ( +/obj/structure/disposaloutlet{ + dir = 1; + pixel_y = -4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"TY" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/random/mainttoyloot, +/obj/effect/floor_decal/rust, +/obj/random/chips{ + pixel_x = -5 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Ua" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Ue" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Uk" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"Ul" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bedroom) +"Un" = ( +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/structure/curtain/open/shower/medical, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals10{ + dir = 5 + }, +/obj/machinery/door/window/southleft{ + pixel_y = -2 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"Uy" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"UC" = ( +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/barback) +"UF" = ( +/obj/structure/fitness/boxing_ropes/bottom, +/turf/simulated/fitness, +/area/redgate/underwater_casino/indoors/lower/boxing) +"UO" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Vg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm4) +"Vj" = ( +/obj/structure/fitness/boxing_ropes, +/obj/structure/fitness/boxing_ropes/turnbuckle{ + dir = 8 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"Vk" = ( +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Vl" = ( +/obj/structure/table/rack, +/obj/item/towel/random{ + pixel_y = 8 + }, +/obj/item/towel/random{ + pixel_y = 2 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Vr" = ( +/obj/structure/table/woodentable, +/obj/machinery/light, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Vt" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Vx" = ( +/obj/machinery/chemical_dispenser/bar_alc/full{ + pixel_y = 5 + }, +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/eris/steel/techfloor_grid, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"VB" = ( +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"VO" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"VY" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/autoresleeving) +"Wh" = ( +/obj/machinery/gear_painter, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Wi" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 1 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Wl" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/tile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Wn" = ( +/obj/structure/flora/underwater/seaweed3, +/obj/machinery/light, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/indoors/lower/dorms/vip) +"Wq" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"Wu" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Wv" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"WZ" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Xf" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"Xk" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Xm" = ( +/obj/machinery/button/remote/airlock{ + pixel_y = 28; + pixel_x = -2; + id = "c_gameroom1"; + name = "Private Game Room 1 Lock"; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + pixel_y = 28; + pixel_x = 6 + }, +/obj/structure/privacyswitch{ + pixel_y = 28; + pixel_x = 11 + }, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/machinery/button/windowtint{ + pixel_y = 28; + pixel_x = -9; + id = "c_privateroom1_win" + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Xq" = ( +/obj/machinery/disposal/wall/cleaner, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"XA" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 5 + }, +/obj/structure/closet/secure_closet/brig, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"XC" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/lower/boxing) +"XE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"XF" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"XH" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"XN" = ( +/obj/structure/sink{ + pixel_y = 20 + }, +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"XV" = ( +/obj/machinery/vending/loadout/overwear, +/obj/effect/floor_decal/corner/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"XY" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/wood/alt/panel, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm1) +"Yf" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/red_fox{ + pixel_y = 15 + }, +/obj/item/toy/plushie/mouse{ + pixel_y = 8 + }, +/turf/simulated/floor/carpet/retro, +/area/redgate/underwater_casino/indoors/lower/arcade) +"Yi" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/dorm2) +"Yp" = ( +/obj/machinery/appliance/mixer/cereal, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/kitchen) +"Yt" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"Yv" = ( +/obj/structure/catwalk, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/lower/maintenance) +"YE" = ( +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/laundry) +"YN" = ( +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 9 + }, +/obj/structure/toilet/prison{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"Zb" = ( +/obj/effect/floor_decal/milspec/color/black, +/obj/effect/floor_decal/borderfloorblack/corner{ + dir = 1 + }, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/lower/security/armory) +"Zc" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Zj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors/lower/dorms/privategameroom1) +"Zm" = ( +/obj/machinery/door/airlock/angled_bay/double/glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/lower/laundry) +"Zn" = ( +/obj/structure/toilet/prison{ + dir = 8 + }, +/obj/effect/floor_decal/milspec/color/orange/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors/lower/security) +"Zq" = ( +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"Zt" = ( +/obj/structure/bed/chair/bay/comfy/black{ + dir = 8 + }, +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"ZE" = ( +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/lower/dorms/secret) +"ZL" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 13 + }, +/obj/item/soap/diamond_soap, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/lower/dorms/vip/bath) +"ZN" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/lower/hall) +"ZV" = ( +/obj/machinery/door/blast/angled, +/turf/simulated/floor/tiled/milspec, +/area/redgate/underwater_casino/indoors/lower/security/armory) + +(1,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +yf +"} +(2,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(3,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(4,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(5,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +ja +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(6,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(7,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(8,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(9,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gL +gL +gL +gL +gL +gL +fS +hp +iy +iy +iy +iy +iy +hp +fS +gL +gL +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(10,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gL +gL +gL +gL +fS +hp +hp +hp +iy +iy +hp +iy +iy +iy +iy +hp +hp +fS +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(11,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +gi +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gL +gL +gL +fS +hp +iy +gk +iy +iy +iy +hp +hp +iy +iy +iy +iy +iy +hp +hp +hp +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(12,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +jd +gi +iO +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +iV +iV +gD +fS +fS +fS +hC +hC +gL +gL +iy +iy +iy +iy +iy +iy +iy +hp +iI +hp +iy +iy +iy +iy +iy +iD +hp +hp +fS +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(13,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iN +iF +iF +iF +iF +gi +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +gD +iV +iV +fS +iV +iV +iV +fS +fS +fS +fS +hC +gL +iy +iy +iy +iD +hp +iy +hp +iy +iy +iy +iy +iy +iC +iy +iy +hp +iy +hp +hp +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(14,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +gi +iF +iF +iF +iF +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +iV +iV +iV +iV +hC +hC +hC +hC +hC +hC +fS +fS +fS +hC +gL +iy +iy +iy +iH +iy +iy +iy +iy +iy +iy +hp +hp +iy +iy +iy +iy +iH +iy +iy +hp +hp +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(15,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iO +gi +iF +gi +gi +iF +iF +iF +iF +hC +hC +hC +iF +iF +iF +hC +hC +hC +gD +iV +hC +hC +hC +hC +hC +hC +hC +hC +fS +fS +hC +hC +hC +hC +gL +iy +iy +iy +iy +iG +iy +iy +hp +hp +hp +hp +hp +hp +iy +iy +iy +iy +iy +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(16,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +iQ +gi +gi +gi +iF +iF +iF +hC +hC +iF +iF +hC +iF +hC +hC +hC +gD +hC +hC +hC +hC +hC +hC +hC +hC +fS +fS +hC +hC +hC +hC +hC +gL +gL +iy +iy +iy +iy +iy +hp +hp +hp +hp +hp +hp +hp +iy +iy +iy +iy +iy +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(17,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +gi +iF +iF +iF +gi +iF +hC +iF +iF +hC +hC +iF +hC +hC +iV +fS +hC +hC +hC +hC +hC +hC +hC +fS +fS +fS +hC +hC +hC +hC +hC +hC +hp +iy +iC +iy +hp +iy +iy +hp +hp +iD +iK +hp +hp +gk +iy +iy +iC +iy +iy +hp +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(18,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +iF +iF +iF +iF +iF +iF +iF +hC +hC +hC +iF +hC +hC +iV +hC +hC +hC +hC +hC +hC +hC +hC +fS +hC +hC +hC +fS +hC +hC +hC +hC +iy +iy +iy +iy +iy +iy +iy +hp +hp +hp +hp +hp +iy +iy +iy +iy +iy +iy +iy +hp +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(19,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +gi +iF +iF +iF +hC +hC +hC +iF +hC +hC +iV +hC +hC +hC +hC +hC +hC +hC +hC +fS +hC +fS +fS +fS +hC +hC +hC +iy +iy +iy +iR +iy +iy +iy +iy +hp +hp +hp +iy +hp +iy +iy +iy +iG +iy +iy +iy +hp +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(20,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +iF +iF +iF +iF +iF +gi +hC +hC +iF +hC +hC +iV +iV +hC +hC +iF +iF +hC +hC +hC +fS +fS +fS +fS +hC +hC +hC +iG +iy +iy +iy +iy +iy +iC +iy +iy +hp +iy +iy +iy +iy +hp +hp +iy +iy +iy +iy +iy +hp +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(21,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +iF +iF +iF +gi +hC +hC +iF +iF +hC +iV +iV +hC +iF +iF +iF +iF +hC +hC +hC +fS +fS +fS +gL +hp +iy +hp +iy +iy +hp +hp +iy +iy +iy +iy +iy +iy +iH +iy +iy +iy +iy +iy +iy +iy +iy +iy +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(22,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +iF +hC +hC +iV +fS +iF +iF +iF +iF +hC +hC +hC +hC +fS +fS +gL +hp +iy +iy +iC +iT +hp +iy +iy +iy +hp +iy +iy +iy +iy +iy +iy +iy +iC +iy +iy +iD +iy +iy +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(23,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iO +iF +iF +hC +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +iF +iF +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +fS +fS +hC +gL +iy +iy +iy +iy +iy +hp +iG +iy +iy +hp +iy +iy +iy +iy +hp +iy +iI +iy +iy +iy +iy +hp +hp +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +"} +(24,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +iN +iF +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +iF +hC +hC +hC +hC +iF +iF +hC +hC +hC +fS +fS +gL +gL +fS +iy +iy +iy +iy +hp +iy +hp +iy +iy +iy +iD +iy +iC +iy +iy +iy +iy +iy +iy +hp +hp +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(25,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iQ +gi +gi +iF +iF +hC +hC +hC +hC +iY +iF +iF +hC +hC +iF +hC +hC +hC +iF +iF +hC +hC +iS +hC +fS +fS +hC +fS +fS +hp +iy +iy +iU +iy +hp +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +iy +gL +gL +gL +gL +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(26,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +iF +iF +iF +hC +hC +hC +iF +iF +hC +hC +iF +iF +iF +iF +iF +hC +hC +hC +iF +hC +fS +fS +fS +fS +fS +hp +iy +iy +iy +iy +iy +iy +iy +iH +iy +iy +iy +iy +iy +iy +iy +iy +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(27,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +fS +fS +fS +gL +hp +hp +iy +iy +iy +iy +iy +iy +iy +hp +iy +iG +iy +iy +iy +hp +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(28,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +iF +iN +hC +hC +hC +hC +hC +gL +hp +hp +iy +iy +iy +iy +iC +iy +iy +iy +iy +iy +iy +iy +hp +hp +hp +hp +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(29,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +gi +iF +iF +hC +hC +hC +hC +hC +hC +iS +iF +iF +hC +hC +hC +hC +hC +gL +gL +hp +hp +hp +iy +iD +iy +iy +iy +iy +iy +iy +iy +iy +hp +hp +hp +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(30,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +jb +iF +iF +hC +hC +hC +hC +iP +gi +iF +iF +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +gL +gL +gL +hp +iy +iy +iy +iG +iy +iy +iy +iy +hp +hp +hp +hp +hp +hp +fS +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(31,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gI +gI +gI +gI +gI +gI +gI +gI +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +gi +gi +iF +iF +hC +hC +hC +hC +iN +iF +hC +hC +hC +iF +iS +iF +hC +hC +gL +gL +hp +iy +iy +iy +iy +iy +iy +iy +iy +hp +hp +fS +gL +gL +gL +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(32,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gI +gI +NB +pf +pf +pf +nY +je +gI +gI +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +iF +iF +hC +hC +iF +iF +iF +iN +iS +hC +gL +fS +hp +hp +hp +hp +iy +iy +hp +hp +hp +hp +hp +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(33,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gI +pf +MC +pf +pf +pf +pf +ux +pf +gI +hC +hC +hC +hC +hC +hC +hC +iF +iS +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +iF +iF +hC +iF +iF +hC +hC +hC +hC +gL +gL +gL +fS +fS +fS +hp +hp +hp +hp +fS +gL +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(34,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gI +pf +pf +pf +Lt +MC +pf +pf +pf +gI +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iZ +hC +hC +hC +hC +hC +gi +iF +iF +iF +iF +hC +iF +iF +hC +hC +iF +iF +hC +hC +hC +hC +hC +gL +gL +gL +gL +gL +gL +gL +gL +gL +gL +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(35,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gI +Go +pf +nY +pf +pf +pf +rZ +pf +gI +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +iF +iF +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(36,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gI +jf +pf +bs +pf +pf +pf +nY +Wn +gI +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iN +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(37,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +eR +eR +eR +eR +eR +gI +gI +TD +TD +TD +TD +TD +TD +gI +gI +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(38,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +eR +eR +eR +eR +eR +eR +eR +IZ +RA +Sn +vN +Qy +pN +ao +ao +ao +ao +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(39,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +eR +eR +Vk +MI +Pu +lz +CY +bA +Wl +gN +rn +gN +gN +TK +ao +ao +ao +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +iF +iF +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(40,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +eR +eR +fY +ce +fb +sj +jp +bA +Wl +gN +gN +gN +gN +gN +rJ +dD +dD +dD +dD +dD +dD +dD +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +iN +iF +iF +iF +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(41,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +eR +eR +Yp +fb +AX +xT +jp +bA +Wl +Ga +Er +Er +SP +RA +gN +dD +dD +dD +dD +dD +dD +dD +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iS +iF +hC +hC +hC +hC +iF +iF +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(42,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +eR +eR +Mr +fb +AX +xT +jp +bA +Wl +QU +vX +ul +un +KT +gN +dD +sK +TU +Qq +tN +dD +dD +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +ab +ab +ab +ab +ab +ab +ab +ab +ab +hC +hC +iF +iF +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(43,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +db +db +eR +eR +wF +fb +iE +xT +jp +bA +Wl +QU +ar +zy +wT +KT +gN +dD +ks +Qq +Qq +sX +dD +dD +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +ab +YN +qf +dE +ab +YN +qf +dE +ab +hC +hC +iN +iS +iF +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(44,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +db +db +db +db +db +db +db +db +DE +ce +fb +eV +RM +lZ +eG +ex +ar +zy +wT +KT +gN +dD +dK +Qq +Qq +Ul +dD +dD +hC +ag +ag +ag +ag +ag +ag +hC +hC +hC +ab +re +Ts +EB +ab +re +Ts +EB +ab +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +gi +iQ +iO +hC +hC +hC +iL +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(45,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +db +db +UC +UC +xf +Bu +UC +db +fR +Ho +TL +SM +eR +pl +gN +ey +mb +oF +oo +dU +dP +bc +dL +Qq +Qq +mG +dD +dD +ag +ag +ho +tA +KH +gv +ag +ab +ab +ab +ab +XA +EZ +yL +ab +XA +EZ +yL +ab +hC +hC +hC +hC +hC +hC +iF +iF +iF +gi +gi +gi +iP +hC +hC +hC +hC +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(46,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +UC +Bu +UC +du +UC +Bu +Bu +UC +dd +db +eR +eR +eR +Fq +eR +ao +eH +wf +ev +LR +Uy +de +gN +dD +dM +Qq +Qq +hb +dD +dD +ag +NK +MZ +hd +hd +hd +ag +zB +FS +KE +ab +fx +fx +as +ab +fx +fx +as +ab +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +iL +iP +hC +hC +hC +iF +iF +iF +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(47,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +xf +fG +Bu +Bu +Bu +ft +UC +UC +Bu +gZ +cR +cR +cR +Yv +Dm +ao +eS +eA +gN +ee +eb +dV +bS +dD +Uk +Ej +dg +dD +dD +dD +ag +xJ +Xf +wq +wq +wq +ZV +qp +qp +qp +oP +oP +oP +oP +oP +oP +oP +oP +ab +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +gi +gi +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(48,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +UC +xf +UC +Bu +Bu +Bu +UC +UC +UC +db +jg +zb +MP +JI +cI +ao +eJ +gN +sn +Gj +gN +dH +dH +dH +dH +dH +dH +dD +dD +dD +ag +cc +Xf +wq +zA +lw +ag +qD +qp +qp +xa +nh +nh +nh +ac +nh +nh +nh +ab +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +gi +iF +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(49,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +dy +UC +yA +mq +UC +UC +xf +UC +UC +db +cI +cI +cI +cI +cI +ao +eK +dH +dH +dH +uT +dH +dQ +hV +hV +dH +dH +qv +qv +qv +ag +wS +Xf +wq +GB +hL +ag +qD +qp +Ez +ab +fx +fx +pR +ab +fx +fx +pR +ab +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +gi +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(50,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +kw +xf +UC +Bu +dl +UC +Bu +db +cR +TY +cJ +cJ +cJ +Bz +nB +dH +di +ef +ML +cA +Pw +hV +hV +dH +dH +qv +qv +qv +ag +am +am +fH +ag +ag +ag +qD +qp +Ez +ab +rO +qf +sq +ab +rO +qf +sq +ab +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +hC +iF +iF +iN +hC +hC +hC +hC +hC +hC +hC +hC +gi +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(51,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +db +db +db +db +db +fo +xf +db +cR +Wi +cJ +Ii +Zq +Zq +go +dH +hZ +ej +ec +ut +Pw +hV +hV +dH +dH +qv +qv +qv +ag +In +Xf +wq +GB +ab +ab +qD +qp +Ez +ab +re +Ts +EB +ab +re +Ts +EB +ab +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +gi +gi +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(52,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +db +db +db +db +db +fp +db +db +cR +cI +cJ +Ii +Zq +Zq +Hk +dH +ZL +aj +ed +bC +hV +hV +dN +dH +dH +qv +qv +qv +ag +bH +Xf +wq +GB +ab +ca +qp +qp +af +ab +Zn +EZ +sW +ab +Zn +EZ +sW +ab +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +gi +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(53,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +db +db +db +db +db +db +db +db +ez +pn +cR +cR +ly +zX +cJ +cJ +cJ +cC +vg +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +qv +qv +qv +ag +hy +Xf +wq +ak +ab +ah +qp +nh +kk +ab +ab +ab +ab +ab +ab +ab +ab +ab +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(54,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +do +do +do +do +do +do +do +do +do +do +do +cI +dj +ly +cR +cR +cR +cR +HJ +QG +Bw +vq +ap +uR +Cl +By +XY +ap +ap +ap +ap +ap +qv +qv +qv +ag +SG +qq +al +Zb +ab +ab +AF +AF +ab +ab +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +iF +iJ +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(55,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +do +do +do +yN +ER +yl +tt +kH +do +do +do +cI +pn +OJ +cI +cI +cI +cI +cI +cJ +nS +sL +eB +cS +yp +zf +zf +ap +ap +aO +xY +ap +qv +qv +qv +ag +ag +or +Je +eI +ab +ab +ab +ab +ab +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(56,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +do +do +do +KZ +fT +fC +fC +fC +fw +TW +do +cI +pn +cI +dc +bz +bz +MF +MA +vF +sM +bl +ap +ea +zx +dW +dW +bt +bd +gg +Ds +ap +qv +qv +qv +qv +ag +ag +ag +ag +qv +qv +qv +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(57,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +tQ +Lc +Wq +ga +ZE +fL +Nz +Nz +Nz +dv +fc +do +cI +fq +cI +um +vh +tc +Da +tL +Zm +xP +vg +ap +QX +ek +sN +sN +ap +Vt +Nq +lE +ap +qv +qv +qv +qv +qv +qv +qv +qv +qv +qv +qv +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +iF +gi +gi +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(58,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +CO +OR +bq +fL +ZE +fK +ZE +ZE +ZE +dv +HV +do +cI +pn +cI +DN +Oq +cT +cT +eW +eT +eO +Pz +ap +nO +qF +Mc +OD +ap +XN +Vl +CX +ap +qv +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +gi +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(59,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +gj +mr +nN +fL +ZE +fU +hk +dv +ZE +dv +vA +do +cI +pn +cI +zn +Oq +cT +cT +eX +vF +cC +vg +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +qv +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +gi +gi +gi +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(60,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +Px +BX +rY +gb +fD +fV +Tl +fw +fD +fw +dt +dp +dm +fr +cI +XV +Oq +cT +cT +XF +vF +Bw +cL +aq +cd +bW +bM +bF +aq +aq +aq +aq +aq +qv +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iS +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +iz +iz +iz +aa +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(61,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +do +DH +fL +ZE +dv +Cy +dv +ZE +dv +sT +do +cI +pn +cI +iA +Oq +cT +cT +he +vF +Ue +sL +eC +cf +vJ +RZ +RZ +aq +aq +aP +ay +aq +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iF +iF +iF +hC +hC +hC +hC +hC +hC +hC +hC +hC +gi +gi +iz +iz +iz +iz +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(62,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +do +Vx +fL +ZE +ZE +fK +ZE +ZE +dv +rH +do +cI +pn +cI +ei +Oq +cT +cT +tL +Zm +xP +bl +aq +cg +XE +dX +dX +bu +be +aQ +az +aq +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iS +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iz +aa +iz +iz +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(63,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +IC +fL +Nz +Nz +fL +Nz +ZE +ox +Ks +do +cI +pn +cI +Wh +At +jM +sm +Kd +UO +rz +vg +aq +ci +el +Yi +Yi +aq +bf +aR +aB +aq +ae +ae +ae +NH +Sv +EX +EX +To +EX +EX +NH +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +iz +iz +iz +iB +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(64,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +kL +gc +dx +Wv +fM +dx +do +do +do +do +cI +pn +cI +dc +hr +px +lO +YE +vF +VO +td +aq +cj +kI +ty +LG +aq +bg +aS +aC +aq +ae +ae +NH +NH +NH +NH +XC +NH +NH +XC +NH +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(65,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +Xq +dx +jP +fN +gy +do +cI +cI +cI +cI +pn +yV +cI +cI +cI +cI +cI +cJ +at +vg +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +ae +LE +NH +NH +Vj +Tg +Tg +Tg +Tg +Tg +Qf +Sm +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(66,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +uX +Nz +En +jP +fO +fI +do +cI +ai +Ha +Ha +Yt +Ha +fk +Ha +Ha +Ha +xu +cK +eP +cz +av +ck +bX +bN +bG +av +av +av +av +av +ae +IE +NH +NH +sE +RF +RF +RF +RF +RF +UF +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(67,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +pi +Nz +En +Te +dz +hh +do +cI +pn +dq +cY +cY +cY +cY +cI +fe +ly +pn +cJ +rI +eL +eD +cl +rw +wA +wA +av +av +aT +aD +av +ae +hg +NH +NH +sE +RF +RF +RF +RF +RF +UF +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(68,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +yv +Nz +En +jP +fP +ua +do +cI +Oo +lW +cY +yB +yB +FP +cI +vC +cR +iM +cJ +LV +qr +av +cn +DG +dY +dY +bv +bh +aU +aF +av +gA +Sm +NH +NH +Sd +RF +RF +RF +RF +RF +UF +Sm +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(69,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +LN +Nz +dx +jP +fN +do +do +cI +pn +cY +cY +fW +fW +Ph +QG +cV +cR +Mz +cJ +Iy +vg +av +co +em +vl +vl +av +bi +aV +aH +av +ae +ae +Bd +NH +sE +RF +RF +RF +RF +RF +UF +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(70,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +AY +Nz +dx +wh +Zt +do +cI +cI +fq +cY +RC +Ph +Ph +Ph +cI +cI +jG +cI +cJ +Bw +td +av +cp +ge +Pr +pz +av +bj +aW +aI +av +ae +Dc +NH +NH +sE +RF +RF +RF +RF +RF +UF +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(71,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +cx +Nz +Nz +fQ +do +cI +pM +pn +cY +dn +Ph +Ph +Ph +cZ +tE +gU +OL +gU +sw +vg +av +av +av +av +av +av +av +av +av +av +ae +gE +NH +NH +Sg +Jo +Jo +Jo +Jo +Jo +As +Sm +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(72,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +do +do +do +do +do +do +do +do +cI +AZ +pn +cY +bE +Re +Ph +Ph +CA +gK +au +Hm +Hm +Hm +cD +aw +xH +aG +lu +tZ +aw +aw +aw +aw +aw +ae +ae +NH +NH +NH +NH +KO +NH +NH +KO +NH +NH +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(73,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +cI +cI +cI +cI +cI +cI +cI +cI +cR +pn +cY +bE +Re +Ph +Ph +cZ +xZ +CQ +DV +FB +Hm +eL +eE +cq +ln +Ef +Ef +aw +aw +aX +aJ +aw +ae +ae +ae +NH +ze +ru +ru +ru +ru +ru +NH +ze +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(74,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +cI +cI +cI +cI +cI +cI +fJ +Ha +fy +cF +cY +cY +hX +Yf +gh +cZ +by +dk +Jc +Ue +Hm +bl +aw +JO +GD +dZ +dZ +bw +bk +aY +aK +aw +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +gw +ae +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(75,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +VB +ly +dA +VB +cR +cI +pn +cI +pn +cR +dr +cY +cY +cY +cY +cY +cJ +cJ +lt +Zq +Zq +vg +aw +vD +en +bI +bI +aw +bm +aZ +aL +aw +ae +ae +ae +ae +ae +ae +ae +ae +ae +ae +gs +ae +ae +ae +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(76,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +jg +id +aA +Ei +ly +cI +pn +cI +dj +cR +HQ +cI +cI +cQ +cQ +cQ +cQ +cJ +Ii +Zq +Zq +td +aw +Hy +Vg +Bm +eg +aw +bn +ba +aM +aw +an +an +an +an +an +hC +hC +hC +hC +fZ +gs +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(77,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +gf +hu +dB +et +hE +Pl +Rd +cI +fq +cR +dr +cI +cQ +cQ +Rc +eh +cQ +cJ +cJ +cC +Hm +vg +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +Rz +cm +iW +an +an +hC +hC +hC +fZ +fZ +gs +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(78,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +ku +dB +gd +vC +cR +cI +cR +cI +pn +cR +ad +cI +cQ +xX +tl +tl +cQ +cQ +cQ +Gz +Hm +wg +Rl +cr +ep +bO +bJ +ch +Em +dO +dI +an +an +Ua +gX +an +an +hC +hC +hC +fZ +fZ +gs +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(79,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +cR +cR +dC +VB +ly +cI +cR +ly +pn +cR +hW +cI +cQ +nv +Gh +tl +ff +DB +cQ +cM +Hm +ZN +Rl +yr +eq +Xk +Xk +dR +an +Wu +dJ +Zc +Em +dG +uy +an +an +hC +hC +hC +fZ +gV +gr +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(80,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +cI +cI +cI +cI +cI +cI +cI +cI +pn +ly +ds +cI +cQ +ig +tl +fh +fg +DB +cQ +Gz +Hm +eL +eF +Nv +er +yn +yn +Lv +an +Nu +qx +AQ +an +an +an +an +an +hC +hC +hC +fZ +gx +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(81,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +cI +cI +cI +cI +cI +cI +cI +cI +cI +cI +dw +fu +Na +cI +cQ +rG +tl +fi +cW +DB +cQ +Gz +Hm +wU +Rl +Lz +dT +yn +Ay +Ay +an +hM +qx +zo +an +an +an +an +an +hC +hC +hC +fZ +gr +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(82,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +cI +cI +cI +fp +cI +cI +cQ +cQ +cQ +im +cQ +cQ +cQ +Gz +Hm +wg +Rl +cs +dT +BM +Qp +Vr +an +lf +qx +TA +an +an +hC +hC +hC +hC +hC +hC +fZ +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(83,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +cJ +fE +fz +fv +WZ +bD +OL +OL +Ok +nB +Et +oc +OL +sw +Hm +wg +an +Xm +dT +yn +Ay +up +an +Zj +nL +ax +an +an +hC +hC +hC +hC +hC +hC +gr +gr +gx +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(84,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +cJ +fF +fA +fj +eQ +eQ +eQ +fl +Hm +fj +eQ +eQ +eQ +eU +eQ +eM +an +EI +Ay +yn +yn +an +an +aE +zo +RR +an +an +hC +hC +hC +hC +hC +fZ +gr +gr +gs +gs +gr +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(85,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +cJ +fE +fB +hF +DV +DV +Kf +HW +lG +DV +hF +hF +cX +HW +XH +If +an +Dw +Ay +Pb +Pb +an +mp +qx +zo +RR +an +an +hC +hC +hC +hC +hC +fZ +iX +gr +gs +fZ +gs +gS +fZ +fZ +fZ +gs +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(86,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +cJ +cJ +cJ +cJ +da +da +da +df +da +da +aN +jc +jc +cN +jc +jc +an +MQ +bP +bP +IJ +an +Mt +bb +ax +an +an +an +hC +hC +hC +hC +fZ +fZ +fZ +gs +fZ +fZ +fZ +gT +gs +fZ +gR +gr +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(87,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +qv +qv +qv +da +da +VY +fm +da +da +aN +Lm +LO +cO +Oz +os +an +an +an +an +an +an +an +an +an +an +an +an +hC +hC +hC +hC +fZ +fZ +fZ +gs +fZ +fZ +fZ +fZ +gr +gs +gr +gr +gq +gs +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(88,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +da +Un +dh +fm +yy +da +aN +Fx +Mi +qc +RX +JN +bL +ew +es +aN +bK +bx +bo +aN +aN +an +an +hC +hC +hC +hC +hC +fZ +gY +gr +gr +fZ +fZ +fZ +fZ +fZ +gs +gs +gs +gt +gs +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(89,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +da +da +dh +km +JE +da +aN +Il +eN +dF +dF +eN +aN +ct +eu +aN +aN +bB +bp +aN +aN +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +gC +gr +fZ +fZ +fZ +fZ +fZ +fZ +gs +gQ +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(90,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +qv +da +fs +fn +qt +da +aN +fd +eY +Rn +Rn +CM +aN +cB +bZ +bQ +bL +dS +br +aN +aN +hC +hC +hC +hC +hC +hC +hC +ha +gW +gr +gr +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(91,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +qv +da +da +da +da +da +aN +LO +eZ +Rn +cE +cG +aN +cu +cb +bR +aN +aN +aN +aN +aN +hC +hC +hC +hC +hC +hC +ha +ha +gW +gr +gr +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(92,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +qv +qv +qv +qv +aN +aN +cU +fa +eo +cH +Lp +aN +cv +cb +bT +aN +aN +aN +aN +aN +hC +hC +hC +hC +hC +hC +ha +gW +gW +gr +gB +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(93,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +qv +qv +qv +qv +qv +qv +aN +aN +fX +Bl +Rn +cE +Rh +aN +cw +cb +bU +aN +aN +hC +hC +hC +hC +hC +hC +hC +hC +hC +ha +gW +gW +gr +gr +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(94,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +aN +aN +PT +cE +Rn +Rn +aN +aN +DT +bY +bV +aN +aN +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +ha +gW +gW +gr +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(95,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +aN +aN +GC +cE +kp +kp +aN +Kc +cb +bY +bV +aN +aN +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +gW +gW +gr +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(96,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +aN +aN +mo +yO +yO +cP +aN +Ae +cy +bU +aN +aN +aN +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +gS +gr +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(97,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +gs +gr +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(98,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +aN +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +gF +gr +gr +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(99,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +gs +gr +gs +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(100,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +gs +gr +gr +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(101,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +gs +gs +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(102,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +gs +gx +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(103,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gs +gs +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(104,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gs +gs +gr +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(105,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gO +gO +gO +gO +gO +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gW +gW +gW +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +gC +gs +gs +gs +gr +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(106,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gp +gp +gn +iq +gO +gO +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gr +gJ +gW +gW +gW +gW +gW +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +gS +gs +gs +gs +gs +gs +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(107,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gl +gl +iu +gl +il +gO +fZ +gV +gs +gV +gs +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gr +gs +gs +gs +gr +gr +gr +gr +gr +gr +gs +gV +gs +gs +gr +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gr +gJ +gs +gs +gr +gr +gr +fZ +fZ +fZ +fZ +fZ +gs +gs +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(108,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +iw +gl +gl +gm +gl +ih +gs +gu +gr +gr +gr +gr +gs +gs +gs +gs +gr +gr +gs +gs +gs +gs +gJ +gs +gs +gs +gs +jh +gr +gr +gr +gs +gs +gs +gs +gs +gu +gs +gs +gr +gr +gs +gs +gJ +gs +gs +gr +gr +gr +gr +gs +gr +gs +gs +gs +gs +gs +gs +gs +gs +gs +gr +gG +gr +gr +gs +gs +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(109,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gl +gl +gl +gl +in +gO +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +jn +gu +gW +gW +gs +gs +gs +hc +gr +gs +gr +gr +gs +gu +gs +gs +gs +gs +gs +gr +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gr +gs +gs +gu +gr +fZ +gs +gs +gs +gs +gW +fZ +fZ +gW +gW +gW +gW +fZ +fZ +gr +hc +gr +gx +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(110,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +ix +iv +gO +gO +io +gO +gM +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gs +gr +gs +gs +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +fZ +gs +gs +fZ +fZ +gM +gM +gM +gM +gM +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gR +gs +gW +gW +gW +gW +gW +ha +fZ +fZ +fZ +fZ +hf +gs +gs +gr +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(111,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gO +gO +gP +ir +gl +ii +gO +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +jm +gr +gs +gs +fZ +if +gs +gs +gs +jk +fZ +fZ +gr +gs +gB +fZ +gM +gM +hY +hT +hP +gM +gM +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hl +fZ +gW +ha +gH +ha +fZ +fZ +ha +fZ +fZ +fZ +gs +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(112,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +is +gl +ij +gO +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +gV +gr +gs +gs +gs +gs +gs +gs +gs +gV +gs +gr +gs +gr +gs +fZ +gM +ia +hQ +hQ +hQ +hI +gM +gM +gM +gM +gM +fZ +fZ +fZ +fZ +fZ +hi +ha +hl +fZ +fZ +fZ +fZ +fZ +fZ +hi +ha +fZ +fZ +fZ +gF +gs +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(113,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gz +gl +ii +gO +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +gW +gr +gr +gs +fZ +gF +gs +gr +gs +gs +gs +gs +gr +gr +fZ +fZ +gM +ib +hQ +hQ +hQ +hJ +gM +hA +hx +hv +gM +fZ +fZ +fZ +ha +ha +gW +gW +hm +ha +hi +ha +fZ +ha +ha +ha +gW +gW +fZ +gs +gs +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(114,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +it +in +ik +gO +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +gW +gW +gs +gx +fZ +jl +gs +gs +ie +fZ +gF +gs +gs +gs +fZ +fZ +gM +hQ +hQ +hQ +hR +hK +gM +hB +hl +hm +gM +fZ +fZ +ha +ha +gW +gW +gW +hm +gW +ha +ha +ha +ha +gW +gW +gW +gW +gW +gs +gr +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(115,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +ii +ip +ii +gO +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +gW +gs +gs +gs +gr +gs +fZ +fZ +gs +gs +gs +fZ +fZ +fZ +gM +ic +hS +hU +hS +hN +gM +hD +hl +ji +gM +fZ +ha +ha +gW +gW +gW +gW +hl +gW +gW +gW +gW +gW +gW +gW +gW +gW +gs +gs +gr +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(116,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +gO +gO +gO +gO +gO +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +gs +gs +gs +gs +gs +gJ +gs +gs +gs +gs +gs +jj +fZ +gM +gM +gM +gM +hl +hm +gM +hG +hl +hl +gM +fZ +gW +ha +gW +gW +gr +gW +hm +gW +fZ +fZ +gW +gW +gW +gW +gW +gs +gs +gx +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(117,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gr +gV +gs +gs +gs +gs +gr +gr +gr +gs +gs +fZ +fZ +fZ +fZ +gM +hl +hO +gM +hH +hl +hw +gM +fZ +fZ +gW +gW +hq +hn +gr +hl +fZ +fZ +fZ +fZ +fZ +gW +gW +gs +gs +gr +gs +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(118,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gr +gr +gs +gs +gr +gs +gs +gr +gr +gs +gs +fZ +gM +hz +gM +gM +gM +hz +gM +gM +fZ +fZ +gr +ht +hs +gs +gs +gr +hj +fZ +fZ +fZ +fZ +gC +gs +gr +gs +gs +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(119,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gs +gs +gs +gs +gV +gs +gr +gr +gs +gs +gs +gs +gG +gr +gs +gs +gs +gs +gs +gJ +gs +gs +fZ +gs +gV +gs +gs +gs +gs +gs +gs +gs +gs +gW +gW +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(120,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gW +gr +gs +gr +gr +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +gs +jh +gs +gs +gr +fZ +fZ +gr +gs +gs +gu +gr +gr +gs +gs +gs +gW +gW +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(121,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +gW +gW +gu +gs +gs +iX +fZ +fZ +fZ +fZ +fZ +fZ +gW +gs +gr +gT +fZ +gs +gr +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(122,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(123,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +fZ +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(124,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(125,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(126,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(127,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(128,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(129,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(130,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(131,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(132,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(133,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(134,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(135,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(136,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(137,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(138,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(139,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} +(140,1,1) = {" +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +hC +"} diff --git a/maps/redgate/casino_canal/casino_canal_2.dmm b/maps/redgate/casino_canal/casino_canal_2.dmm new file mode 100644 index 00000000000..9a3af882b85 --- /dev/null +++ b/maps/redgate/casino_canal/casino_canal_2.dmm @@ -0,0 +1,26315 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"ab" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"ac" = ( +/turf/simulated/floor/tiled/eris/steel/panels, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"ad" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/machinery/light, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors) +"ae" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"af" = ( +/obj/machinery/light, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors) +"ag" = ( +/obj/structure/barricade/cutout/ntsec, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"ah" = ( +/obj/structure/table/reinforced, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/carton/flour, +/obj/item/reagent_containers/food/condiment/spacespice, +/obj/item/reagent_containers/food/condiment/spacespice, +/obj/item/reagent_containers/food/condiment/carton/sugar, +/obj/item/reagent_containers/food/condiment/carton/sugar, +/obj/item/reagent_containers/food/condiment/small/saltshaker, +/obj/item/reagent_containers/food/condiment/small/saltshaker, +/obj/item/reagent_containers/food/condiment/small/peppermill, +/obj/item/reagent_containers/food/condiment/small/peppermill, +/obj/random/donkpocketbox, +/obj/structure/closet/walllocker_double/kitchen/north, +/obj/item/storage/box/beakers{ + name = "box of measuring cups"; + pixel_x = 2; + pixel_y = 3; + starts_with = list(/obj/item/reagent_containers/glass/beaker/measuring_cup = 7) + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"ai" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/hall) +"aj" = ( +/obj/structure/table/hardwoodtable, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = -10 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"ak" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/hall) +"al" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/lounge) +"am" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/lounge) +"an" = ( +/obj/effect/floor_decal/milspec/color/red/half, +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"ao" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"ap" = ( +/obj/structure/flora/pottedplant/tropical, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/casino) +"aq" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/glasses/goggles{ + pixel_y = -9; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -3; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 3; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 9; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -9; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -3; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 3; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 9; + pixel_x = 9; + name = "diving goggles" + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"ar" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"as" = ( +/obj/structure/table/standard, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/lounge) +"at" = ( +/turf/unsimulated/wall/planetary/virgo3c, +/area/redgate/underwater_casino) +"au" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"av" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/vacant) +"aw" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"ax" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"ay" = ( +/obj/effect/floor_decal/milspec/color/red/half, +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 8; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"az" = ( +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"aA" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"aB" = ( +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"aC" = ( +/mob/living/simple_mob/vore/alienanimals/teppi, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"aD" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"aE" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"aF" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/shop) +"aG" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 8 + }, +/obj/item/deck/cards/casino, +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"aH" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/shop) +"aI" = ( +/obj/structure/flora/underwater/plant2, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"aJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"aK" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 1 + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"aL" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aM" = ( +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aN" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aO" = ( +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aP" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aQ" = ( +/obj/structure/ghost_pod/ghost_activated/maint_lurker/redgate, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"aR" = ( +/obj/effect/floor_decal/rust, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aS" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/lounge) +"aT" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/structure/table/bench/marble, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"aU" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"aV" = ( +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"aW" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/comms) +"aX" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"aY" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"aZ" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"ba" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"bb" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/redgate/underwater_casino/indoors/upper/comms) +"bc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/upper/lounge) +"bd" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"be" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bf" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"bg" = ( +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"bh" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 8; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 2; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -4; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -10; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 8; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -10; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bi" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/glasses/goggles{ + pixel_y = -9; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -3; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 3; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 9; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -9; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -3; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 3; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 9; + pixel_x = 9; + name = "diving goggles" + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bj" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen/yellow{ + pixel_y = 12 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 7 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 2 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = -3 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bk" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen/yellow{ + pixel_y = 12 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 7 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 2 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bl" = ( +/turf/simulated/wall/tgmc/plain_redstripe_r, +/area/redgate/underwater_casino/indoors) +"bm" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"bn" = ( +/turf/simulated/floor/tiled/eris/steel/panels, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bo" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bp" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bq" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"br" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/casino) +"bs" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/casino) +"bt" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "Game Floor" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"bu" = ( +/obj/structure/table/hardwoodtable, +/obj/item/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = -10 + }, +/obj/item/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 2; + pixel_y = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"bv" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 13 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 9 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 3 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"bw" = ( +/obj/structure/table/steel, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 5; + pixel_x = -8 + }, +/obj/item/grenade/chem_grenade/cleaner{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"bx" = ( +/obj/structure/bed/chair/bay/comfy/green, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"by" = ( +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"bz" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"bA" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/casino) +"bB" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"bC" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/entry) +"bD" = ( +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors/upper/hall) +"bE" = ( +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors/upper/casino) +"bF" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"bG" = ( +/obj/machinery/light, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/entry) +"bH" = ( +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/entry) +"bI" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"bJ" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + pixel_y = -5; + pixel_x = -22; + dir = 4; + id = "c_toilet1"; + specialfunctions = 4; + name = "Toilet 1 Lock" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"bK" = ( +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/casino) +"bL" = ( +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"bM" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/entry) +"bN" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_x = 9; + pixel_y = 7 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"bO" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/casino) +"bP" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"bQ" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen/yellow{ + pixel_y = 12 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 7 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 2 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"bR" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen/yellow{ + pixel_y = 12 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 7 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 2 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = -3 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"bS" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/glasses/goggles{ + pixel_y = -9; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -3; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 3; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 9; + pixel_x = -4; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -9; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = -3; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 3; + pixel_x = 9; + name = "diving goggles" + }, +/obj/item/clothing/glasses/goggles{ + pixel_y = 9; + pixel_x = 9; + name = "diving goggles" + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"bT" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 8; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 2; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -4; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -10; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 8; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -10; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"bU" = ( +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"bV" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"bW" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"bX" = ( +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/casino) +"bY" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"bZ" = ( +/turf/simulated/floor/tiled/eris/steel/panels, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"ca" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/entry) +"cb" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"cc" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"cd" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"ce" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"cf" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"cg" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 13 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 9 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 3 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"ch" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"ci" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/west) +"cj" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/barback) +"ck" = ( +/turf/simulated/wall/tgmc/darkwall/deco0, +/area/redgate/underwater_casino/indoors/upper/hall) +"cl" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/hall) +"cm" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"cn" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"co" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"cp" = ( +/obj/structure/catwalk, +/obj/machinery/light/small, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"cq" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"cr" = ( +/obj/structure/lattice, +/obj/machinery/light, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"cs" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/redgate/underwater_casino/indoors/upper/casino) +"ct" = ( +/obj/structure/bed/chair/bay/comfy/brown, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/upper/casino) +"cu" = ( +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"cv" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/bar) +"cw" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/bar) +"cx" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"cy" = ( +/obj/machinery/light, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"cz" = ( +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"cA" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/redgate/underwater_casino/indoors/upper/casino) +"cB" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/redgate/underwater_casino/indoors/upper/casino) +"cC" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/barback) +"cD" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + id_tag = "c_toilet1"; + name = "Toilet 1" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"cE" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"cF" = ( +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"cG" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"cH" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"cI" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"cJ" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"cK" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"cL" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"cM" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"cN" = ( +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/barback) +"cO" = ( +/turf/simulated/floor/tiled/eris/steel/bar_flat, +/area/redgate/underwater_casino/indoors/upper/bar) +"cP" = ( +/obj/structure/lattice, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"cQ" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bar) +"cR" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"cS" = ( +/obj/effect/floor_decal/milspec/color/red/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"cT" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"cU" = ( +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"cV" = ( +/obj/structure/table/darkglass, +/obj/random/drinkbottle, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"cW" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + name = "Bar"; + stripe_color = "#89bd66"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"cX" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"cY" = ( +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"cZ" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"da" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"db" = ( +/obj/structure/table/glass, +/obj/random/fromList/ducky, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"dc" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/panels, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"dd" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"de" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"df" = ( +/obj/structure/window/reinforced{ + pixel_y = -4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"dg" = ( +/obj/structure/window/reinforced{ + pixel_y = -4 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"dh" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/random/donkpocketbox, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"di" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"dj" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"dk" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dl" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"dm" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"dn" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"do" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dp" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"dq" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"dr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"ds" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"dt" = ( +/obj/structure/disposalpipe/junction{ + dir = 4; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"du" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/hall) +"dv" = ( +/obj/structure/table/standard, +/obj/item/reagent_containers/food/condiment/enzyme{ + pixel_x = -15 + }, +/obj/item/material/kitchen/rollingpin{ + pixel_y = 6 + }, +/obj/item/material/knife/butch{ + pixel_y = 1; + pixel_x = 4 + }, +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"dw" = ( +/obj/effect/floor_decal/rust, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"dx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dy" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dz" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 8 + }, +/obj/structure/sign/painting/public/east, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"dA" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dB" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dC" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dD" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/angled_bay/standard/color{ + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + name = "Custodial Closet"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"dE" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"dF" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"dG" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 1 + }, +/obj/machinery/light/small/neon/dice{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dH" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/blue, +/obj/item/spacecasinocash/c10{ + pixel_y = 10; + pixel_x = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/barback) +"dI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"dJ" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"dK" = ( +/obj/random/crate, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"dL" = ( +/obj/structure/disposalpipe/junction{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dM" = ( +/turf/simulated/wall/tgmc/darkwall/deco0, +/area/redgate/underwater_casino/indoors/upper/casino) +"dN" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 6 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"dO" = ( +/obj/effect/floor_decal/milspec/color/red/half, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"dP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dQ" = ( +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/upper/lounge) +"dR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"dS" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"dT" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"dU" = ( +/obj/machinery/door/airlock/angled_tgmc/security_glass{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors) +"dV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dW" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/vacant) +"dX" = ( +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "Shop" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/shop) +"dY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"dZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/upper/lounge) +"ea" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"eb" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"ec" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"ed" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"ee" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"ef" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/button/windowtint/multitint{ + pixel_x = -9; + pixel_y = 28; + id = "c_vacantlot" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"eg" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"eh" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"ei" = ( +/obj/structure/catwalk, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"ej" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"ek" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"el" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"em" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"en" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"eo" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"ep" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"eq" = ( +/obj/structure/disposalpipe/tagger{ + dir = 4; + name = "package tagger - Resleeving"; + sort_tag = "Resleeving" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"er" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal/wall/cleaner{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"es" = ( +/mob/living/simple_mob/vore/succubus, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"et" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + id_tag = "c_toilet2"; + name = "Toilet 2" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"eu" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + id_tag = "c_toilet3"; + name = "Toilet 3" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"ev" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + pixel_y = -5; + pixel_x = -22; + dir = 4; + id = "c_toilet2"; + specialfunctions = 4; + name = "Toilet 2 Lock" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"ew" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/button/remote/airlock{ + pixel_y = -5; + pixel_x = -22; + dir = 4; + id = "c_toilet3"; + specialfunctions = 4; + name = "Toilet 3 Lock" + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"ex" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/entry) +"ey" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"ez" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"eA" = ( +/obj/structure/bed/chair/sofa/corp/left, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"eB" = ( +/obj/machinery/vending/event/costume{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"eC" = ( +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/casino) +"eD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"eE" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"eF" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 10 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"eG" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"eH" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"eI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"eJ" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/entry) +"eK" = ( +/obj/machinery/casinosentientprize_handler{ + casinosentientprize_sale = "enabled"; + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/bcircuit, +/area/redgate/underwater_casino/indoors/upper/casino) +"eL" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards/casino, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"eM" = ( +/obj/structure/disposalpipe/junction/yjunction{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"eN" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"eO" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"eP" = ( +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "Game Floor"; + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"eQ" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"eR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"eS" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"eT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"eU" = ( +/obj/structure/table/woodentable, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"eV" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"eW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"eX" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"eY" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"eZ" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/machinery/disposal/wall{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"fa" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"fb" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"fc" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"fd" = ( +/obj/structure/table/reinforced, +/obj/random/shibari, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"fe" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"ff" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass/common, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"fg" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"fh" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fi" = ( +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fj" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fk" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fl" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fm" = ( +/obj/machinery/disposal/wall, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"fn" = ( +/obj/item/stool/baystool/padded{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fo" = ( +/obj/item/stool/baystool/padded{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fp" = ( +/obj/item/stool/baystool/padded{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"fq" = ( +/obj/structure/bed/chair/sofa/bench{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fr" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 4 + }, +/obj/machinery/item_bank{ + pixel_y = 28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"fs" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/lounge) +"ft" = ( +/obj/structure/bed/chair/sofa/corp/left{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fu" = ( +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fv" = ( +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/obj/structure/table/standard, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fw" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fx" = ( +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fy" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 8 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fz" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"fA" = ( +/obj/machinery/light{ + dir = 4; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fB" = ( +/obj/machinery/light, +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fC" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 4 + }, +/obj/structure/sign/poster, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fD" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"fE" = ( +/obj/structure/table/standard, +/obj/random/action_figure, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fF" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fG" = ( +/obj/structure/dummystairs, +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fH" = ( +/obj/structure/sign/poster{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/violetcorener, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fI" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/bed/chair/sofa/bench/left{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fJ" = ( +/obj/structure/bed/chair/sofa/bench/right{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fK" = ( +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/redgate/underwater_casino/indoors/upper/casino) +"fL" = ( +/obj/structure/bed/chair/comfy/blue{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fM" = ( +/obj/structure/table/standard, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fN" = ( +/obj/item/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"fO" = ( +/obj/structure/bed/chair/comfy/blue, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fP" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"fQ" = ( +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "Lounge" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/lounge) +"fR" = ( +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"fS" = ( +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors) +"fT" = ( +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"fU" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"fV" = ( +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"fW" = ( +/obj/structure/flora/underwater/grass1, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"fX" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"fY" = ( +/obj/structure/flora/underwater/seaweed3, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"fZ" = ( +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"ga" = ( +/turf/simulated/wall/tgmc/whitewall, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gb" = ( +/turf/simulated/wall/tgmc/window/white, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gc" = ( +/obj/structure/casino_table/craps, +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/item/storage/dicecup, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"gd" = ( +/obj/structure/flora/underwater/plant1, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"ge" = ( +/obj/structure/flora/underwater/seaweed1, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gf" = ( +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gg" = ( +/obj/random/chips, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gh" = ( +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/outdoors) +"gi" = ( +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"gj" = ( +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gk" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gl" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"gm" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gn" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"go" = ( +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gp" = ( +/obj/random/chips/better, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gq" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gr" = ( +/obj/structure/fence/corner, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gs" = ( +/mob/living/simple_mob/vore/alienanimals/teppi{ + ghostjoin = 1 + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gt" = ( +/obj/structure/fence, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gu" = ( +/obj/structure/flora/underwater/plant3, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gv" = ( +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gw" = ( +/obj/structure/flora/smallbould, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gx" = ( +/obj/structure/flora/underwater/plant5, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gy" = ( +/obj/structure/flora/underwater/grass2, +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"gA" = ( +/obj/structure/flora/rocks2, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gB" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/light/small/neon/generic_yellow{ + pixel_y = 24 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"gC" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gD" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"gE" = ( +/turf/simulated/floor/wood/alt/broken, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gF" = ( +/mob/living/simple_mob/vore/alienanimals/skeleton/alt{ + ai_holder_type = /datum/ai_holder/simple_mob/retaliate + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gG" = ( +/obj/machinery/light, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"gH" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk, +/obj/machinery/disposal/wall, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"gI" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"gJ" = ( +/turf/simulated/wall/tgmc/darkwall/deco3, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"gK" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"gL" = ( +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/outdoors) +"gM" = ( +/mob/living/simple_mob/vore/alienanimals/catslug/custom/spaceslug{ + name = "Mina"; + desc = "Looks like catslugs can into space - and the depths of the ocean, as well! This one wears a little space suit that, presumably, works just as well on the depths of the sea as the vacuum of space. A little tag saying \"Mina\" can be seen on the front of their suit." + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"gN" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gO" = ( +/obj/item/salvage/ruin/pirate, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gP" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/research{ + req_access = null + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"gQ" = ( +/obj/structure/flora/underwater/grass1, +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"gR" = ( +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gS" = ( +/turf/simulated/wall/tgmc/chigusa, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gT" = ( +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gU" = ( +/obj/machinery/door/airlock/angled_bay/double/color{ + dir = 8; + fill_color = "#e0503a"; + stripe_color = "#3c0d06" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gV" = ( +/obj/random/junk, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"gW" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gX" = ( +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gY" = ( +/obj/structure/sign/flag/pirate/left{ + pixel_y = 30 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"gZ" = ( +/obj/structure/sign/flag/pirate/right{ + pixel_y = 30 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"ha" = ( +/obj/machinery/newscaster{ + pixel_x = -24 + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"hb" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"hc" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"hd" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"he" = ( +/obj/structure/table/woodentable, +/obj/item/reagent_containers/food/drinks/metaglass/metapint{ + pixel_y = 6; + pixel_x = -5 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"hf" = ( +/turf/simulated/wall/tgmc/chigusa/deco2, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"hg" = ( +/mob/living/simple_mob/animal/passive/fish/measelshark, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"hh" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"hi" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"hj" = ( +/mob/living/simple_mob/vore/alienanimals/teppi/baby, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"hk" = ( +/obj/structure/fence{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"hl" = ( +/obj/structure/fence/door, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"hm" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/upper/casino) +"hn" = ( +/obj/random/multiple/underdark/ores, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"ho" = ( +/turf/simulated/floor/water/underwater/indoors/open, +/area/redgate/underwater_casino/outdoors) +"hq" = ( +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"hr" = ( +/obj/structure/flora/underwater/grass1, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"hs" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"ht" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 1 + }, +/obj/structure/sign/painting/public/north, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"hu" = ( +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"hv" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"hw" = ( +/turf/simulated/floor/tiled/eris/derelict1, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"hx" = ( +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"hy" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/research{ + req_access = null; + dir = 4 + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"hz" = ( +/obj/structure/flora/underwater/plant5, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/outdoors) +"hA" = ( +/obj/machinery/vending/boozeomat, +/obj/machinery/light/small/neon/generic_green{ + pixel_y = 26; + pixel_x = 10 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"hB" = ( +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/outdoors) +"hC" = ( +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"hD" = ( +/obj/random/chips, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"hJ" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker_double/casino/north, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"hW" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"iF" = ( +/obj/machinery/door/airlock/angled_bay/double/glass{ + dir = 8; + name = "Lounge" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/lounge) +"iL" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"iO" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"iP" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"iV" = ( +/obj/machinery/appliance/cooker/oven, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"iX" = ( +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"iY" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"iZ" = ( +/obj/machinery/light, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"jb" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"jc" = ( +/obj/machinery/light/small/torch{ + dir = 1 + }, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"jd" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"jf" = ( +/obj/structure/table/woodentable, +/obj/random/chips/better{ + pixel_y = 6; + pixel_x = 13 + }, +/obj/random/chips{ + pixel_y = 3; + pixel_x = -3 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"jg" = ( +/obj/structure/table/woodentable, +/obj/random/multiple/underdark/treasure, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"jh" = ( +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"ji" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jj" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jk" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jl" = ( +/obj/item/spacecasinocash/c10{ + pixel_y = -6; + pixel_x = -9 + }, +/obj/item/spacecasinocash/c1{ + pixel_y = 1; + pixel_x = -12 + }, +/obj/random/chips/good{ + pixel_x = 3 + }, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"jm" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"jo" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/outdoors) +"jp" = ( +/mob/living/simple_mob/animal/space/carp/large/huge/vorny, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jq" = ( +/obj/random/chips/better{ + pixel_x = -9 + }, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jr" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"js" = ( +/turf/simulated/wall/tgmc/window/redstripe_r, +/area/redgate/underwater_casino/indoors) +"jt" = ( +/obj/random/chips{ + pixel_y = 13 + }, +/turf/simulated/floor/water/underwater/indoors/sand, +/area/redgate/underwater_casino/outdoors) +"jv" = ( +/obj/item/spacecasinocash/c10{ + pixel_y = 4; + pixel_x = -5 + }, +/obj/random/chips, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"jw" = ( +/obj/structure/flora/underwater/grass3, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jx" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jy" = ( +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jz" = ( +/obj/structure/flora/underwater/grass4, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jA" = ( +/obj/structure/flora/underwater/grass2, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jB" = ( +/obj/structure/flora/underwater/plant5, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jC" = ( +/obj/random/empty_or_lootable_crate, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"jD" = ( +/obj/random/outcrop, +/turf/simulated/floor/water/underwater/indoors/rocks, +/area/redgate/underwater_casino/outdoors) +"jE" = ( +/obj/structure/flora/underwater/seaweed1, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jF" = ( +/obj/structure/flora/underwater/seaweed2, +/turf/simulated/floor/water/underwater/sand, +/area/redgate/underwater_casino/outdoors) +"jG" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jH" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jI" = ( +/obj/structure/table/sifwoodentable, +/obj/machinery/light{ + dir = 4 + }, +/obj/item/gun/energy/mouseray/metamorphosis/advanced/random{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jJ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jK" = ( +/obj/structure/table/sifwoodentable, +/obj/random/maintenance/research{ + pixel_y = 12 + }, +/obj/random/maintenance/research, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jL" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jM" = ( +/obj/structure/table/sifwoodentable, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/tiled/eris/white/gray_platform, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jN" = ( +/obj/item/modular_computer/console, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jO" = ( +/obj/random/chips/good{ + pixel_x = -1 + }, +/obj/random/crate{ + dir = 4 + }, +/obj/random/desatti_snacks, +/obj/random/maintenance, +/obj/random/maintenance, +/turf/simulated/floor/tiled/eris/white/bluecorner, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jP" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/biodome) +"jQ" = ( +/obj/structure/bed/chair/sofa/corp/corner, +/obj/structure/sign/painting/public/east, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"jR" = ( +/obj/random/chips, +/turf/simulated/floor/water/underwater/indoors, +/area/redgate/underwater_casino/outdoors) +"jS" = ( +/obj/random/forgotten_tram, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"jT" = ( +/obj/structure/sign/poster{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"jU" = ( +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "Shop" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/shop) +"jV" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/outdoors/newdirt_nograss/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"jW" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"jX" = ( +/obj/machinery/light/small, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"jY" = ( +/obj/structure/flora/rocks2, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"jZ" = ( +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"ka" = ( +/mob/living/simple_mob/vore/alienanimals/catslug{ + color = "#F996BE"; + name = "Rami"; + desc = "She looks a bit fidgety." + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"kb" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"kc" = ( +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/bar) +"kd" = ( +/obj/random/plushie, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"ke" = ( +/obj/structure/flora/rocks1, +/turf/simulated/floor/outdoors/rocks/caves, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"kf" = ( +/obj/structure/bed/chair/bay/chair/padded/red/bignest{ + name = "Rami's Bed" + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"kg" = ( +/obj/random/chips{ + pixel_x = -5 + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"kh" = ( +/obj/random/plushielarge, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"ki" = ( +/obj/random/chips{ + pixel_x = -9 + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"kj" = ( +/obj/random/chips{ + pixel_y = 5 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/redgate/underwater_casino/indoors/upper/secret/cave) +"kk" = ( +/obj/structure/flora/underwater, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"kl" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"km" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kn" = ( +/obj/structure/table/steel_reinforced, +/obj/item/storage/toolbox/mechanical{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"ko" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kp" = ( +/obj/structure/janitorialcart, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/clothing/suit/caution, +/obj/item/lightreplacer, +/obj/structure/mopbucket, +/obj/item/reagent_containers/glass/bucket, +/obj/item/mop, +/obj/item/storage/bag/trash, +/obj/item/soap/nanotrasen, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"kq" = ( +/obj/structure/table/steel_reinforced, +/obj/random/mainttoyloot{ + pixel_y = 5; + pixel_x = -10 + }, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kr" = ( +/obj/structure/table/steel_reinforced, +/obj/random/mega_nukies{ + pixel_y = 5 + }, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"ks" = ( +/obj/structure/table/steel_reinforced, +/obj/random/miniature{ + pixel_y = 7; + pixel_x = -9 + }, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kt" = ( +/obj/structure/closet, +/obj/random/contraband/nofail, +/obj/random/contraband/nofail, +/turf/simulated/floor/tiled/eris/dark/panels, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"ku" = ( +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kv" = ( +/obj/structure/table/bench/glass, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kw" = ( +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kx" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"ky" = ( +/obj/structure/table/bench/glass, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kz" = ( +/obj/structure/table/rack/steel, +/obj/random/rigsuit, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kA" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kB" = ( +/obj/item/modular_computer/telescreen{ + pixel_y = 25 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kC" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/machinery/light/small/neon/import{ + pixel_y = 27; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"kD" = ( +/obj/structure/closet/emergsuit_wall{ + dir = 8; + pixel_x = -27 + }, +/turf/simulated/floor/tiled/eris/dark/violetcorener, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kE" = ( +/obj/item/modular_computer/console{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kG" = ( +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kH" = ( +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kI" = ( +/obj/structure/table/borosilicate, +/obj/item/integrated_electronics/debugger{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/integrated_electronics/wirer{ + pixel_x = 5; + pixel_y = 12 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kJ" = ( +/obj/structure/table/steel_reinforced, +/obj/random/janusmodule, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kK" = ( +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kL" = ( +/obj/machinery/vending/snack{ + dir = 8; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"kM" = ( +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kN" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kO" = ( +/obj/structure/table/borosilicate, +/obj/item/integrated_circuit_printer/upgraded{ + pixel_y = 10 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kP" = ( +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"kQ" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"kR" = ( +/obj/structure/flora/pottedplant/unusual, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kS" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kU" = ( +/obj/effect/floor_decal/techfloor{ + dir = 5 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kV" = ( +/obj/structure/table/borosilicate, +/obj/structure/closet/walllocker_double/science/north{ + name = "material sheets" + }, +/obj/fiftyspawner/steel, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kW" = ( +/obj/structure/window/reinforced{ + pixel_y = -4 + }, +/turf/simulated/floor/wood/alt, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"kY" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"kZ" = ( +/obj/structure/sink/kitchen{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"la" = ( +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"lb" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/eris/dark/monofloor, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"lc" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"ld" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/secret/researchbase) +"le" = ( +/obj/structure/reagent_dispensers/beerkeg, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/secret/piratebase) +"lf" = ( +/obj/structure/flora/underwater/grass2, +/obj/structure/flora/underwater/plant3, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"lg" = ( +/obj/structure/flora/underwater/grass3, +/obj/structure/flora/underwater/plant4, +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"lt" = ( +/obj/structure/bed/chair/bay/comfy/green{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"lu" = ( +/obj/structure/table/woodentable, +/obj/item/storage/wallet/casino{ + pixel_y = 8; + pixel_x = -14 + }, +/obj/item/storage/wallet/casino{ + pixel_y = 8; + pixel_x = 3 + }, +/obj/item/storage/wallet/casino{ + pixel_y = 3; + pixel_x = -18 + }, +/obj/item/storage/wallet/casino{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"lw" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/holoposter{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"lD" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"lJ" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/barback) +"lL" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 8; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 2; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -4; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -10; + pixel_x = 7 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 8; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = 2; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -4; + pixel_x = -5 + }, +/obj/item/clothing/mask/gas/half{ + name = "diving mask"; + pixel_y = -10; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"lO" = ( +/obj/random/maintenance/misc, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"lQ" = ( +/obj/effect/blocker, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/redgate/underwater_casino/indoors/upper/casino) +"md" = ( +/obj/machinery/door/window/eastleft, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"mh" = ( +/obj/machinery/vending/snix{ + dir = 4; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"mi" = ( +/obj/machinery/casino_prize_dispenser, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"mj" = ( +/obj/effect/floor_decal/milspec/color/red/corner, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"mv" = ( +/obj/machinery/door/window/westright, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"mz" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"mL" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"mU" = ( +/obj/structure/table/glass, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"mV" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors) +"nb" = ( +/obj/machinery/door/airlock/angled_bay/hatch/security{ + req_access = null + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors) +"ne" = ( +/obj/structure/window/reinforced, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"nf" = ( +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/redgate/underwater_casino/indoors/upper/comms) +"ng" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"nk" = ( +/obj/machinery/door/airlock/multi_tile/glass/polarized{ + dir = 1; + name = "Under Construction" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/vacant) +"nm" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"ny" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"nA" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"nD" = ( +/obj/structure/sign/painting/public/west, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"nJ" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"nP" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"nW" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"oa" = ( +/obj/structure/table/rack/steel, +/obj/fiftyspawner/wood, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"oc" = ( +/obj/machinery/chem_master/condimaster, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"og" = ( +/obj/structure/table/steel, +/obj/item/storage/box/lights/mixed{ + pixel_y = 7; + pixel_x = -2 + }, +/obj/item/reagent_containers/spray/cleaner{ + pixel_y = 1; + pixel_x = 15 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"ol" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 10 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"ov" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/machinery/disposal/wall{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"ow" = ( +/turf/simulated/wall/tgmc/window/darkwall/reinf, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"oA" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"oG" = ( +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"oI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "c_vacantlot" + }, +/obj/structure/window/reinforced/polarized{ + dir = 8; + id = "c_vacantlot" + }, +/obj/structure/window/reinforced/polarized{ + dir = 4; + id = "c_vacantlot" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"oJ" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"oS" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"oT" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"oV" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/light/small/neon/generic_blue{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"pm" = ( +/obj/structure/catwalk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"pq" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"ps" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors) +"py" = ( +/obj/effect/fake_sun/underwater/lighter, +/obj/effect/landmark/map_data/underwater_casino, +/turf/unsimulated/wall/planetary/virgo3c, +/area/redgate/underwater_casino) +"pz" = ( +/obj/structure/dummystairs, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"pD" = ( +/obj/structure/bed/chair/comfy/rounded/brown, +/turf/simulated/floor/tiled/eris/steel/golden, +/area/redgate/underwater_casino/indoors/upper/casino) +"pK" = ( +/obj/structure/table/rack/shelf, +/obj/item/tank/oxygen/yellow{ + pixel_y = 12 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 7 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = 2 + }, +/obj/item/tank/oxygen/yellow{ + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"qc" = ( +/obj/machinery/wheel_of_fortune{ + pixel_x = 0 + }, +/turf/simulated/floor/tiled/eris/dark/bluecorner, +/area/redgate/underwater_casino/indoors/upper/casino) +"qk" = ( +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"qs" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"qy" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"qD" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"qG" = ( +/obj/machinery/door/airlock/angled_tgmc/security{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors) +"qI" = ( +/obj/structure/railing, +/obj/random/maintenance, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"qL" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"qM" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"rb" = ( +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"ri" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"ro" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 5 + }, +/obj/structure/table/bench/marble, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"rq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"rI" = ( +/obj/structure/window/reinforced, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/red, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = 5 + }, +/obj/item/pen{ + pixel_y = -2; + pixel_x = -8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"rP" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"sc" = ( +/obj/structure/redgate/away, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"sd" = ( +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"sh" = ( +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/obj/item/reagent_containers/food/snacks/carpmeat/fish, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"si" = ( +/obj/effect/floor_decal/borderfloor/corner/purple, +/obj/effect/floor_decal/corner/beige/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"sk" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 8 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"sn" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"sv" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"sz" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"sD" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"sI" = ( +/mob/living/simple_mob/vore/lamia/zebra/shirt, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"sN" = ( +/obj/structure/railing, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"ta" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors/upper/casino) +"tg" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"tr" = ( +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"tx" = ( +/obj/structure/table/darkglass, +/obj/machinery/chemical_dispenser/bar_coffee/full{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"tE" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"tO" = ( +/obj/structure/flora/pottedplant/aquatic, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"tT" = ( +/turf/simulated/floor/water/underwater, +/area/redgate/underwater_casino/outdoors) +"ug" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"uk" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"uE" = ( +/obj/structure/table/fancyblack, +/obj/machinery/door/window/southright{ + layer = 3.2 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"uG" = ( +/obj/machinery/vending/dinnerware{ + dir = 8; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"uI" = ( +/obj/structure/sign/painting/public/west, +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors/upper/hall) +"uK" = ( +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"uN" = ( +/obj/structure/sign/poster{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"uP" = ( +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"uT" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors/upper/casino) +"uV" = ( +/obj/machinery/oneuse_chipmachine{ + pixel_y = 27 + }, +/turf/simulated/floor/tiled/eris/bcircuit, +/area/redgate/underwater_casino/indoors/upper/hall) +"uY" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/obj/structure/atmospheric_retention_field/underdoors, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"vc" = ( +/obj/machinery/vending/loadout/loadout_misc, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"vl" = ( +/turf/simulated/open, +/area/redgate/underwater_casino/indoors) +"vn" = ( +/obj/structure/table/darkglass, +/obj/machinery/chemical_dispenser/bar_syrup/full{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"vo" = ( +/obj/machinery/appliance/mixer/candy, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"vs" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"vC" = ( +/obj/structure/casino_table/blackjack_l{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"vJ" = ( +/obj/item/spacecasinocash/c10{ + pixel_y = 8; + pixel_x = -9 + }, +/obj/random/chips/better{ + pixel_y = 9; + pixel_x = 5 + }, +/obj/random/chips/better{ + pixel_x = -6 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/barback) +"vM" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/shop) +"vS" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"wh" = ( +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"wq" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"wy" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"wG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"wH" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"wO" = ( +/obj/structure/window/reinforced{ + dir = 1; + pixel_y = 4 + }, +/obj/structure/bed/chair/sofa/corp/left{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"wY" = ( +/obj/machinery/appliance/cooker/grill, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"xe" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/table/steel, +/obj/item/paper_bin{ + pixel_y = 4; + pixel_x = -4 + }, +/obj/item/pen{ + pixel_y = -2; + pixel_x = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"xh" = ( +/obj/structure/table/standard, +/obj/machinery/reagentgrinder{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"xk" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 6 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"xp" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/cabbage, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/obj/fruitspawner/rice, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"xq" = ( +/obj/structure/table/darkglass, +/obj/machinery/chemical_dispenser/bar_alc/full{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"xz" = ( +/obj/machinery/light/floortube{ + dir = 8 + }, +/obj/structure/casino_table/roulette_chart, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/casino) +"xC" = ( +/obj/structure/bed/chair/sofa/corp/right, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"xJ" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/obj/structure/sign/painting/public/south, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"xS" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"xU" = ( +/obj/machinery/door/airlock/angled_bay/standard/color{ + dir = 4; + door_color = "#9c9c9c"; + fill_color = "#5c5c5c"; + name = "Unisex Restrooms"; + stripe_color = "#89bd66" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"ym" = ( +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/upper/casino) +"yp" = ( +/obj/machinery/vending/fitness{ + pixel_y = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"yF" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"yG" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"yJ" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"zb" = ( +/obj/structure/prop/transmitter, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/redgate/underwater_casino/indoors/upper/comms) +"zc" = ( +/obj/machinery/door/airlock/angled_tgmc/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/comms) +"zo" = ( +/obj/structure/bed/chair/sofa/corp, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"zs" = ( +/obj/structure/table/reinforced, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"zz" = ( +/obj/machinery/vending/bepis{ + pixel_y = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"zE" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"zH" = ( +/obj/structure/casino_table/blackjack_m, +/obj/item/deck/cards/casino, +/obj/machinery/light/floortube, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"zI" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/structure/railing, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"zK" = ( +/obj/random/vendorfood{ + dir = 4; + pixel_x = -7 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"zM" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/structure/table/bench/marble, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"zU" = ( +/turf/simulated/floor/tiled/eris/steel/bar_light, +/area/redgate/underwater_casino/indoors/upper/bar) +"zW" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"Ad" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Aq" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/maintenance/misc, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Ay" = ( +/obj/structure/casino_table/blackjack_r{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"AC" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"AF" = ( +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Bb" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/structure/sign/painting/public/east, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Bg" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors) +"Bj" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Bp" = ( +/obj/structure/casino_table/blackjack_r, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"BN" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"BS" = ( +/obj/structure/ladder{ + pixel_y = 3 + }, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"BW" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/hall) +"Cb" = ( +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"Ce" = ( +/obj/machinery/door/airlock/angled_tgmc/security_glass{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors) +"Cf" = ( +/obj/structure/window/reinforced{ + pixel_y = -4 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/carpet/turcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"Cr" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_x = 9; + pixel_y = 7 + }, +/obj/random/plushie, +/obj/item/spacecasinocash/c1{ + pixel_y = 11; + pixel_x = -6 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/barback) +"CB" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"CP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"CW" = ( +/obj/machinery/alarm/alarms_hidden{ + dir = 1; + pixel_y = -20 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Dg" = ( +/obj/machinery/smartfridge/drinks, +/obj/machinery/light/small/neon/booze1{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"Dm" = ( +/turf/unsimulated/wall/planetary/virgo3c, +/area/redgate/underwater_casino/outdoors) +"Dn" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/structure/sign/painting/public/west, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Ds" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 9 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Dt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/maintenance/misc, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"DD" = ( +/obj/structure/table/darkglass, +/obj/item/material/ashtray/glass{ + pixel_x = -15; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"DF" = ( +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"DM" = ( +/obj/structure/ladder, +/obj/effect/floor_decal/industrial/outline/blue, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"DO" = ( +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"DW" = ( +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"Ek" = ( +/obj/machinery/telecomms/relay/preset/station{ + name = "city telecomms relay" + }, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/redgate/underwater_casino/indoors/upper/comms) +"EF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"EQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/polarized/full{ + id = "c_vacantlot" + }, +/obj/structure/window/reinforced/polarized{ + id = "c_vacantlot" + }, +/obj/structure/window/reinforced/polarized{ + dir = 1; + id = "c_vacantlot" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"Fa" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"Fd" = ( +/obj/structure/railing{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Fs" = ( +/obj/structure/window/reinforced{ + dir = 8; + pixel_x = -4 + }, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"Ft" = ( +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Fx" = ( +/obj/structure/sign/department/bar{ + pixel_y = 32; + plane = -34 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"Fy" = ( +/obj/structure/railing, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"FF" = ( +/obj/machinery/door/airlock/angled_tgmc/security_glass, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors) +"FG" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/light, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"FJ" = ( +/obj/structure/railing, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"FS" = ( +/obj/structure/table/woodentable, +/obj/item/storage/box/roulette_balls_fancy{ + pixel_y = 11; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"FT" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 4 + }, +/obj/machinery/light/small/neon/dice{ + pixel_y = 28 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"FV" = ( +/obj/item/stool/baystool/padded{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"Ge" = ( +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"Gn" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Gw" = ( +/obj/structure/prop/grid_checker, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/comms) +"GP" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"GQ" = ( +/obj/machinery/vending/cigarette{ + dir = 4; + pixel_x = -7 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"GS" = ( +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"GY" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock"; + dir = 1 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"GZ" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"Hg" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/table/steel_reinforced, +/obj/item/flashlight/lamp{ + pixel_y = 11; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Hn" = ( +/obj/structure/closet/crate/bin{ + anchored = 1 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Hq" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 1 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Hw" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"HD" = ( +/obj/machinery/photocopier, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"HG" = ( +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"HH" = ( +/obj/structure/table/rack/shelf, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 13 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 9 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = 3 + }, +/obj/item/clothing/shoes/swimmingfins{ + pixel_y = -1 + }, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"HK" = ( +/obj/structure/table/gamblingtable, +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"HP" = ( +/obj/structure/table/standard, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 4 + }, +/obj/item/multitool{ + pixel_x = 17; + pixel_y = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"HQ" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/mob/living/simple_mob/vore/succubus, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"HW" = ( +/obj/machinery/vending/weeb{ + dir = 4; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"HY" = ( +/obj/structure/sink/kitchen{ + dir = 4; + pixel_x = 11; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Iq" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/red, +/obj/machinery/door/window/northright, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Is" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"It" = ( +/obj/structure/table/borosilicate, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/lounge) +"ID" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 6; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"IK" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"IO" = ( +/obj/structure/casino_table/blackjack_l, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"IR" = ( +/obj/structure/casino_table/roulette_long, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/casino) +"IS" = ( +/obj/structure/table/standard, +/obj/machinery/light/floortube{ + dir = 8 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"IV" = ( +/obj/structure/table/rack, +/obj/random/snack{ + pixel_y = 11 + }, +/obj/random/snack{ + pixel_y = 6 + }, +/obj/random/snack{ + pixel_y = 1 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"IW" = ( +/obj/structure/table/woodentable, +/obj/structure/closet/walllocker_double/casino/north, +/obj/item/storage/pill_bottle/dice{ + pixel_y = 12; + pixel_x = -6 + }, +/obj/item/storage/pill_bottle/dice_nerd{ + pixel_y = 3; + pixel_x = -6 + }, +/obj/item/deck/cards/casino/triple{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"Jc" = ( +/obj/structure/prop/machine/tgmc_console4/starts_on, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/comms) +"Jf" = ( +/obj/random/vendordrink{ + dir = 4; + pixel_x = -7 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Jl" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + name = "Bar"; + stripe_color = "#89bd66" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bar) +"Ju" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 4 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"JG" = ( +/obj/structure/table/gamblingtable, +/obj/item/deck/cards/casino{ + pixel_y = 6 + }, +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/tiled/eris/steel/bar_dance, +/area/redgate/underwater_casino/indoors/upper/casino) +"JS" = ( +/obj/structure/table/reinforced, +/obj/random/chips{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/random/chips, +/obj/random/chips{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/machinery/light/small, +/turf/simulated/floor/wood/broken, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"JT" = ( +/obj/structure/table/reinforced, +/obj/random/maintenance/medical, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"JY" = ( +/obj/structure/table/standard, +/obj/item/book/manual/chef_recipes{ + pixel_x = -9; + pixel_y = 6 + }, +/obj/item/book/manual/cook_guide{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Ke" = ( +/obj/structure/railing, +/obj/random/trash_pile, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Kf" = ( +/obj/structure/table/hardwoodtable, +/obj/effect/floor_decal/spline/fancy/wood, +/obj/random/maintenance/foodstuff, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"Kg" = ( +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/janitorcloset) +"Kk" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"Kl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals5/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3/purple{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"KC" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"KM" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass/common, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"KO" = ( +/obj/structure/table/darkglass, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"KP" = ( +/obj/structure/prop/machine/tgmc_console2/starts_on, +/turf/simulated/floor/tiled/eris/dark/orangecorner, +/area/redgate/underwater_casino/indoors/upper/comms) +"KZ" = ( +/obj/structure/table/darkglass, +/obj/machinery/chemical_dispenser/bar_soft/full{ + pixel_y = 9 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"Lf" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 6 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Lh" = ( +/obj/structure/disposalpipe/junction, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"LE" = ( +/obj/item/clothing/gloves/yellow, +/obj/item/storage/toolbox/electrical, +/obj/item/multitool, +/obj/structure/closet/walllocker_double/emergency_engi/west, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/comms) +"LI" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"LL" = ( +/obj/structure/window/reinforced, +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/red, +/obj/machinery/recharger{ + pixel_y = 4; + pixel_x = -5 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"LN" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors) +"LW" = ( +/obj/structure/closet{ + name = "prize closet" + }, +/obj/item/clothing/accessory/collar/casinosentientprize, +/obj/item/clothing/accessory/collar/casinosentientprize, +/obj/item/clothing/accessory/collar/casinosentientprize, +/obj/item/clothing/accessory/collar/casinosentientprize_fake, +/obj/item/clothing/accessory/collar/casinosentientprize_fake, +/obj/item/clothing/accessory/collar/casinosentientprize_fake, +/obj/item/clothing/under/fienddress, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"LX" = ( +/obj/structure/table/darkglass, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_y = 5; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/eris/steel/techfloor, +/area/redgate/underwater_casino/indoors/upper/bar) +"Md" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/machinery/light/small/neon/generic_green{ + pixel_y = 26; + pixel_x = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Me" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/borderfloor/corner2/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Mp" = ( +/turf/simulated/wall/tgmc/window/redstripe_r/reinf, +/area/redgate/underwater_casino/indoors) +"Mr" = ( +/obj/structure/bed/chair/sofa/corp{ + dir = 4 + }, +/obj/machinery/light{ + dir = 8; + light_color = "#575656"; + name = "dim light" + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"Ms" = ( +/obj/machinery/door/window/southright, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Mt" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"MG" = ( +/obj/random/maintenance, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"MN" = ( +/obj/structure/table/standard, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"MX" = ( +/obj/effect/floor_decal/corner/beige{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Nc" = ( +/obj/structure/mirror{ + pixel_y = 38 + }, +/obj/structure/sink{ + pixel_y = 20 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"Nj" = ( +/obj/machinery/light, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"Nv" = ( +/obj/structure/table/fancyblack, +/obj/structure/window/basic, +/turf/simulated/floor/carpet/brown, +/area/redgate/underwater_casino/indoors/upper/casino) +"Nz" = ( +/obj/structure/casino_table/craps{ + dir = 1 + }, +/obj/item/storage/pill_bottle/dice, +/turf/simulated/floor/carpet/purcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"NB" = ( +/obj/machinery/door/airlock/angled_bay/double/glass{ + name = "Game Floor"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino) +"NC" = ( +/turf/simulated/wall/tgmc/darkwall, +/area/redgate/underwater_casino/indoors/upper/airlock/south) +"NE" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 10 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/entry) +"NM" = ( +/obj/structure/railing, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"NS" = ( +/obj/item/stool/baystool/padded{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"NW" = ( +/obj/machinery/disposal/wall{ + dir = 4; + plane = -34 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"Og" = ( +/obj/structure/casino_table/roulette_table/long, +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/casino) +"On" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 5 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Ot" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Ow" = ( +/obj/structure/reagent_dispensers/water_cooler/full{ + dir = 4; + pixel_x = -7 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"OM" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/vacant) +"ON" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"OT" = ( +/obj/structure/table/glass, +/obj/random/coin, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"Pb" = ( +/turf/simulated/wall/tgmc/darkwall/deco0{ + can_open = 1; + desc = "A huge chunk of metal used to separate rooms. A faint gust can be felt coming from this one..." + }, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Pw" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"PA" = ( +/obj/structure/bed/chair/backed_grey{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/bar) +"PH" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/filingcabinet/chestdrawer{ + pixel_y = 22; + pixel_x = -7; + density = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"PR" = ( +/obj/machinery/light/small/neon/bar{ + pixel_y = 25 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/book/manual/casino{ + pixel_y = 6 + }, +/obj/item/book/manual/casino{ + pixel_y = -9 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"PV" = ( +/obj/structure/bed/chair/sofa/corp/right{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/gray_platform, +/area/redgate/underwater_casino/indoors/upper/bar) +"Qb" = ( +/obj/machinery/vending/altevian{ + pixel_y = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"Qd" = ( +/obj/machinery/vending/nukie{ + pixel_y = 8 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"Qk" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/table/steel_reinforced, +/obj/item/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Qu" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Qw" = ( +/obj/machinery/light/small/neon/booze2{ + pixel_y = 30; + pixel_x = 9 + }, +/obj/structure/table/wooden_reinforced, +/obj/item/book/manual/casino{ + pixel_y = 6 + }, +/obj/item/book/manual/casino{ + pixel_y = -9 + }, +/turf/simulated/floor/tiled/milspec/raised, +/area/redgate/underwater_casino/indoors/upper/entry) +"Qy" = ( +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/table/steel_reinforced, +/obj/random/maintenance/security, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Qz" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"QA" = ( +/obj/structure/casino_table/blackjack_m{ + dir = 1 + }, +/obj/item/deck/cards/casino, +/obj/machinery/light/floortube{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"QC" = ( +/obj/structure/bed/chair/comfy/rounded/green, +/turf/simulated/floor/tiled/eris/steel/golden, +/area/redgate/underwater_casino/indoors/upper/casino) +"QR" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 1 + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"QV" = ( +/turf/simulated/floor/tiled/eris/steel/cyancorner, +/area/redgate/underwater_casino/indoors/upper/shop) +"Rd" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Rf" = ( +/obj/structure/sign/painting/public/south, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"Rt" = ( +/obj/structure/table/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/milspec/sterile, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"RC" = ( +/obj/effect/floor_decal/steeldecal/steel_decals6/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"RF" = ( +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"RK" = ( +/obj/random/maintenance/morestuff, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"RP" = ( +/obj/machinery/slot_machine, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/slots) +"RT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"RW" = ( +/obj/random/maintenance, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"SF" = ( +/mob/living/simple_mob/vore/fennec/huge{ + autodoom = 0; + ghostjoin = 1; + vore_bump_chance = 25; + vore_pounce_chance = 50; + name = "Bridget"; + gender = "female"; + desc = "A dusty big-eared sandfox! While adorable, she also has a tendency to give most onlookers the stink-eye." + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"SI" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/machinery/holoposter{ + dir = 4; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"SK" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"SO" = ( +/obj/structure/prop/machine/tgmc_console3/starts_on, +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/comms) +"SU" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Te" = ( +/obj/structure/table/rack, +/obj/item/storage/box/donut{ + pixel_y = 7 + }, +/obj/item/storage/box/donut, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"Ti" = ( +/obj/random/trash_pile, +/obj/random/maintenance, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"TA" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 9 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"TN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"TS" = ( +/obj/structure/table/steel_reinforced, +/obj/effect/floor_decal/milspec/color/red, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/modular_computer/laptop/preset/custom_loadout/standard, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"TW" = ( +/turf/simulated/wall/tgmc/darkwall/deco1, +/area/redgate/underwater_casino/indoors/upper/casino) +"Ui" = ( +/obj/structure/table/woodentable, +/obj/item/storage/wallet/casino{ + pixel_y = 8; + pixel_x = 1 + }, +/obj/item/storage/wallet/casino{ + pixel_y = 3; + pixel_x = -3 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"Un" = ( +/obj/effect/floor_decal/borderfloor/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border, +/obj/effect/floor_decal/borderfloor/corner2/purple, +/obj/effect/floor_decal/corner/beige/bordercorner2, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Ur" = ( +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled/eris/steel/monofloor, +/area/redgate/underwater_casino/indoors/upper/airlock/east) +"Uw" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 1 + }, +/obj/machinery/computer/timeclock/premade/north, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Uy" = ( +/obj/machinery/disposal/wall{ + dir = 1 + }, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"UB" = ( +/turf/simulated/wall/tgmc/darkwall/deco3, +/area/redgate/underwater_casino/indoors/upper/casino) +"UF" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"UP" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 8 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 5 + }, +/obj/machinery/light{ + dir = 8 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"UT" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 4 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"Vd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/cafe, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"Vh" = ( +/obj/machinery/light/floortube{ + dir = 4; + pixel_x = 2 + }, +/turf/simulated/floor/tiled/eris/dark/techfloor_grid, +/area/redgate/underwater_casino/indoors/upper/entry) +"Vi" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/bcarpet, +/area/redgate/underwater_casino/indoors/upper/casino) +"Vj" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"Vm" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue, +/area/redgate/underwater_casino/indoors/upper/casino) +"Vz" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + name = "glass airlock" + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/hall) +"VE" = ( +/obj/effect/floor_decal/milspec/color/red/half, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"VM" = ( +/obj/structure/bed/chair/bay/comfy/green{ + dir = 1 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"VN" = ( +/obj/structure/bed/chair/sofa/corp/corner{ + dir = 1 + }, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/lounge) +"VW" = ( +/obj/machinery/vending/sol{ + dir = 8; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/redgate/underwater_casino/indoors/upper/shop) +"Wc" = ( +/obj/structure/table/bench/marble, +/obj/effect/floor_decal/milspec/color/red, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"Wf" = ( +/obj/structure/table/steel_reinforced, +/obj/item/folder/red{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors) +"Ww" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/wood/alt/parquet, +/area/redgate/underwater_casino/indoors) +"WB" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/vacant) +"WP" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/monotile/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Xb" = ( +/turf/simulated/floor/tiled/eris/dark/techfloor, +/area/redgate/underwater_casino/indoors/upper/comms) +"Xf" = ( +/obj/random/cutout, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Xn" = ( +/obj/machinery/light/floortube{ + dir = 8; + pixel_x = -6 + }, +/turf/simulated/floor/glass/reinforced, +/area/redgate/underwater_casino/indoors/upper/casino) +"Xr" = ( +/obj/structure/table/wooden_reinforced, +/turf/simulated/floor/carpet/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Xu" = ( +/obj/machinery/light/floortube{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"XF" = ( +/obj/random/mob/semirandom_mob_spawner/vore/retaliate/b, +/obj/structure/railing{ + dir = 8 + }, +/obj/random/maintenance, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"XM" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 8 + }, +/turf/simulated/open, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"XX" = ( +/obj/structure/disposalpipe/junction{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"XY" = ( +/obj/effect/floor_decal/milspec/color/red/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"XZ" = ( +/obj/structure/flora/pottedplant/crystal, +/turf/simulated/floor/bmarble, +/area/redgate/underwater_casino/indoors/upper/vacant) +"Yf" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + name = "Bar"; + stripe_color = "#89bd66"; + dir = 8 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/bar) +"Yk" = ( +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Yq" = ( +/obj/effect/floor_decal/borderfloor/corner/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/bordercorner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Yu" = ( +/obj/structure/toilet{ + pixel_y = 13 + }, +/turf/simulated/floor/tiled/white, +/area/redgate/underwater_casino/indoors/upper/bathroom) +"Yx" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Yz" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"YG" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/beige/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 1 + }, +/obj/effect/floor_decal/corner/beige/bordercorner2{ + dir = 1 + }, +/obj/machinery/light/small/neon/dice{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"YM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"YO" = ( +/obj/structure/table/reinforced, +/obj/random/pizzabox, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"YW" = ( +/obj/machinery/door/airlock/angled_bay/standard/glass{ + door_color = "#9c9c9c"; + name = "Kitchen"; + stripe_color = "#89bd66" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/kitchen) +"YX" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors) +"Zf" = ( +/obj/machinery/door/airlock/angled_bay/hatch{ + name = "maintenance access"; + stripe_color = "#454545"; + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/shop) +"Zg" = ( +/obj/effect/floor_decal/borderfloor/purple{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightorange/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2/purple{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7/purple{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lightorange/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/purple, +/area/redgate/underwater_casino/indoors/upper/hall) +"Zh" = ( +/obj/machinery/door/airlock/angled_bay/standard/color/common{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_ridged, +/area/redgate/underwater_casino/indoors/upper/casino/back) +"Zj" = ( +/obj/structure/table/reinforced, +/obj/random/chips, +/obj/item/spacecasinocash/c10{ + pixel_y = 4; + pixel_x = -5 + }, +/turf/simulated/floor/wood, +/area/redgate/underwater_casino/indoors/upper/maintenance) +"Zq" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) +"ZC" = ( +/obj/structure/bed/chair/bay/comfy/brown{ + dir = 8 + }, +/turf/simulated/floor/carpet/blue2, +/area/redgate/underwater_casino/indoors/upper/casino) +"ZF" = ( +/obj/effect/floor_decal/milspec/color/red/half{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/redgate/underwater_casino/indoors) +"ZN" = ( +/obj/machinery/casino_prize_dispenser, +/turf/simulated/floor/tiled/eris/dark, +/area/redgate/underwater_casino/indoors/upper/casino) +"ZO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/eris/steel/orangecorner, +/area/redgate/underwater_casino/indoors/upper/bar) + +(1,1,1) = {" +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +py +"} +(2,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fW +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(3,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fY +tT +jS +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(4,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(5,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fU +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +kk +tT +tT +fR +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(6,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(7,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +tT +tT +tT +tT +tT +tT +fR +tT +fT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +hq +hq +jw +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(8,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +jS +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +gg +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +hq +hq +hq +jz +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(9,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fV +tT +tT +tT +tT +ge +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +fY +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fU +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(10,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fU +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +fV +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +fV +tT +tT +tT +tT +tT +hq +hq +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(11,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fR +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hr +hq +hq +hq +hq +tT +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(12,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +Dm +kl +kl +kl +kl +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fR +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +Dm +Dm +tT +tT +tT +go +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(13,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fR +tT +tT +Dm +Dm +kl +kl +hy +kl +kl +kl +kz +kw +kl +kl +kl +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +Dm +Dm +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(14,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fW +tT +lg +fW +tT +tT +ld +kY +ku +gK +kD +kl +ku +ku +gK +km +kl +Dm +Dm +Dm +Dm +Dm +Dm +go +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +fZ +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(15,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fR +fZ +fR +fW +fZ +fZ +ld +la +ku +ku +ku +gP +ku +ku +ku +kn +kl +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(16,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fR +fV +fV +tT +tT +ld +lb +ku +ku +ku +kl +ku +ku +ku +ko +kl +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +jw +hq +tT +tT +tT +Dm +Dm +gI +gD +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(17,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fW +tT +fR +fZ +fW +fT +kl +kl +kl +kl +kl +kl +kA +ku +ku +kq +kl +Dm +Dm +Dm +Dm +tT +tT +tT +fW +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +jB +hq +hq +hq +hq +hq +tT +tT +tT +Dm +gD +gD +gD +gD +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +fT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +at +"} +(18,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fW +fW +fR +fR +fY +fZ +kl +kR +kJ +kE +kl +kB +gM +ku +kr +kl +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +Dm +Dm +gD +gD +hC +gD +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(19,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +fR +gd +fR +fR +fV +ld +kS +kK +kF +kl +ku +ku +ku +ks +kl +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +Dm +Dm +hD +gD +hC +gD +gD +Dm +hs +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(20,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +fR +fR +fR +gQ +ld +kT +kM +kG +gP +ku +ku +ku +kt +kl +Dm +Dm +tT +tT +ge +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +hq +jA +hq +hq +hq +hq +hq +hq +tT +tT +Dm +gD +ke +hC +hC +gD +gD +gD +hC +jV +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(21,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fR +fV +fZ +fR +fV +fZ +ld +kU +kN +kH +kl +ky +ky +kv +kl +kl +Dm +Dm +tT +tT +tT +tT +tT +jS +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +Dm +hC +gD +hC +gD +gD +jY +gD +gD +gD +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +fR +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +fU +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(22,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fR +fZ +fR +fR +fR +tT +kl +kV +kO +kI +kl +kl +kl +kl +kl +Dm +Dm +Dm +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +Dm +jZ +jZ +jZ +gD +gD +gD +hC +gD +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +fW +tT +fY +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(23,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fR +fR +fW +lf +fW +kl +kl +kl +kl +kl +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fZ +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +Dm +kh +kd +jZ +jZ +gD +gD +gD +gD +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fV +tT +fR +tT +tT +fV +fZ +tT +Dm +tT +tT +gx +tT +tT +tT +tT +fZ +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(24,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fV +fR +fR +fV +fR +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +jF +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +fZ +tT +tT +Dm +ki +kf +ka +jZ +gD +gD +jX +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fW +fZ +tT +tT +tT +fV +tT +tT +fV +tT +tT +Dm +tT +tT +jS +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(25,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fW +fZ +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +kj +kg +kd +jZ +hC +gD +gD +Dm +Dm +Dm +Dm +Dm +tT +fZ +tT +tT +fR +fV +tT +tT +tT +fR +fV +tT +fZ +tT +Dm +Dm +tT +tT +fY +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(26,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +fR +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +kd +jZ +gD +gD +gD +gD +Dm +Dm +Dm +Dm +fV +tT +fW +fW +tT +tT +tT +tT +fZ +tT +fW +tT +aI +tT +tT +fR +Dm +Dm +tT +tT +tT +tT +tT +fT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +tT +hq +hq +hq +jy +hq +hq +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(27,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fW +fR +tT +Dm +Dm +Dm +tT +tT +tT +fT +tT +tT +fZ +tT +fZ +tT +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +jz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(28,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fR +fR +Dm +Dm +Dm +Dm +Dm +fR +tT +tT +fV +tT +fW +fZ +fV +tT +tT +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hr +hq +hq +hq +jw +hq +tT +tT +tT +Dm +Dm +Dm +at +"} +(29,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fU +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fY +tT +aI +fV +tT +fT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(30,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fW +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fR +fR +tT +fW +tT +Dm +Dm +Dm +tT +tT +tT +tT +fY +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +jA +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +fW +tT +tT +Dm +Dm +Dm +at +"} +(31,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +jy +hq +hq +hq +hq +hq +hq +jw +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(32,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +tT +gx +tT +tT +tT +tT +Dm +Dm +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fZ +fZ +aI +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(33,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +fV +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fR +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +jF +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +fR +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(34,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +Dm +tT +tT +tT +tT +tT +tT +fR +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fR +fW +tT +fV +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +tT +tT +hq +hq +hq +hq +hq +hq +hq +jE +hq +hq +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(35,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +fW +tT +tT +tT +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fY +tT +fZ +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +hq +fW +hq +hq +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(36,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +jS +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +tT +tT +fV +tT +tT +hq +hr +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(37,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +fV +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(38,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fV +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +tT +Dm +Dm +tT +tT +tT +fV +fV +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +tT +tT +tT +tT +tT +tT +hq +tT +hq +hq +hq +hq +jz +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(39,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +jF +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(40,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fU +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +tT +hq +hq +tT +hq +hq +tT +hq +hq +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(41,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +jE +hq +hq +jA +tT +hq +hq +tT +hq +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(42,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fU +tT +tT +tT +tT +tT +tT +tT +fR +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +hq +hq +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(43,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fU +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(44,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cj +cj +cj +bP +bY +bY +cb +bY +bY +bP +aL +aL +aL +aL +aL +tT +tT +tT +tT +tT +tT +tT +bl +bl +Mp +Mp +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(45,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +cj +cC +cC +cC +cC +cj +cu +co +bP +cg +bZ +bZ +bZ +bQ +bP +Ft +HQ +Yk +RW +aL +tT +tT +tT +tT +tT +tT +tT +bl +Wc +Wc +Wc +bl +Mp +Mp +Mp +Mp +bl +bl +Mp +Mp +Mp +bl +bl +bl +bl +bl +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(46,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cj +cP +co +co +co +co +co +cr +bP +cg +bZ +bZ +bZ +bR +bP +aM +aM +Ft +Yk +aL +aL +aL +aL +tT +tT +tT +tT +Mp +Ds +ZF +ZF +ZF +ZF +ZF +ZF +ZF +SU +bl +mV +mV +ad +bl +Ow +mz +tO +aa +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(47,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cC +cu +co +cu +cu +cu +cu +co +bP +ch +bZ +bZ +bZ +bS +bP +DM +aM +aM +es +JS +aL +wh +aL +aL +ba +ba +aL +bl +oJ +DO +DO +DO +DO +DO +DO +DO +DO +FF +fS +fS +fS +FF +Ww +Ww +Ww +Vj +bl +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(48,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jv +gh +jk +gh +jl +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +cC +co +co +co +co +co +co +co +bP +ci +bZ +bZ +bZ +bT +bP +Yk +Yk +aM +aM +YO +aL +aM +lO +Ti +pm +pm +aZ +nb +oJ +DO +mj +ug +ug +ug +cS +DO +an +js +Bg +Bg +Bg +js +YX +YX +YX +LI +tr +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(49,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jD +gh +gh +jj +gh +jh +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cC +cH +lJ +cH +cu +cy +cj +cj +bP +bP +bP +cd +bY +bY +bP +Zj +fd +KC +Ft +JT +aL +RK +Is +dw +pm +pm +ag +bl +qD +dR +dN +Qk +Qy +Bj +qD +DO +sv +bl +vl +vl +vl +js +LN +Wf +LN +LI +tr +bl +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fU +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(50,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jh +jh +jh +jp +jh +gh +ji +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cj +cN +cN +cN +cu +cu +cj +vJ +co +cj +NE +ce +fX +ol +bC +bC +bC +bC +aL +aL +aL +dw +aM +aM +pm +pm +bl +bl +bl +qG +bl +bl +bl +js +js +Ce +bl +bl +vl +vl +vl +js +LN +LN +LN +LI +SF +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(51,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +jh +jh +jh +jh +jh +gh +jj +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cv +cw +cw +cw +cw +cv +cQ +cv +cv +cv +cv +cv +dH +Cr +cj +oV +bU +bU +bU +bU +bH +bG +bC +Ke +pm +pm +pm +pm +pm +pm +pm +bl +aT +DO +dS +dO +xe +bl +PH +LL +DO +SU +bl +vl +vl +vl +js +ps +ps +ps +LI +tr +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(52,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +jh +jh +jh +jh +jh +jh +jC +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +cw +vn +cY +cY +DW +ha +cF +NW +nD +cF +dq +cv +cj +cj +cj +ht +bU +bU +bU +bU +bH +bH +bC +qI +pm +aL +aL +aL +aL +aL +pm +bl +zM +DO +dT +XY +SU +TS +oJ +Ms +DO +DO +vl +vl +vl +af +bl +CP +ab +CP +bW +bl +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +gk +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(53,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gh +gh +gh +jh +jq +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +gd +tT +tT +cw +xq +cY +cY +KO +fN +cF +GP +eF +cF +sD +cv +bC +PR +Kk +sd +sd +sd +sd +bC +bC +bC +bC +FJ +pm +Aq +qM +Mt +Dt +zI +pm +bl +ro +cS +dT +DO +VE +Iq +QR +ne +DO +DO +vl +vl +vl +vl +bl +bl +bl +bl +bl +bl +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(54,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gh +gh +gh +jt +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cw +KZ +cY +cZ +KO +fN +cF +bu +Kf +cF +aV +cw +sd +rP +Vh +rP +rP +Vh +rP +sd +yG +bI +pm +pm +pm +pm +pm +pm +pm +pm +pm +bl +Ot +oJ +dT +aD +ay +bl +Hg +rI +DO +HD +bl +bl +bl +bl +bl +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(55,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +gi +gi +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cw +tx +cY +cY +cV +fN +cF +PA +sk +cF +aV +Jl +sd +rP +rP +rP +rP +rP +rP +sd +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +bl +js +js +dU +js +js +bl +bl +bl +bl +bl +bl +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +go +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(56,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +di +di +di +di +di +di +cv +Dg +cY +cY +KO +fN +cF +ZO +cF +cF +aV +cw +sd +rP +rP +rP +rP +rP +rP +sd +bM +hh +bB +SI +sz +sz +sz +Dn +sz +sz +sz +Ad +aU +fz +dV +bf +Ad +Ad +Ad +Ad +Ad +FG +ai +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(57,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +di +di +iV +wY +fP +oc +vo +cv +hA +cY +cY +KO +fN +cF +GP +eF +cF +aV +cw +Fx +uK +rP +rP +sc +rP +dp +ey +ex +dC +dC +dC +dL +dC +dC +dC +dC +dC +dC +dC +dC +dC +dx +DF +DF +DF +DF +DF +DF +SK +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(58,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +dm +sh +AF +AF +AF +AF +ON +cv +LX +cY +cZ +KO +fN +cF +aj +cI +cF +sD +cw +sd +rP +rP +rP +rP +rP +eD +sd +bM +nJ +Bb +aE +eo +Zg +wq +ax +qy +jr +Zg +wq +wq +qy +RC +nP +Zg +ax +wq +IK +DF +SK +ai +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +jh +jh +jh +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(59,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +fR +hq +hq +tT +tT +tT +tT +tT +tT +fZ +tT +tT +dm +xp +AF +AF +AF +AF +Vd +cv +kZ +cY +cY +KO +fN +cF +PA +sk +cF +aV +Jl +sd +rP +rP +rP +rP +rP +eD +bq +bq +bq +bq +bq +xU +bq +aW +aW +aW +zc +aW +av +oI +oI +dW +nk +oI +av +XZ +uk +DF +SK +MX +ak +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +jh +jh +jh +jh +jh +Dm +Dm +Dm +gp +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(60,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jo +gh +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +dm +dl +AF +xh +JY +AF +CW +cv +KO +KO +KO +DD +cF +cF +ZO +cF +cF +aV +cw +sd +rP +xS +rP +rP +xS +eD +bq +bN +de +bq +Nc +ep +bq +SO +LE +Xb +Xb +Xb +av +Qz +oa +az +az +az +av +av +uk +DF +SK +MX +ak +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +jh +jh +ho +ho +ho +ho +jh +Dm +Dm +tT +gd +Dm +Dm +Dm +Dm +Dm +at +"} +(61,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +tT +gh +jo +Dm +Dm +Dm +gh +gh +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +dm +Rt +AF +dv +IS +AF +lc +YW +Zq +NS +NS +NS +Zq +Zq +Lh +nA +cF +eE +cv +bC +Qw +Kk +sd +eI +ey +bV +bq +bq +bq +bq +Nc +eq +bq +Jc +Xb +nf +nf +nf +av +ef +az +az +az +GS +Nj +av +uk +DF +SK +MX +ak +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +gh +gh +jh +jh +jh +jh +ho +ho +ho +ho +jh +Dm +Dm +Dm +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(62,1,1) = {" +at +Dm +Dm +Dm +Dm +tT +tT +tT +tT +gh +jd +gi +gi +gi +gh +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +dm +dl +AF +AF +AF +AF +AF +Qu +cF +cF +cO +cO +cO +cO +cO +XX +Uy +cv +cv +bC +bC +bC +ca +eJ +ca +bC +bq +Yu +bJ +cD +by +er +bq +Gw +Xb +nf +nf +bb +av +eg +az +GS +az +az +az +EQ +uk +DF +SK +MX +ak +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gh +gh +gi +jh +jh +jh +ho +ho +ho +ho +jh +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(63,1,1) = {" +at +Dm +Dm +Dm +tT +tT +hc +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +di +ah +AF +AF +AF +AF +AF +dh +cF +cF +cO +zU +kc +zU +cO +ZO +cG +aL +qs +aO +Ti +ai +FT +dr +Un +ai +bq +bq +bq +bq +by +by +bq +Gw +Xb +KP +zb +Ek +av +HP +WB +az +az +az +WB +EQ +uk +DF +ar +ai +ai +tT +tT +fR +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +jh +ho +ho +ho +ho +jh +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(64,1,1) = {" +at +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +di +di +zs +uG +HY +AF +AF +Qu +cF +cF +cO +kc +kc +kc +cO +CB +Zq +Yx +iO +ds +pm +ai +Uw +dr +SK +WP +bq +Yu +ev +et +by +by +bq +aW +aW +aW +aW +aW +av +MN +ea +az +WB +az +az +EQ +uk +DF +SK +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jh +jh +jh +jh +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(65,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +di +di +di +di +Hn +dj +Qu +cF +cF +cO +kc +kc +kc +cO +cF +Rf +aL +aN +qL +pm +ai +uV +dr +SK +xJ +bq +bq +bq +bq +by +hb +bq +aP +aP +wh +MG +aL +aL +av +eb +az +az +GS +az +EQ +uk +do +dn +NC +ow +ow +ow +ow +NC +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +at +"} +(66,1,1) = {" +at +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fW +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +di +di +di +cv +xC +cJ +cO +kc +kc +kc +cO +OT +PV +aL +aL +qL +cp +ai +fr +dr +SK +WP +bq +Yu +ew +eu +by +bq +bq +aO +aN +Is +hu +pm +ei +OM +ec +aJ +az +az +az +EQ +uk +dr +SK +NC +lL +aq +pK +pK +NC +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +at +"} +(67,1,1) = {" +at +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +jA +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cw +vs +db +cO +zU +kc +zU +cO +cJ +Fa +aL +qs +qL +pm +ck +gH +dt +ar +ai +bq +bq +bq +bq +bq +bq +tg +aM +aM +aN +gV +pm +qL +aL +aL +aL +az +az +az +av +dy +dr +gz +ow +ac +ac +ac +dc +ow +tT +fZ +tT +tT +tT +tT +tT +fV +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(68,1,1) = {" +at +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +cw +vs +cJ +cO +cO +cO +cO +cO +cJ +Fa +gJ +cM +nW +iO +cl +dB +eM +SK +yG +ez +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +iO +ej +Pb +BS +aL +dK +dK +dF +av +dA +dr +iY +GY +ac +ac +ac +ac +aK +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fV +tT +tT +tT +Dm +Dm +at +"} +(69,1,1) = {" +at +Dm +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +fR +tT +tT +fZ +tT +tT +tT +tT +go +tT +cw +jQ +fa +cF +cF +cF +cF +cF +zE +dz +aL +aL +aL +aL +ai +dG +dr +Rd +ai +XM +bI +kQ +Yz +Fd +lD +Fd +RT +XF +bm +Fd +iL +qL +aL +aL +aL +av +av +av +av +dy +dr +Me +ow +ac +ac +ac +ac +ow +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +tT +gk +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +at +"} +(70,1,1) = {" +at +Dm +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +cv +cv +cw +cw +cw +Yf +cw +cw +cv +cv +cv +GQ +Jf +zK +ai +BW +du +BW +ai +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +aL +Fy +qL +dE +aO +Xf +aw +kp +kp +aw +wy +dr +SK +NC +cc +eh +HH +HH +NC +tT +tT +fZ +tT +tT +fW +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +fZ +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +Dm +Dm +at +"} +(71,1,1) = {" +at +Dm +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +ak +ae +TA +Hw +Kl +hh +sz +Dn +aY +sz +sz +sz +sz +cm +EF +dr +gn +eG +UP +bD +uI +bD +hh +sz +sz +en +sz +dk +ai +sN +qL +hv +aP +aM +aw +Kg +jm +aw +gB +dr +SK +NC +ow +ow +ow +ow +NC +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +hq +tT +tT +tT +tT +tT +tT +tT +gy +fR +fR +fR +tT +tT +fR +fR +tT +tT +tT +gx +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(72,1,1) = {" +at +Dm +tT +tT +tT +hq +hq +hq +hq +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +ak +ae +wy +do +dC +dC +dC +dC +eY +dC +dC +eY +dC +dC +dC +eO +DF +DF +DF +bD +bD +bD +DF +DF +DF +DF +DF +SK +ai +NM +qL +wH +aM +aN +aw +og +dI +dD +dB +dt +SK +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +fV +tT +tT +tT +fV +fR +fR +gd +fR +fR +fV +fV +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(73,1,1) = {" +at +Dm +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +ak +ae +On +eo +xk +oS +oS +aE +eo +nJ +Bb +eZ +oS +cn +RC +dY +nJ +oS +aE +bD +bD +bD +nJ +bz +oS +Yq +DF +SK +ai +sN +qL +aX +aR +aO +aw +bw +dJ +aw +wy +dr +ar +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hr +tT +tT +tT +tT +fR +tT +fR +tT +fV +fR +tT +tT +tT +fR +fR +fR +tT +tT +tT +tT +fT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(74,1,1) = {" +at +Dm +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +jz +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +fR +tT +tT +dd +da +da +dd +da +da +cW +cx +cx +cx +cx +Zh +cx +cx +br +bs +bs +cf +eP +br +bs +bs +br +br +bs +bs +bs +br +Md +DF +ar +aF +aF +Zf +aF +aF +aF +aw +aw +aw +aw +BW +du +BW +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fV +tT +tT +fZ +tT +tT +hq +tT +tT +tT +tT +fR +tT +tT +gg +fR +fR +fR +tT +tT +tT +tT +fZ +go +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(75,1,1) = {" +at +Dm +Dm +tT +tT +tT +hg +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +RP +FV +Cf +RP +FV +fh +cx +Ui +zW +ov +fb +HG +LW +br +ZN +uP +eN +eQ +uP +bX +eC +bO +bK +wO +BN +mL +br +wy +DF +SK +aH +Qb +pq +uN +Pw +Te +aH +Ju +ng +hi +wy +dr +SK +ak +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +go +tT +fR +tT +tT +tT +tT +tT +tT +tT +fR +gg +tT +tT +tT +fV +tT +tT +tT +fR +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(76,1,1) = {" +at +Dm +Dm +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +jx +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +RP +FV +df +RP +FV +fh +cx +lu +cz +cz +cz +cz +YM +br +vc +uP +oG +eR +uP +bX +eC +bK +bK +cR +mU +uP +bs +wy +DF +SK +aH +zz +ek +QV +QV +IV +aH +Xr +Xr +rb +wy +dr +SK +ak +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +fV +tT +fZ +tT +fR +tT +fZ +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(77,1,1) = {" +at +Dm +Dm +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +go +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +fZ +tT +tT +da +mi +qk +qk +qk +qk +fi +cx +hJ +cz +cz +aQ +cz +TN +Nv +uP +uP +oG +eR +Cb +Cb +Fs +Fs +Fs +Cb +Cb +Cb +bs +wy +DF +SK +aH +yp +el +ee +ed +aF +aF +aA +aA +rb +wy +dr +SK +ak +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +tT +tT +fR +tT +fR +tT +gy +fR +fZ +aI +fZ +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(78,1,1) = {" +at +Dm +Dm +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +RP +FV +df +RP +fn +fj +cx +eB +cz +cz +cz +cz +sI +uE +uP +uP +eN +eQ +Cb +bA +bA +bA +bA +bA +bA +gc +bs +wy +DF +gz +aH +Qd +pq +QV +Pw +aH +Hq +sz +sz +sz +sn +dr +SK +ai +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +fV +tT +tT +tT +tT +tT +tT +fZ +fZ +tT +fR +fZ +tT +tT +tT +tT +tT +tT +fY +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(79,1,1) = {" +at +Dm +Dm +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +RP +FV +df +RP +fo +fk +cx +FS +oA +cz +YM +vS +kb +Nv +uP +uP +oG +eR +Cb +xz +bA +bA +xz +bA +bA +Nz +bs +au +DF +oT +jU +QV +em +ee +ee +dX +dP +dL +dC +dC +dC +dx +ar +ai +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +fZ +tT +fR +fR +tT +fV +fZ +fR +fR +gg +fR +fR +fV +fR +gd +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(80,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +hq +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +da +RP +FV +df +RP +fo +qk +br +br +br +cK +br +br +br +br +eK +uP +oG +eR +Cb +IR +bA +bA +IR +bA +bA +Cb +bs +wy +DF +wG +vM +QV +GZ +QV +ID +vM +hW +dr +si +oS +oS +oS +Lf +ai +Dm +Dm +Dm +tT +fZ +tT +tT +fR +tT +tT +tT +tT +hq +hq +hq +tT +tT +tT +tT +gd +tT +fR +fZ +fR +tT +fR +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(81,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +hq +tT +tT +tT +Dm +Dm +gi +gi +gi +jh +jh +gi +gi +gi +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +RP +FV +df +RP +fo +qk +bs +uP +uP +uP +bs +cA +uP +uP +uP +uP +eN +eQ +Cb +Og +bA +bA +Og +bA +bA +gc +dM +wy +DF +Me +aH +VW +HW +mh +kL +aH +jW +dr +SK +ai +ai +ai +ai +ai +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +fU +tT +tT +fZ +tT +fR +fR +fR +fR +tT +tT +fR +fV +fV +aI +fR +tT +fR +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(82,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +mi +qk +qk +qk +fh +cX +bs +uP +uP +uP +KM +uP +uP +uP +uP +eV +eT +eS +Cb +Cb +Cb +Cb +Cb +Cb +Cb +Nz +br +YG +DF +SK +aF +aH +aH +aH +aH +aF +kC +dr +SK +ai +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +fZ +fZ +tT +fR +tT +fR +fR +go +fR +fZ +fR +fR +fR +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(83,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +hn +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +da +RP +FV +df +RP +fp +fl +ff +fc +uP +uP +bs +bF +yF +yF +bF +eW +bE +bE +Xn +bE +bE +Xn +bE +bE +UF +oG +bt +rq +DF +cE +Vz +sz +sz +aY +sz +sz +sn +dr +ar +ai +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +go +tT +tT +tT +fR +tT +tT +fR +tT +tT +tT +fV +fR +fV +tT +fZ +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(84,1,1) = {" +at +Dm +Dm +tT +tT +fW +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +jh +gi +gi +Dm +Dm +Dm +gi +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +go +tT +da +RP +FV +dg +RP +FV +qk +bs +eW +uP +cL +br +br +ny +HK +bF +eW +ta +bE +bE +bE +bE +bE +bE +bE +oG +oG +bt +DF +DF +DF +Vz +DF +DF +DF +DF +do +dC +dx +SK +ai +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +fR +fR +fZ +fR +fV +tT +tT +fZ +fV +tT +tT +fV +fZ +fV +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(85,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +tT +tT +gi +Dm +Dm +Dm +gi +gi +gi +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +dd +da +da +da +dd +br +br +br +eW +uP +uP +br +IW +cU +kx +gl +eW +bE +bE +uT +bE +bE +uT +bE +bE +yJ +oG +bt +hW +DF +si +Vz +oS +oS +aE +RC +dY +nJ +oS +Lf +ai +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +gx +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +fR +fR +tT +tT +fR +fZ +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(86,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +tT +Dm +gi +gi +gi +gi +gi +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +jh +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +br +fm +fg +fe +uP +uP +UB +eU +QC +JG +gl +eX +eT +eT +eH +uP +uP +uP +uP +uP +uP +uP +br +FT +DF +ar +al +am +am +al +aS +iF +al +am +am +al +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fR +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +fZ +gu +tT +fZ +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(87,1,1) = {" +at +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +gi +jh +gi +gi +Dm +gi +gi +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +bs +RF +UT +UT +RF +uP +br +cU +cU +kx +gl +uP +eN +Xu +uP +uP +uP +uP +uP +uP +uP +uP +br +lw +DF +SK +am +VN +Mr +ao +fx +dZ +dQ +fx +fB +al +al +al +al +al +al +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +gw +tT +tT +tT +tT +fV +fR +fV +fV +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(88,1,1) = {" +at +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +jh +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +gi +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +bs +mv +ny +HK +RF +uP +TW +md +tE +ri +bF +uP +oG +oG +ym +ym +hm +hm +hm +ym +ym +uP +bs +wy +DF +SK +am +zo +It +It +fx +fx +fx +fx +fC +al +fu +fs +jT +aB +am +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +gA +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +fR +fW +fZ +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(89,1,1) = {" +at +Dm +Dm +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +gi +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fU +tT +tT +tT +bs +cU +cU +kx +Vi +uP +bs +bF +ZC +ZC +bF +uP +oG +oG +ym +bF +nm +aG +Ay +bF +ym +uP +bs +wy +DF +gz +al +eA +It +It +fx +fx +fx +fx +fE +al +fv +as +aB +aB +am +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fV +tT +tT +fW +aI +fZ +go +fV +fR +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(90,1,1) = {" +at +Dm +Dm +Dm +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +gi +gi +jh +jh +jd +Dm +Dm +Dm +gi +gi +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +bs +eU +pD +eL +Vi +uP +KM +uP +uP +uP +uP +uP +eN +Xu +ct +vC +bF +lt +bF +IO +Vm +uP +bs +wy +DF +oT +fQ +fx +fx +fx +fx +fx +fx +fx +fF +al +fw +ft +aB +aB +am +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +Dm +Dm +Dm +Dm +Dm +fW +fZ +tT +Dm +Dm +Dm +Dm +at +"} +(91,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +br +IW +cU +kx +Vi +cL +bs +cB +uP +uP +uP +uP +oG +oG +ct +QA +VM +bF +bx +zH +Vm +uP +bs +au +DF +wG +aS +fx +fx +fx +fx +fx +fx +fx +fG +bg +aB +aB +aB +iP +am +fZ +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fV +tT +Dm +Dm +Dm +at +"} +(92,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jh +gi +gi +gi +gi +gi +gi +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +br +br +tE +ri +RF +uP +br +br +qc +fK +uP +uP +oG +oG +ct +fD +bF +bF +bF +Bp +Vm +uP +bs +wy +DF +Me +al +bc +fx +fx +fx +fx +fH +fx +pz +fA +aB +aB +aB +aB +am +tT +fU +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +at +"} +(93,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jh +gi +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gX +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +bs +RF +AC +AC +RF +uP +uP +br +lQ +cs +uP +uP +eN +Xu +ym +ym +ym +ym +ym +ym +ym +uP +br +wy +DF +SK +am +fO +fM +fL +fJ +fI +al +am +am +al +fy +fq +fq +bL +am +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +Dm +Dm +tT +aI +Dm +Dm +at +"} +(94,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +Dm +Dm +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jb +gR +gR +gR +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +bs +ap +uP +cT +uP +uP +uP +br +br +br +br +br +cf +NB +br +br +bs +bs +bs +bs +bs +br +br +wy +DF +SK +al +al +al +am +am +am +al +tT +tT +al +am +am +am +am +al +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +fV +tT +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +at +"} +(95,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +Dm +gi +gi +gi +Dm +Dm +Dm +Dm +Dm +Dm +gY +gR +iX +iX +gC +gR +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +br +bs +bs +bs +bs +bs +bs +br +tT +ak +ae +TA +EF +gn +sz +sz +sz +sz +sz +sz +bB +SI +sz +sn +DF +SK +ai +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +fR +tT +Dm +Dm +at +"} +(96,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gi +gi +gi +gi +jh +hn +gi +Dm +Dm +Dm +Dm +gZ +iX +gR +gR +gR +iX +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +ak +cq +wy +DF +DF +DF +DF +DF +DF +DF +DF +DF +DF +DF +DF +DF +ar +ai +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +at +"} +(97,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jc +iX +iX +gR +gR +gR +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +ak +ae +Gn +oS +oS +oS +Bb +bz +oS +oS +oS +oS +oS +aE +jr +nJ +Lf +ai +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +at +"} +(98,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +iX +gR +iX +gR +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +ai +ai +ak +ak +ak +ai +ai +ak +ak +ak +ak +bd +be +be +bo +be +be +bd +Dm +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +Dm +Dm +tT +gd +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +at +"} +(99,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gR +gR +iX +iX +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +be +Ur +bn +bn +bn +bh +bd +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +tT +gi +gi +gi +gi +tT +tT +Dm +Dm +Dm +Dm +at +"} +(100,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +gW +gU +gS +gS +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +be +Ge +bn +bn +bn +bi +be +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +fW +tT +gi +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(101,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +gv +gv +gv +gS +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +be +bv +bn +bn +bn +bj +be +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +fR +tT +tT +gi +gi +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(102,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +gS +gS +gv +gv +gE +gS +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +be +bv +bp +bn +bn +bk +be +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fV +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(103,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +le +gO +gE +gF +iZ +gS +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +bd +be +be +uY +be +be +bd +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fW +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(104,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +hf +kP +gT +gN +gv +gv +gS +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +tT +tT +Dm +Dm +tT +tT +tT +tT +tT +gi +gi +gi +gi +fZ +Dm +Dm +Dm +Dm +Dm +at +"} +(105,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +he +hd +gv +gE +gv +gS +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +gg +fW +Dm +tT +Dm +tT +tT +tT +Dm +Dm +Dm +tT +ge +gi +Dm +tT +gh +Dm +Dm +Dm +Dm +at +"} +(106,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +jf +gT +gv +hw +hw +gS +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +gd +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +fT +Dm +Dm +Dm +at +"} +(107,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +jg +hd +kW +hx +hx +gS +Dm +Dm +tT +tT +tT +tT +tT +fU +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +gg +Dm +Dm +at +"} +(108,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +gS +gS +gS +hx +hx +gS +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +go +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +at +"} +(109,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gS +gS +gS +gS +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +fV +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +at +"} +(110,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +go +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +fY +tT +Dm +Dm +Dm +at +"} +(111,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +fZ +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(112,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +gw +tT +tT +fZ +tT +tT +tT +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(113,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fW +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(114,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +jy +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +fR +tT +Dm +Dm +Dm +Dm +at +"} +(115,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jw +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +gd +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(116,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fZ +tT +tT +tT +tT +ga +gb +gb +gb +gm +gb +gb +gb +ga +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +at +"} +(117,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +gx +tT +ga +ga +gf +gf +hk +gj +gq +hk +gf +ga +ga +tT +fZ +tT +tT +fU +Dm +Dm +Dm +at +"} +(118,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +fR +tT +tT +tT +tT +tT +gb +gf +gf +gf +hk +gj +gj +hk +gf +gf +gb +tT +tT +tT +fW +tT +Dm +Dm +Dm +at +"} +(119,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +fW +tT +fV +tT +tT +tT +gb +gf +gf +gs +hk +gj +gj +hk +hj +gf +gb +tT +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(120,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +ga +ga +gf +gf +gf +hl +jH +jG +hl +gf +gf +ga +ga +tT +tT +tT +fV +Dm +Dm +Dm +at +"} +(121,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +tT +tT +aI +tT +tT +fR +tT +gb +gf +gf +gf +gf +hk +gj +gj +hk +gf +gf +gf +gb +tT +fR +tT +fV +Dm +Dm +Dm +at +"} +(122,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +jA +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +gb +jP +aC +gf +gf +hk +gj +gj +hk +gf +aC +gG +gb +tT +tT +tT +tT +tT +Dm +Dm +at +"} +(123,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +fZ +tT +tT +tT +tT +tT +gb +gf +gf +hj +gf +hk +gj +gj +hk +gf +gf +gf +gb +aI +tT +tT +tT +tT +Dm +Dm +at +"} +(124,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +aI +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fW +tT +tT +ga +ga +gt +gt +gt +gr +jH +jG +hk +gf +gf +ga +ga +tT +tT +fZ +tT +tT +Dm +Dm +at +"} +(125,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +gb +jN +jL +gj +gj +gj +gj +hk +gf +hj +gb +tT +tT +tT +tT +tT +tT +Dm +Dm +at +"} +(126,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +hB +gh +Dm +Dm +Dm +Dm +tT +tT +fU +tT +fV +tT +tT +gb +jO +gj +jJ +gj +gj +gj +hk +gf +gf +gb +tT +tT +tT +fU +tT +tT +Dm +Dm +at +"} +(127,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +gh +gh +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +ga +ga +jM +jK +jI +gj +gj +hk +gf +ga +ga +tT +tT +fV +tT +fW +tT +Dm +Dm +at +"} +(128,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hg +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gh +gh +gh +Dm +Dm +Dm +Dm +Dm +tT +fR +tT +tT +tT +fZ +tT +ga +gb +gb +gb +gm +gb +gb +gb +ga +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +at +"} +(129,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +jR +gh +gL +gh +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +gu +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fR +tT +Dm +Dm +Dm +at +"} +(130,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +gh +gh +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +fW +tT +tT +tT +Dm +Dm +Dm +at +"} +(131,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +tT +tT +hq +hq +hq +hq +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +hB +gh +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +tT +tT +tT +fZ +tT +Dm +Dm +Dm +at +"} +(132,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +hz +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +fU +tT +tT +tT +tT +Dm +Dm +Dm +at +"} +(133,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +tT +gu +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +fV +tT +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +at +"} +(134,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fV +tT +tT +tT +tT +tT +fW +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +fZ +tT +tT +tT +tT +tT +fR +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(135,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +tT +fW +tT +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +Dm +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(136,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +fR +tT +tT +tT +tT +tT +fW +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +tT +tT +fR +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +Dm +Dm +Dm +fV +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(137,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +fZ +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +fZ +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(138,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(139,1,1) = {" +at +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +tT +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +Dm +at +"} +(140,1,1) = {" +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +at +"} diff --git a/maps/redgate/casino_canal/casino_canal_floodecals.dm b/maps/redgate/casino_canal/casino_canal_floodecals.dm new file mode 100644 index 00000000000..66ca811456b --- /dev/null +++ b/maps/redgate/casino_canal/casino_canal_floodecals.dm @@ -0,0 +1,18 @@ +#define PURPLE_DECAL_CREATE(x) x/purple/color=COLOR_PURPLE_GRAY + +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals1) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals2) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals3) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals4) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals5) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals6) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals7) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals8) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/steeldecal/steel_decals9) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/borderfloor) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/borderfloor/cee) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/borderfloor/corner) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/borderfloor/corner2) +PURPLE_DECAL_CREATE(/obj/effect/floor_decal/borderfloor/shifted) + +#undef PURPLE_DECAL_CREATE diff --git a/maps/stellar_delight/stellar_delight_defines.dm b/maps/stellar_delight/stellar_delight_defines.dm index 7aab63553d8..b860b6c71e5 100644 --- a/maps/stellar_delight/stellar_delight_defines.dm +++ b/maps/stellar_delight/stellar_delight_defines.dm @@ -161,6 +161,7 @@ list(Z_NAME_REDGATE_CASCADING_FALLS), list(Z_NAME_REDGATE_JUNGLE_CAVE, Z_NAME_REDGATE_JUNGLE), list(Z_NAME_REDGATE_FACILITY), + list(Z_NAME_REDGATE_CASINO_CANAL_LOWER, Z_NAME_REDGATE_CASINO_CANAL), ) ai_shell_restricted = TRUE diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index 296888296db..811f6a92422 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -182,6 +182,7 @@ list(Z_NAME_REDGATE_CASCADING_FALLS), list(Z_NAME_REDGATE_JUNGLE_CAVE, Z_NAME_REDGATE_JUNGLE), list(Z_NAME_REDGATE_FACILITY), + list(Z_NAME_REDGATE_CASINO_CANAL_LOWER, Z_NAME_REDGATE_CASINO_CANAL), ) ai_shell_restricted = TRUE diff --git a/vorestation.dme b/vorestation.dme index cca8b9ecf47..514f4dcec4a 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -4792,6 +4792,8 @@ #include "maps\offmap_vr\common_offmaps.dm" #include "maps\redgate\facility_items.dm" #include "maps\redgate\fantasy_items.dm" +#include "maps\redgate\casino_canal\casino_canal.dm" +#include "maps\redgate\casino_canal\casino_canal_floodecals.dm" #include "maps\redgate\falls\atoll_decals.dm" #include "maps\redgate\falls\atoll_objs.dm" #include "maps\redgate\falls\atoll_turfs.dm"