diff --git a/code/__DEFINES/__game.dm b/code/__DEFINES/__game.dm index 02fcffd0f38b..8737ad5e9153 100644 --- a/code/__DEFINES/__game.dm +++ b/code/__DEFINES/__game.dm @@ -34,6 +34,7 @@ #define MAP_LV522_CHANCES_CLAIM "LV-522 Chance's Claim" #define MAP_LV759_HYBRISA_PROSPERA "LV-759 Hybrisa Prospera" // Highpop Only #define MAP_NEW_VARADERO "New Varadero"//ice colony underground but as its own map +#define MAP_NAVALIS "Navalis Platform 13" #define MAP_CHINOOK "Chinook 91 GSO" //admin level #define GAMEMODE_WHISKEY_OUTPOST "Whiskey Outpost" diff --git a/code/__DEFINES/misc.dm b/code/__DEFINES/misc.dm index 89deef2aafe9..6db723fbba1b 100644 --- a/code/__DEFINES/misc.dm +++ b/code/__DEFINES/misc.dm @@ -51,6 +51,8 @@ #define AREA_YAUTJA_GROUNDS (1<<5) /// Flags the area as a hunting grounds for the Yautja, sometimes blocking game interaction. #define AREA_YAUTJA_HUNTING_GROUNDS (1<<6) +/// Flags the area as not being a valid location for a para-drop to land on.. +#define AREA_NO_PARA (1<<7) /// Default number of ticks for do_after #define DA_DEFAULT_NUM_TICKS 5 diff --git a/code/_globalvars/bitfields.dm b/code/_globalvars/bitfields.dm index a76e4a8e0b73..2eecfef88fd8 100644 --- a/code/_globalvars/bitfields.dm +++ b/code/_globalvars/bitfields.dm @@ -345,6 +345,7 @@ DEFINE_BITFIELD(flags_area, list( "AREA_ALLOW_XENO_JOIN" = AREA_ALLOW_XENO_JOIN, "AREA_CONTAINMENT" = AREA_CONTAINMENT, "AREA_UNWEEDABLE" = AREA_UNWEEDABLE, + "AREA_NO_PARA" = AREA_NO_PARA )) DEFINE_BITFIELD(disabilities, list( diff --git a/code/datums/weather/weather_events/navalis_platform_13.dm b/code/datums/weather/weather_events/navalis_platform_13.dm new file mode 100644 index 000000000000..f2af23c3f10a --- /dev/null +++ b/code/datums/weather/weather_events/navalis_platform_13.dm @@ -0,0 +1,38 @@ +/datum/weather_event/light_rain + name = "Tropical Storm" + display_name = "Tropical Storm" + length = 4 MINUTES + fullscreen_type = /atom/movable/screen/fullscreen/weather/low + + turf_overlay_icon_state = "strata_storm" + turf_overlay_alpha = 40 + + effect_message = null + damage_per_tick = 0 + + has_process = TRUE + lightning_chance = 1 + + ambience = 'sound/ambience/rainforest.ogg' + + fire_smothering_strength = 1 + +/datum/weather_event/monsoon + name = "Monsoon Warning" + display_name = "Monsoon Warning" + length = 6 MINUTES + fullscreen_type = /atom/movable/screen/fullscreen/weather/high + + turf_overlay_icon_state = "strata_storm" + turf_overlay_alpha = 115 + + effect_message = null + damage_per_tick = 0 + + + ambience = 'sound/ambience/varadero_storm.ogg' + + has_process = TRUE + lightning_chance = 6 + + fire_smothering_strength = 4 diff --git a/code/datums/weather/weather_map_holders/navalis_platform_13.dm b/code/datums/weather/weather_map_holders/navalis_platform_13.dm new file mode 100644 index 000000000000..8ff220a9d46f --- /dev/null +++ b/code/datums/weather/weather_map_holders/navalis_platform_13.dm @@ -0,0 +1,20 @@ +/datum/weather_ss_map_holder/navalis_platform_13 + name = "Navalis Map Holder" + + warn_time = 1 MINUTES + min_time_between_events = 30 MINUTES + min_time_between_checks = 0 + min_check_variance = 0 + + no_weather_turf_icon_state = "strata_clearsky" + + potential_weather_events = list( + /datum/weather_event/light_rain, + /datum/weather_event/monsoon, + ) + +/datum/weather_ss_map_holder/navalis_platform_13/should_affect_area(area/A) + return !CEILING_IS_PROTECTED(A.ceiling, CEILING_GLASS) + +/datum/weather_ss_map_holder/navalis_platform_13/should_start_event() + return TRUE diff --git a/code/game/area/Navalis_Platform_13.dm b/code/game/area/Navalis_Platform_13.dm new file mode 100644 index 000000000000..bd3ded01f70c --- /dev/null +++ b/code/game/area/Navalis_Platform_13.dm @@ -0,0 +1,536 @@ +/area/navalis + icon_state = "lv-626" + can_build_special = TRUE + powernet_name = "ground" + minimap_color = MINIMAP_AREA_COLONY + +//Parent Types + +/area/navalis/oob + name = "Navalis - Out Of Bounds" + icon_state = "unknown" + ceiling = CEILING_MAX + is_resin_allowed = FALSE + flags_area = AREA_NOTUNNEL|AREA_UNWEEDABLE|AREA_NO_PARA + +/area/navalis/indoors + name = "Navalis - Indoors" + icon_state = "cliff_blocked" + ceiling = CEILING_METAL + soundscape_playlist = SCAPE_PL_LV759_INDOORS + ambience_exterior = AMBIENCE_HYBRISA_INTERIOR + +/area/navalis/outdoors + name = "Navalis - Outdoors" + icon_state = "cliff_blocked" + ceiling = CEILING_NONE + soundscape_playlist = SCAPE_PL_LV759_OUTDOORS + ambience_exterior = AMBIENCE_CITY + soundscape_interval = 25 + +//Water Types + +/area/navalis/oob/water + name = "Water - Near" + icon_state = "blue2" + ceiling = CEILING_NONE + requires_power = FALSE + base_lighting_alpha = 35 + minimap_color = MINIMAP_WATER + +/area/navalis/oob/water/mid + name = "Water - Middle" + base_lighting_alpha = 45 + +/area/navalis/oob/water/far + name = "Water - Far" + base_lighting_alpha = 55 + +//Additional Out Of Bounds + +/area/navalis/oob/powered + requires_power = FALSE + +/area/navalis/oob/empty_space + requires_power = FALSE + flags_area = AREA_NOTUNNEL|AREA_UNWEEDABLE|AREA_NO_PARA + +// PSV Charon + +/area/navalis/outdoors/charon + name = "PSV Charon" + icon_state = "unknown" + ceiling = CEILING_NONE + unoviable_timer = FALSE + minimap_color = MINIMAP_AREA_JUNGLE + +/area/navalis/outdoors/charon/surface_deck + name = "PSV Charon - Forecastle Deck" + icon_state = "syndie-ship" + +/area/navalis/outdoors/charon/surface_deck/forecastle_deck + name = "PSV Charon - Forecastle Deck" + +/area/navalis/outdoors/charon/surface_deck/main_deck + name = "PSV Charon - Main Deck" + +/area/navalis/outdoors/charon/surface_deck/rear_deck + name = "PSV Charon - Poop Deck" + +/area/navalis/indoors/charon + name = "PSV Charon - Below Deck" + icon_state = "unknown" + ceiling = CEILING_METAL + unoviable_timer = FALSE + minimap_color = MINIMAP_AREA_JUNGLE + +/area/navalis/indoors/charon/below_deck + icon_state = "syndie-ship" + +/area/navalis/indoors/charon/below_deck/front + name = "PSV Charon - Below-Deck Fore" + +/area/navalis/indoors/charon/below_deck/middle + name = "PSV Charon - Below-Deck Cargo Hold" + +/area/navalis/indoors/charon/below_deck/rear + name = "PSV Charon - Below-Deck Aft" + + +// Medical-Science Rig + +/area/navalis/indoors/med_sci + name = "Medi-Sci Rig - Indoors" + icon_state = "medbay" + ceiling = CEILING_METAL + minimap_color = MINIMAP_AREA_MEDBAY + +/area/navalis/indoors/med_sci/foyer + name = "Medi-Sci Rig - Level-1: Foyer" + +/area/navalis/indoors/med_sci/main_floor + name = "Medi-Sci Rig - Level-1: Treatment Floor" + +/area/navalis/indoors/med_sci/surg_one + name = "Medi-Sci Rig - Level-1: Surgery One" + +/area/navalis/indoors/med_sci/surg_two + name = "Medi-Sci Rig - Level-1: Surgery Two" + +/area/navalis/indoors/med_sci/elevator + name = "Medi-Sci Rig - Level-1: Elevator" + +/area/navalis/indoors/med_sci/break_room + name = "Medi-Sci Rig - Level-1: Employee Break Room" + +/area/navalis/indoors/med_sci/pharmacy + name = "Medi-Sci Rig - Level-1: Pharmacy" + +/area/navalis/indoors/med_sci/storage + name = "Medi-Sci Rig - Level-1: Medical Storage" + +/area/navalis/indoors/med_sci/records_room + name = "Medi-Sci Rig - Level-1: Records Room" + +/area/navalis/indoors/med_sci/science_lower_entrance + name = "Medi-Sci Rig - Level-1: Sci-Wing Lower-Entrance" + +/area/navalis/indoors/med_sci/corridor + name = "Medi-Sci Rig - Level-1: Lower Corridor" + +/area/navalis/indoors/med_sci/chemical_store + name = "Medi-Sci Rig - Level-1: Chemical Storage" + +/area/navalis/indoors/med_sci/maintenance_port + name = "Medi-Sci Rig - Level-1: Port Maintenance" + +/area/navalis/indoors/med_sci/maintenance_starboard + name = "Medi-Sci Rig - Level-1: Starboard Maintenance" + +// Lower-Deck + +/area/navalis/indoors/med_sci/lower_level + name = "Medi-Sci Rig - Level-0" + +/area/navalis/indoors/med_sci/lower_level/port + name = "Medi-Sci Rig - Level-0: Port-Corridor" + +/area/navalis/indoors/med_sci/lower_level/starboard + name = "Medi-Sci Rig - Level-0: Starboard-Corridor" + +/area/navalis/indoors/med_sci/lower_level/records + name = "Medi-Sci Rig - Level-0: Storage Records" + +/area/navalis/indoors/med_sci/lower_level/delivery + name = "Medi-Sci Rig - Level-0: Delivery Bay" + +// Upper-Deck + +/area/navalis/indoors/med_sci/upper_level + name = "Medi-Sci Rig - Level-2" + +/area/navalis/indoors/med_sci/upper_level/entrance + name = "Medi-Sci Rig - Level-2: Entrance" + +/area/navalis/indoors/med_sci/upper_level/morgue + name = "Medi-Sci Rig - Level-2: Morgue" + +/area/navalis/indoors/med_sci/upper_level/sec + name = "Medi-Sci Rig - Level-2: Security Office" + +/area/navalis/indoors/med_sci/upper_level/corridor + name = "Medi-Sci Rig - Level-2: Corridor" + +/area/navalis/indoors/med_sci/upper_level/flight + name = "Medi-Sci Rig - Level-2: Medical Flight Control" + +/area/navalis/indoors/med_sci/upper_level/store + name = "Medi-Sci Rig - Level-2: Storage" + +/area/navalis/indoors/med_sci/upper_level/on_duty + name = "Medi-Sci Rig - Level-2: On-Call Standby Quarters" + +/area/navalis/indoors/med_sci/upper_level/sci_ent + name = "Medi-Sci Rig - Level-2: Sci-Wing Entrance" + +/area/navalis/indoors/med_sci/upper_level/sci_lab + name = "Medi-Sci Rig - Level-2: Sci-Wing Lab" + +/area/navalis/indoors/med_sci/upper_level/sci_scan + name = "Medi-Sci Rig - Level-2: Sci-Wing Scanning Room" + +// Command Rig + +/area/navalis/indoors/command + name = "Command Rig - Indoors" + icon_state = "bridge" + minimap_color = MINIMAP_AREA_COMMAND + +/area/navalis/indoors/command/aft_hallway + name = "Command Rig - Level-1: Aft-Hallway" + +/area/navalis/indoors/command/port_hallway + name = "Command Rig - Level-1: Port-Hallway" + +/area/navalis/indoors/command/starboard_hallway + name = "Command Rig - Level-1: Starboard-Hallway" + +/area/navalis/indoors/command/office + name = "Command Rig - Level-1: Main Office" + +/area/navalis/indoors/command/conferance + name = "Command Rig - Level-1: Conferance Room" + +/area/navalis/indoors/command/director_office + name = "Command Rig - Level-1: Site Director's Office" + +/area/navalis/indoors/command/cent_com + name = "Command Rig - Level-1: Central Command Room" + +/area/navalis/indoors/command/oft_duty_room + name = "Command Rig - Level-1: Off-Duty Break Room" + +/area/navalis/indoors/command/command_kitchen + name = "Command Rig - Level-1: Command Kitchen" + +/area/navalis/indoors/command/server_room + name = "Command Rig - Level-1: Ancillery Backup Server Room" + +/area/navalis/indoors/command/security + name = "Command Rig - Level-1: Security Office" + +/area/navalis/indoors/command/meeting_hall + name = "Command Rig - Level-1: Meeting Hall" + +/area/navalis/indoors/command/bathroom + name = "Command Rig - Level-1: Bathroom" + +/area/navalis/indoors/command/tertiary_comms + name = "Command Rig - Level-1: Tertiary Communications" + +/area/navalis/indoors/command/maintenance_port + name = "Command Rig - Level-1: Port Maintenance" + +/area/navalis/indoors/command/maintenance_starboard + name = "Command Rig - Level-1: Starboard Maintenance" + +// Lower-Deck + +/area/navalis/indoors/command/lower_deck + name = "Command Rig - Level-0" + +/area/navalis/indoors/command/lower_deck/starboard + name = "Command Rig - Level-0: Starboard Access" + +/area/navalis/indoors/command/lower_deck/port + name = "Command Rig - Level-0: Port Access" + +/area/navalis/indoors/command/lower_deck/sub_pen + name = "Command Rig - Level-0: Sub-Pen" + +// Upper-Deck + +/area/navalis/indoors/command/upper_deck + name = "Command Rig - Level-2" + +/area/navalis/indoors/command/upper_deck/server + name = "Command Rig - Level-2: Primary Server Room" + +/area/navalis/indoors/command/upper_deck/starboard + name = "Command Rig - Level-2: Starboard Corridor" + +/area/navalis/indoors/command/upper_deck/port + name = "Command Rig - Level-2: Port Corridor" + +/area/navalis/indoors/command/upper_deck/air_traffic_control + name = "Command Rig - Level-2: Air Traffic Control" + +/area/navalis/indoors/command/upper_deck/naval_traffic_control + name = "Command Rig - Level-2: Naval Traffic Control" + +/area/navalis/indoors/command/upper_deck/jani + name = "Command Rig - Level-2: Janitorial Closet" + + +// Logistical Rig + +/area/navalis/indoors/logistic + name = "Logistic Rig - Level-1:Indoors" + icon_state = "quartstorage" + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + +/area/navalis/indoors/logistic/Port_hallway + name = "Logistic Rig - Level-1:Port-Hallway" + +/area/navalis/indoors/logistic/workshop + name = "Logistic Rig - Level-1:Workshop" + +/area/navalis/indoors/logistic/mech_bay + name = "Logistic Rig - Level-1:Mech-Bay" + +/area/navalis/indoors/logistic/primary_storage + name = "Logistic Rig - Level-1:Primary Storage" + +/area/navalis/indoors/logistic/elevator + name = "Logistic Rig - Level-1:Elevator" + +/area/navalis/indoors/logistic/maintenance_port + name = "Logistic Rig - Level-1:Port Maintenance" + +/area/navalis/indoors/logistic/maintenance_starboard + name = "Logistic Rig - Level-1:Starboard Maintenance" + +// Lower-Deck + +/area/navalis/indoors/logistic/lower_deck + name = "Logistic Rig - Level-0" + +/area/navalis/indoors/logistic/lower_deck/fore + name = "Logistic Rig - Level-0: Fore Section" + +/area/navalis/indoors/logistic/lower_deck/port + name = "Logistic Rig - Level-0: Port Corridor" + +/area/navalis/indoors/logistic/lower_deck/maint + name = "Logistic Rig - Level-0: Maintenance Control" + +/area/navalis/indoors/logistic/lower_deck/fuel + name = "Logistic Rig - Level-0: Fuel Pump Control" + +/area/navalis/indoors/logistic/lower_deck/maint_store + name = "Logistic Rig - Level-0: Maintenance Storage" + +// Upper-Deck + +/area/navalis/indoors/logistic/upper_deck + name = "Logistic Rig - Level-2" + +/area/navalis/indoors/logistic/upper_deck/entrance + name = "Logistic Rig - Level-2: Entrance" + +/area/navalis/indoors/logistic/upper_deck/walkway + name = "Logistic Rig - Level-2: Walkway" + +/area/navalis/indoors/logistic/upper_deck/maint + name = "Logistic Rig - Level-2: Maintenance" + +/area/navalis/indoors/logistic/upper_deck/office + name = "Logistic Rig - Level-2: Office" + +/area/navalis/indoors/logistic/upper_deck/workshop + name = "Logistic Rig - Level-2: Workshop" + +/area/navalis/indoors/logistic/upper_deck/conduit + name = "Logistic Rig - Level-2: Electrical Conduit" + + +// Industrial Rig + +/area/navalis/indoors/industrial + name = "Industrial Rig - Indoors" + icon_state = "mining_production" + unoviable_timer = FALSE + minimap_color = MINIMAP_AREA_ENGI + +/area/navalis/indoors/industrial/accessway + name = "Industrial Rig - Sector-A: Accessway" + +/area/navalis/indoors/industrial/power + name = "Industrial Rig - Sector-B: Geothermal Reactor" + +/area/navalis/indoors/industrial/refinery + name = "Industrial Rig - Sector-C: Refinery" + +/area/navalis/indoors/industrial/mining + name = "Industrial Rig - Sector-D: Primary-Mining Rig" + +// Residential Rig + +/area/navalis/indoors/residential + name = "Residential Rig - Indoors" + icon_state = "fitness" + ceiling = CEILING_REINFORCED_METAL + unoviable_timer = FALSE + minimap_color = MINIMAP_AREA_RESEARCH + +/area/navalis/indoors/residential/accessway + name = "Residential Rig - Aft-Accessway" + +/area/navalis/indoors/residential/port + name = "Residential Rig - Port-Section" + +/area/navalis/indoors/residential/starboard + name = "Residential Rig - Starboard-Section" + +/area/navalis/indoors/residential/kitchen + name = "Residential Rig - Kitchen" + +/area/navalis/indoors/residential/landing_pad + name = "Residential Rig - Landing-Pad" + +/area/navalis/indoors/residential/cafeteria + name = "Residential Rig - Cafeteria" + ceiling = CEILING_NONE + unoviable_timer = TRUE + +// Landing Zones +/area/navalis/outdoors/landing_zone_1 + name = "Navalis Platform 13 - Medical Emergency Response - Landing Zone One" + icon_state = "medbay3" + is_resin_allowed = FALSE + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + linked_lz = DROPSHIP_LZ1 + +/area/navalis/outdoors/landing_zone_1/under + name = "LZ1 - Lower-Level Walkway" + +/area/navalis/outdoors/landing_zone_2 + name = "Navalis Platform 13 - Logistics Delivery Area - Landing Zone Two" + icon_state = "bunker01_engineering" + is_resin_allowed = FALSE + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + linked_lz = DROPSHIP_LZ2 + +/area/navalis/outdoors/landing_zone_2/under + name = "LZ2 - Lower-Level Walkway" + +/area/navalis/indoors/landing_zone_2 + name = "LZ2 - Lower-Level Access" + icon_state = "bunker01_engineering" + is_resin_allowed = FALSE + is_landing_zone = TRUE + minimap_color = MINIMAP_AREA_LZ + linked_lz = DROPSHIP_LZ2 + + +// Other + +/area/navalis/outdoors/exterior + name = "Exterior Walkway" + icon_state = "eva" + minimap_color = MINIMAP_AREA_MINING + requires_power = FALSE + +// Medical + +/area/navalis/outdoors/exterior/med_ext + name = "Med-Sci Rig - Level-1: Exterior Walkway" + +/area/navalis/outdoors/exterior/med_ext/lower + name = "Med-Sci Rig - Level-0: Exterior Walkway" + +/area/navalis/outdoors/exterior/med_ext/upper + name = "Med-Sci Rig - Level-2: Exterior Walkway" + +/area/navalis/outdoors/exterior/med_ext/roof + name = "Medi-Sci Rig - Roof" + minimap_color = MINIMAP_AREA_MEDBAY + +// Command + +/area/navalis/outdoors/exterior/com_ext + name = "Command Rig - Level-1: Exterior Walkway" + +/area/navalis/outdoors/exterior/com_ext/lower + name = "Command Rig - Level-0: Exterior Walkway" + +/area/navalis/outdoors/exterior/com_ext/upper + name = "Command Rig - Level-2: Exterior Walkway" + +/area/navalis/outdoors/exterior/com_ext/roof + name = "Command Rig - Roof" + minimap_color = MINIMAP_AREA_COMMAND + +// Logistics + +/area/navalis/outdoors/exterior/log_ext + name = "Logistical Rig - Level-1: Exterior Walkway" + +/area/navalis/outdoors/exterior/log_ext/lower + name = "Logistical Rig - Level-0: Exterior Walkway" + +/area/navalis/outdoors/exterior/log_ext/upper + name = "Logistical Rig - Level-2: Exterior Walkway" + +/area/navalis/outdoors/exterior/log_ext/roof + name = "Logistical Rig - Roof" + minimap_color = MINIMAP_AREA_COLONY_ENGINEERING + + +// Industrial + +/area/navalis/outdoors/exterior/ind_ext + name = "Industrial Rig - Level-1: Exterior Walkway" + +/area/navalis/outdoors/comm_one + name = "Navalis Platform 13 - Exterior Communications Relay" + +/area/navalis/outdoors/exterior_xeno_only + name = "Industrial Rig - Exterior Lattice Walkway" + icon_state = "red2" + flags_area = AREA_NOTUNNEL|AREA_CONTAINMENT|NOT_WEEDABLE|AREA_NO_PARA + base_lighting_alpha = 35 + minimap_color = MINIMAP_AREA_RESEARCH_CAVE + requires_power = FALSE + +/area/navalis/outdoors/exterior_xeno_only/lz1 + name = "Medical / LZ1 - Exterior Lattice Walkway" + +/area/navalis/outdoors/exterior_xeno_only/lz2 + name = "Medical / LZ2 - Exterior Lattice Walkway" + +/area/navalis/outdoors/exterior_xeno_only/mining + name = "Mining Rig - Exterior Lattice Walkway" + +/area/navalis/indoors/xeno_growth + name = "Unidentified Xeno-biological Growth: Industrial Area" + icon_state = "eta_xeno" + unoviable_timer = FALSE + ceiling = CEILING_UNDERGROUND_ALLOW_CAS + minimap_color = MINIMAP_AREA_HYBRISACAVES + requires_power = FALSE + +/area/navalis/indoors/xeno_growth/residential + name = "Unidentified Xeno-biological Growth: Residential Entrance Area" diff --git a/code/game/gamemodes/colonialmarines/colonialmarines.dm b/code/game/gamemodes/colonialmarines/colonialmarines.dm index ca390a6bb3f5..ff680a8e2783 100644 --- a/code/game/gamemodes/colonialmarines/colonialmarines.dm +++ b/code/game/gamemodes/colonialmarines/colonialmarines.dm @@ -58,6 +58,9 @@ var/time_to_dispel = 25 MINUTES +/obj/effect/landmark/lv624/fog_blocker/infinite + time_to_dispel = 24 HOURS + /obj/effect/landmark/lv624/fog_blocker/short time_to_dispel = 15 MINUTES diff --git a/code/game/machinery/colony_floodlights.dm b/code/game/machinery/colony_floodlights.dm index 1d554de73b0c..997d9c8eff2c 100644 --- a/code/game/machinery/colony_floodlights.dm +++ b/code/game/machinery/colony_floodlights.dm @@ -321,6 +321,22 @@ GLOBAL_LIST_INIT(all_breaker_switches, list()) set_light(is_on ? lum_value : 0) return . +/obj/structure/machinery/colony_floodlight/navalis_wall_light + name = "wall mounted colony floodlight" + desc = "Powerful wall-mounted lights intended to operate even through a hurricane. Powered directly from the Industrial Rig." + icon = 'icons/obj/items/lighting.dmi' + icon_state = "slight0" + density = FALSE + light_color = "#FFEFD2" + +/obj/structure/machinery/colony_floodlight/navalis_wall_light/update_icon() + if(damaged) + icon_state = "slight-burned" + else if(is_on) + icon_state = "slight1" + else + icon_state = "slight0" + #undef FLOODLIGHT_REPAIR_UNSCREW #undef FLOODLIGHT_REPAIR_CROWBAR #undef FLOODLIGHT_REPAIR_WELD diff --git a/code/game/machinery/door_control.dm b/code/game/machinery/door_control.dm index 33c9bff8d4f1..753a3f711af1 100644 --- a/code/game/machinery/door_control.dm +++ b/code/game/machinery/door_control.dm @@ -299,3 +299,130 @@ . = ..() marine_announcement("The WY-Research-Facility lockdown protocols have been lifted.") used = TRUE + +// Navalis Rig 13 Buttons + +// Navalis Industrial Rig Lockdown + +/obj/structure/machinery/door_control/navalis_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("The Industrial Rig lockdown cannot be lifted yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The Industrial Rig lockdown has already been lifted.")) + return + . = ..() + marine_announcement("The Industrial Rig primary entrance lockdown has been lifted.") + xeno_announcement("The hosts have opened the entrance to the industrial area! Beware of the imminent southern attack!") + used = TRUE + +// PSV Charon vessel Vehicle Accessway + +/obj/structure/machinery/door_control/navalis_charon_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_charon_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("The vehicle accessway cannot be opened yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The vehicle accessway has already been opened.")) + return + . = ..() + marine_announcement("The PSV Charon vehicle accessway has been opened.") + xeno_announcement("The hosts have opened the supply vessels accessway! Be wary of a northern flank!") + used = TRUE + +// Comms Industrial Accessway + +/obj/structure/machinery/door_control/navalis_comms_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_comms_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("The internal access path cannot be opened yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The internal access path has already been opened.")) + return + . = ..() + marine_announcement("The Industrial Rig's secondary vehicle access blastdoors have been opened.") + used = TRUE + +// Internal Industrial Accessway + +/obj/structure/machinery/door_control/navalis_industrial_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_industrial_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("The internal access path cannot be opened yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The internal access path has already been opened.")) + return + . = ..() + marine_announcement("The Industrial Rig's internal blastdoors have been opened.") + xeno_announcement("Be wary! The hosts have opened the internal blastdoors of the industrial rig. This area may now be far harder to hold!") + used = TRUE + +// Internal Industrial Accessway + +/obj/structure/machinery/door_control/navalis_walkway_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_walkway_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("This external access blastdoor cannot be sealed off yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The external access blastdoor has already been sealed off.")) + return + . = ..() + marine_announcement("The Industrial Rig's external eastern blastdoor has been permanently sealed off.") + xeno_announcement("The hosts have shut off the external lattice access to the industrial area! We can now no longer access this area via our hidden external walkway!") + used = TRUE + +// Dig Site Walkway + +/obj/structure/machinery/door_control/navalis_digsite_nw_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_digsite_nw_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("This external access blastdoor cannot be sealed off yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The external access blastdoor has already been sealed off.")) + return + . = ..() + marine_announcement("The Mining Platforms external blastdoors have been sealed off. The xenomorphs will no longer be able to use this area to cross over to the primary rig structure.") + xeno_announcement("The hosts sealed off the exteral walkway doors in the Mining Platform! We will no longer be able to use this to cross over easily to the main rig!") + used = TRUE + +// Command Upper Access + +/obj/structure/machinery/door_control/navalis_command_lockdown + var/used = FALSE + var/colony_lockdown_time = 25 MINUTES + +/obj/structure/machinery/door_control/navalis_command_lockdown/use_button(mob/living/user,force) + if(world.time < SSticker.mode.round_time_lobby + colony_lockdown_time) + to_chat(user, SPAN_WARNING("This external access blastdoor cannot be opened yet. Please wait another [floor((SSticker.mode.round_time_lobby + colony_lockdown_time-world.time)/600)] minutes before trying again.")) + return + if(used) + to_chat(user, SPAN_WARNING("The external access blastdoor has already been opened off.")) + return + . = ..() + marine_announcement("The Command - Logistic rig level 2 bridge access blastdoor has been opened.") + xeno_announcement("The hosts have opened the upper bridge access to the Command rig!") + used = TRUE diff --git a/code/game/objects/structures/barricade/handrail.dm b/code/game/objects/structures/barricade/handrail.dm index a99bc11857f2..7709bd9d3c10 100644 --- a/code/game/objects/structures/barricade/handrail.dm +++ b/code/game/objects/structures/barricade/handrail.dm @@ -227,6 +227,13 @@ /obj/structure/barricade/handrail/strata icon_state = "handrail_strata" +/obj/structure/barricade/handrail/strata/navalis + stack_amount = 0 + destroyed_stack_amount = 0 + can_be_reinforced = FALSE + projectile_coverage = PROJECTILE_COVERAGE_MINIMAL + color = "#f50000" + /obj/structure/barricade/handrail/medical icon_state = "handrail_med" diff --git a/code/game/objects/structures/blocker.dm b/code/game/objects/structures/blocker.dm index 82fe44c0e0c4..3031e3bfbb36 100644 --- a/code/game/objects/structures/blocker.dm +++ b/code/game/objects/structures/blocker.dm @@ -157,7 +157,7 @@ return FALSE /obj/structure/blocker/forcefield/human - types = list(/mob/living/carbon/human) + types = list(/mob/living/carbon/human, /obj/item/weapon) icon_state = "purple_line" visible = TRUE @@ -165,6 +165,10 @@ /obj/structure/blocker/forcefield/human/bulletproof/get_projectile_hit_boolean() return TRUE +/obj/structure/blocker/forcefield/all + types = list(/mob/living/carbon/human, /mob/living/carbon/xenomorph, /obj/item/weapon) + icon_state = "purple_line" + // for fuel pump since it's a large sprite. /obj/structure/blocker/fuelpump name = "\improper Fuel Pump" diff --git a/code/game/objects/structures/hybrisa_props.dm b/code/game/objects/structures/hybrisa_props.dm index 1ca007bf13a5..95783dc26e39 100644 --- a/code/game/objects/structures/hybrisa_props.dm +++ b/code/game/objects/structures/hybrisa_props.dm @@ -1207,16 +1207,37 @@ desc = "A metal grate." icon_state = "solidgrate1" +/obj/structure/prop/hybrisa/misc/floorprops/grate/indestructible + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + + /obj/structure/prop/hybrisa/misc/floorprops/grate2 name = "solid metal grate" desc = "A metal grate." icon_state = "solidgrate5" +/obj/structure/prop/hybrisa/misc/floorprops/grate2/indestructible + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + /obj/structure/prop/hybrisa/misc/floorprops/grate3 name = "solid metal grate" desc = "A metal grate." icon_state = "zhalfgrate1" +/obj/structure/prop/hybrisa/misc/floorprops/grate4 + name = "solid metal grate" + desc = "A metal grate." + icon_state = "zhalfgrate2" + +/obj/structure/prop/hybrisa/misc/floorprops/plate + name = "plating" + desc = "A metal plate." + icon_state = "plating" + /obj/structure/prop/hybrisa/misc/floorprops/floorglass name = "reinforced glass floor" desc = "A heavily reinforced glass floor panel, this looks almost indestructible." @@ -1337,6 +1358,12 @@ icon = 'icons/obj/structures/props/wall_decorations/decals.dmi' icon_state = "pictureframe" +/obj/structure/prop/hybrisa/misc/picture_oil + name = "framed picture" + desc = "A silver framed picture of someone wearing a corporate issue deepsea powered hardsuit, the base of the frame has some words inscribed, 'site director'." + icon = 'icons/obj/structures/props/wall_decorations/decals.dmi' + icon_state = "pictureframe_oil" + /obj/structure/prop/hybrisa/misc/commandosuitemptyprop name = "Weyland-Yutani 'Ape-Suit' showcase" desc = "A display model of the Weyland-Yutani 'Apesuit', shame it's only a model..." diff --git a/code/game/objects/structures/misc.dm b/code/game/objects/structures/misc.dm index 58c06980ae6f..094db466c5ee 100644 --- a/code/game/objects/structures/misc.dm +++ b/code/game/objects/structures/misc.dm @@ -303,6 +303,7 @@ /obj/structure/stairs/multiz/Initialize(mapload, ...) . = ..() RegisterSignal(loc, COMSIG_TURF_ENTERED, PROC_REF(on_turf_entered)) + SSminimaps.add_marker(src, z, MINIMAP_FLAG_ALL, "stairs_[direction]") /obj/structure/stairs/multiz/proc/on_turf_entered(turf/source, atom/movable/enterer) if(!istype(enterer, /mob)) @@ -329,7 +330,7 @@ actual_turf = SSmapping.get_turf_above(target_turf) else actual_turf = SSmapping.get_turf_below(target_turf) - + if(actual_turf) if(istype(mover, /mob)) var/mob/mover_mob = mover diff --git a/code/game/objects/structures/props.dm b/code/game/objects/structures/props.dm index 2a25eb1ccd65..05bd138cd0d5 100644 --- a/code/game/objects/structures/props.dm +++ b/code/game/objects/structures/props.dm @@ -656,6 +656,13 @@ desc = "Scientists use these suspended nets to superimpose a grid over a patch of ground for study." icon_state = "soil_grid" +/obj/structure/prop/ice_colony/soil_net/navalis_indestructible + name = "safety net" + desc = "Special net intended to catch anyone, or anything, that falls off the rig. Difficult to move around in, but preferable to falling into the endless ocean below." + unslashable = TRUE + unacidable = TRUE + explo_proof = TRUE + /obj/structure/prop/ice_colony/ice_crystal name = "ice crystal" desc = "It is a giant crystal of ice. The chemical process that keeps it frozen despite major seasonal temperature flux is what the United American Greater Argentinian science team is studying here on the Snowball." @@ -1181,3 +1188,45 @@ if(initial(emote.sound)) playsound(loc, initial(emote.sound), 50, FALSE) return TRUE + +//-- Navails Platform 13 Props --// + +// Support Beam + +/obj/structure/prop/oilrig/support_beam + name = "support beam" + desc = "Marval of human engineering, keeping a metal platform afloat on the seas of a distant alien world." + icon = 'icons/obj/structures/props/oilrig/support_beam.dmi' + icon_state = "support_beam" + bound_height = 64 + bound_width = 64 + +/obj/structure/prop/oilrig/support_beam/blue + icon_state = "support_beam_blue" + +/obj/structure/prop/oilrig/support_beam/green + icon_state = "support_beam_green" + +/obj/structure/prop/oilrig/support_beam/aqua + icon_state = "support_beam_aqua" + +/obj/structure/prop/oilrig/support_beam/red + icon_state = "support_beam_red" + +/obj/structure/prop/oilrig/support_beam/brown + icon_state = "support_beam_brown" + +// Half-Grate Edge + +/obj/effect/decal/navalis/plate_edge + name = "solid metal grate" + desc = "A metal grate." + icon = 'icons/obj/structures/props/hybrisa/grates.dmi' + icon_state = "zhalfgrate1" + layer = HATCH_LAYER + +/obj/effect/decal/navalis/plate_edge/darker + color = "#ABA39D" + +/obj/effect/decal/navalis/plate_edge/see_through + icon_state = "zhalfgrate2" diff --git a/code/game/objects/structures/window.dm b/code/game/objects/structures/window.dm index 29cc8d1fc3f6..ae58dd25b921 100644 --- a/code/game/objects/structures/window.dm +++ b/code/game/objects/structures/window.dm @@ -1094,6 +1094,40 @@ unacidable = TRUE health = 1000000 +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor + name = "hull window" + desc = "A glass window with a special rod matrix inside a wall frame. This one has an automatic shutter system to prevent any flooding breach." + health = 200 + //icon_state = "rwindow0_debug" + not_damageable = FALSE + unslashable = FALSE + unacidable = FALSE + var/triggered = FALSE //indicates if the shutters have already been triggered + +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor/Destroy(force) + if(force) + return ..() + spawn_shutters() + . = ..() + +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor/proc/spawn_shutters(from_dir = 0) + if(triggered) + return + + triggered = TRUE + for(var/direction in GLOB.cardinals) + if(direction == from_dir) + continue //doesn't check backwards + for(var/obj/structure/window/framed/hybrisa/colony/hull/blastdoor/W in get_step(src,direction) ) + W.spawn_shutters(turn(direction,180)) + var/obj/structure/machinery/door/poddoor/shutters/almayer/pressure/pressure_door = new(get_turf(src)) + switch(junction) + if(4,5,8,9,12) + pressure_door.setDir(SOUTH) + else + pressure_door.setDir(EAST) + pressure_door.close() + // Research /obj/structure/window/framed/hybrisa/research name = "window" diff --git a/code/game/turfs/auto_turf.dm b/code/game/turfs/auto_turf.dm index 8edd13f58612..87565d91dd7d 100644 --- a/code/game/turfs/auto_turf.dm +++ b/code/game/turfs/auto_turf.dm @@ -277,6 +277,10 @@ icon_state = "snow_b_0" bleed_layer = 0 +/turf/open/auto_turf/snow/brown_base/layer0/seabed + name = "seabed" + desc = "This dirt looks as if it were drudged from the bottom of the ocean..." + /turf/open/auto_turf/snow/brown_base/layer1 icon_state = "snow_b_1" bleed_layer = 1 diff --git a/code/game/turfs/floor_types.dm b/code/game/turfs/floor_types.dm index d7c8c25b1443..39d24057c075 100644 --- a/code/game/turfs/floor_types.dm +++ b/code/game/turfs/floor_types.dm @@ -320,6 +320,12 @@ /turf/open/floor/plating/plating_catwalk/prison icon = 'icons/turf/floors/prison.dmi' +/turf/open/floor/plating/plating_catwalk/prison/dark + color = "#aba39d" + +/turf/open/floor/plating/plating_catwalk/prison/green + color = "#74ff8dff" + /turf/open/floor/plating/plating_catwalk/strata icon = 'icons/turf/floors/strata_floor.dmi' @@ -357,6 +363,51 @@ . = ..() + +/turf/open/floor/plating/catwalk/grate + icon = 'icons/obj/structures/props/hybrisa/grates.dmi' + icon_state = "solidgrate1" + +//turf/open/floor/plating/catwalk/grate/is_weedable() +// return NOT_WEEDABLE + +/turf/open/floor/plating/catwalk/grate/alt + icon_state = "solidgrate5" + +/turf/open/floor/plating/catwalk/grate/net + name = "safety net" + desc = "Special net intended to catch anyone, or anything, that falls off the rig. Difficult to move around in, but preferable to falling into the endless ocean below." + icon = 'icons/obj/structures/props/ice_colony/props.dmi' + icon_state = "soil_grid" + var/slow_amt = 4 + +/turf/open/floor/plating/catwalk/grate/net/is_weedable() + return NOT_WEEDABLE + +/turf/open/floor/plating/catwalk/grate/net/Entered(atom/movable/AM) + if(iscarbon(AM)) + var/mob/living/carbon/C = AM + var/slow_amount = 0.75 + var/can_stuck = 1 + if(istype(C, /mob/living/carbon/xenomorph)||isyautja(C)) + slow_amount = 0.5 + can_stuck = 0 + var/new_slowdown = C.next_move_slowdown + slow_amount + if(prob(2)) + to_chat(C, SPAN_WARNING("Moving through the [src] slows you down.")) //Warning only + else if(can_stuck == 4 && prob(2)) + to_chat(C, SPAN_WARNING("You get stuck in the [src] for a moment!")) + new_slowdown += 10 + C.next_move_slowdown = new_slowdown + ..() + +/turf/open/floor/plating/catwalk/grate/lattice + icon = 'icons/obj/structures/props/hybrisa/piping_wiring.dmi' + icon_state = "latticefull" + +/turf/open/floor/plating/catwalk/grate/lattice/is_weedable() + return NOT_WEEDABLE + /turf/open/floor/almayer icon = 'icons/turf/almayer.dmi' icon_state = "default" @@ -4811,3 +4862,35 @@ /turf/open/gm/grass/grass2/pred icon_state = "grass2" + +// Half Plate + +/turf/open/floor/half_plate + icon = 'icons/turf/half_plate.dmi' + icon_state = "green_plate" + plating_type = /turf/open/floor/plating/almayer + +/turf/open/floor/half_plate/green + dir = SOUTH + +/turf/open/floor/half_plate/green/north + dir = NORTH + +/turf/open/floor/half_plate/green/east + dir = EAST + +/turf/open/floor/half_plate/green/west + dir = WEST + +/turf/open/floor/half_plate/dark_yellow + icon_state = "darkyellow_plate" + dir = SOUTH + +/turf/open/floor/half_plate/dark_yellow/north + dir = NORTH + +/turf/open/floor/half_plate/dark_yellow/east + dir = EAST + +/turf/open/floor/half_plate/dark_yellow/west + dir = WEST diff --git a/code/game/turfs/open.dm b/code/game/turfs/open.dm index 66770163bf18..9013acad12fe 100644 --- a/code/game/turfs/open.dm +++ b/code/game/turfs/open.dm @@ -663,9 +663,9 @@ update_overlays() /turf/open/gm/river/proc/update_overlays() - overlays.Cut() if(no_overlay) return + overlays.Cut() if(covered) name = covered_name overlays += image("icon"=src.cover_icon,"icon_state"=cover_icon_state,"layer"=CATWALK_LAYER,"dir" = dir) @@ -887,6 +887,28 @@ /turf/open/gm/river/no_overlay/sewage name = "sewage" +/turf/open/gm/river/no_overlay/ocean + name = "ocean" + icon = 'icons/turf/floors/desert_water.dmi' + icon_state = "deep" + +/turf/open/gm/river/no_overlay/ocean/Entered(atom/movable/AM) + ..() + if(!isobserver(AM) && !isliving(AM) && istype(AM, /obj/item) && !istype(AM, /obj/item/lightstick)) +// if(!isobserver(AM) && !istype(AM, /obj/effect/elevator) && !istype(AM, /obj/docking_port)) + addtimer(CALLBACK(src, PROC_REF(enter_depths), AM), 0.2 SECONDS) + +/turf/open/gm/river/no_overlay/ocean/proc/enter_depths(atom/movable/AM) + if(AM.throwing == 0 && istype(get_turf(AM), /turf/open/gm/river/no_overlay/ocean)) + AM.visible_message(SPAN_WARNING("[AM] falls into the depths!"), SPAN_WARNING("You fall into the depths!")) +// if(!ishuman(AM)) + qdel(AM) + +/turf/open/gm/river/no_overlay/ocean_no_slowdown + name = "ocean" + icon = 'icons/turf/floors/desert_water.dmi' + icon_state = "deep" + base_river_slowdown = 0 //ELEVATOR SHAFT-----------------------------------// /turf/open/gm/empty @@ -899,7 +921,11 @@ /turf/open/gm/empty/is_weedable() return NOT_WEEDABLE +/turf/open/gm/empty/navalis + desc = "The Xenomorphs appear to have emerged from this gaping maw. However, it appears they not only have refused to retreat back in here, they have barricaded it……" +/turf/open/gm/empty/navalis/dig + desc = "Worse than Xenomorphs lurk the deepest, darkest, pits of this world. These nameless things await in the dark. Pray they don't find this escape." //Nostromo turfs diff --git a/code/game/turfs/open_space.dm b/code/game/turfs/open_space.dm index 1606e76c996c..03c18afc06b0 100644 --- a/code/game/turfs/open_space.dm +++ b/code/game/turfs/open_space.dm @@ -16,7 +16,6 @@ GLOBAL_DATUM_INIT(openspace_backdrop_one_for_all, /atom/movable/openspace_backdr /turf/open_space/Initialize() ADD_TRAIT(src, TURF_Z_TRANSPARENT_TRAIT, TRAIT_SOURCE_INHERENT) - return INITIALIZE_HINT_LATELOAD /turf/open_space/Entered(atom/movable/entered_movable, atom/old_loc) @@ -48,24 +47,29 @@ GLOBAL_DATUM_INIT(openspace_backdrop_one_for_all, /atom/movable/openspace_backdr /turf/open_space/attack_hand(mob/user) if(user.action_busy) return - - var/turf/current_turf = get_turf(src) - if(istype(current_turf, /turf/open_space)) - user.visible_message(SPAN_WARNING("[user] starts climbing down."), SPAN_WARNING("You start climbing down.")) + var/turf/current_turf = get_turf(src) - if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) - to_chat(user, SPAN_WARNING("You were interrupted!")) - return + if(!istype(current_turf, /turf/open_space)) + return - user.visible_message(SPAN_WARNING("[user] climbs down."), SPAN_WARNING("You climb down.")) + if(!current_turf.Enter(user)) + return - var/turf/below = SSmapping.get_turf_below(current_turf) - while(istype(below, /turf/open_space)) - below = SSmapping.get_turf_below(below) + user.visible_message(SPAN_WARNING("[user] starts climbing down."), SPAN_WARNING("You start climbing down.")) - user.forceMove(below) + if(!do_after(user, 3 SECONDS, INTERRUPT_ALL, BUSY_ICON_GENERIC)) + to_chat(user, SPAN_WARNING("You were interrupted!")) return + user.visible_message(SPAN_WARNING("[user] climbs down."), SPAN_WARNING("You climb down.")) + + var/turf/below = SSmapping.get_turf_below(current_turf) + while(istype(below, /turf/open_space)) + below = SSmapping.get_turf_below(below) + + user.forceMove(below) + return + /turf/open_space/is_weedable() return NOT_WEEDABLE diff --git a/code/game/turfs/transit.dm b/code/game/turfs/transit.dm index 682bedc2cee6..80712058c0aa 100644 --- a/code/game/turfs/transit.dm +++ b/code/game/turfs/transit.dm @@ -53,6 +53,8 @@ var/area/turf_area = get_area(turf) if(!turf_area || CEILING_IS_PROTECTED(turf_area.ceiling, CEILING_PROTECTION_TIER_1)) continue + if(turf_area.flags_area & AREA_NO_PARA) + continue //marines can't swim if(turf.density) continue var/found_dense = FALSE diff --git a/code/game/turfs/turf.dm b/code/game/turfs/turf.dm index fea425962111..d91fb88fae5c 100644 --- a/code/game/turfs/turf.dm +++ b/code/game/turfs/turf.dm @@ -91,7 +91,7 @@ if(above) above.multiz_new(dir=DOWN) - + if(below) below.multiz_new(dir=UP) @@ -180,7 +180,7 @@ var/turf/below = SSmapping.get_turf_below(src) if(above) above.multiz_del(dir=DOWN) - + if(below) below.multiz_del(dir=UP) @@ -947,9 +947,9 @@ GLOBAL_LIST_INIT(blacklisted_automated_baseturfs, typecacheof(list( /turf/proc/on_throw_end(atom/movable/thrown_atom) return TRUE -/turf/proc/z_impact(mob/living/victim, height, stun_modifier = 1, damage_modifier = 1, fracture_modifier = 1) +/turf/proc/z_impact(mob/living/victim, height, stun_modifier = 1, damage_modifier = 1, fracture_modifier = 0) if(ishuman_strict(victim)) - var/mob/living/carbon/human/human_victim = victim + var/mob/living/carbon/human/human_victim = victim if (stun_modifier > 0) human_victim.KnockDown(5 * height * stun_modifier) human_victim.Stun(5 * height * stun_modifier) diff --git a/code/modules/cm_marines/equipment/maps.dm b/code/modules/cm_marines/equipment/maps.dm index 9f2a10eef41d..13fe68786431 100644 --- a/code/modules/cm_marines/equipment/maps.dm +++ b/code/modules/cm_marines/equipment/maps.dm @@ -143,6 +143,12 @@ html_link = "images/9/94/New_Varadero.png" color = "red" +/obj/item/map/navalis + name = "\improper Navalis Platform 13 map" + desc = "A blueprint of Navalis Platform 13" + html_link = "images/6/67/Navalis_platform_13_ic.png" + color = "cyan" + GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) /proc/setup_all_maps() @@ -160,7 +166,8 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps()) MAP_KUTJEVO = new /obj/item/map/kutjevo_map(), MAP_LV522_CHANCES_CLAIM = new /obj/item/map/lv522_map(), MAP_LV759_HYBRISA_PROSPERA = new /obj/item/map/lv759_map(), - MAP_NEW_VARADERO = new /obj/item/map/new_varadero() + MAP_NEW_VARADERO = new /obj/item/map/new_varadero(), + MAP_NAVALIS = new /obj/item/map/navalis() ) //used by marine equipment machines to spawn the correct map. diff --git a/code/modules/desert_dam/filtration/structures.dm b/code/modules/desert_dam/filtration/structures.dm index a7da3b6c9809..115b4dd74090 100644 --- a/code/modules/desert_dam/filtration/structures.dm +++ b/code/modules/desert_dam/filtration/structures.dm @@ -205,6 +205,28 @@ bound_width = 64 bound_height = 96 +/obj/structure/filtration/machine_64x96/filtration_machine + name = "Filtration Machine" + desc = "Machine intended to filter liquid in to two seperate containers." + icon_state = "filtration_machine_A_0" + +/obj/structure/filtration/machine_64x96/filtration_machine/broken + icon_state = "filtration_machine_A_1" + +/obj/structure/filtration/machine_64x96/filtration_machine_a/alt + icon_state = "filtration_machine_B_0" + +/obj/structure/filtration/machine_64x96/filtration_machine_a/alt_broken + icon_state = "filtration_machine_B_1" + +/obj/structure/filtration/machine_64x96/sedementation + name = "Sedementation Tanker" + desc = "Machine intended to hold liquid." + icon_state = "sedementation_0" + +/obj/structure/filtration/machine_64x96/sedementation/broken + icon_state = "sedementation_1" + /obj/structure/filtration/machine_64x96/indestructible unacidable = TRUE unslashable = TRUE @@ -215,13 +237,23 @@ /obj/structure/filtration/machine_64x128 icon = 'icons/obj/structures/props/industrial/64x128.dmi' - //bound_x = 96 - //bound_y = 96 + bound_x = 96 + bound_y = 96 density = TRUE anchored = TRUE bound_width = 64 bound_height = 128 +/obj/structure/filtration/machine_64x128/filtrationtank + name = "Storage Tank" + desc = "A massive tank intended to hold large amounts of liquid." + icon_state = "filtration_0" + density = TRUE + +/obj/structure/filtration/machine_64x128/filtrationtank/broken + desc = "A massive tank intended to hold large amounts of liquid. This one appears damaged." + icon_state = "filtration_1" + /obj/structure/filtration/machine_64x128/indestructible unacidable = TRUE unslashable = TRUE diff --git a/code/modules/gear_presets/survivors/navalis/preset_navalis.dm b/code/modules/gear_presets/survivors/navalis/preset_navalis.dm new file mode 100644 index 000000000000..d20497dd6c45 --- /dev/null +++ b/code/modules/gear_presets/survivors/navalis/preset_navalis.dm @@ -0,0 +1,248 @@ +// Civilian Survivors // + +// Automation Specialist + +/datum/equipment_preset/survivor/navalis/automation_specialist + name = "Survivor - Navalis - Automation Specialist" + assignment = "Automation Specialist" + skills = /datum/skills/civilian/survivor + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_LOGISTICS) + + survivor_variant = CIVILIAN_SURVIVOR + +/datum/equipment_preset/survivor/navalis/automation_specialist/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/pink(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/red(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/blue(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/crew_monitor(new_human), WEAR_IN_BACK) + add_survivor_weapon_civilian(new_human) + ..() + +// Radio Operator (Has knowedge of Marines coming) + +/datum/equipment_preset/survivor/navalis/radio_operator + name = "Survivor - Navalis - Radio Operator" + assignment = "Radio Operator" + skills = /datum/skills/civilian/survivor + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_COMMAND) + + survivor_variant = CIVILIAN_SURVIVOR + +/datum/equipment_preset/survivor/navalis/radio_operator/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat(new_human), WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/green(new_human), WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/green(new_human), WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/blue(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/paper/navalis/rescue(new_human), WEAR_IN_BACK) + add_survivor_weapon_civilian(new_human) + ..() + +// Security Survivors // + +// Security Officer + +/datum/equipment_preset/survivor/navalis/platform_guard + name = "Survivor - Navalis - Platform Security Guard" + assignment = "NP13 - Platform Security Guard" + flags = EQUIPMENT_PRESET_START_OF_ROUND + skills = /datum/skills/civilian/survivor/goon + idtype = /obj/item/card/id/silver/clearance_badge/cl + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_COMMAND, ACCESS_WY_SECURITY) + + survivor_variant = SECURITY_SURVIVOR + +/datum/equipment_preset/survivor/navalis/platform_guard/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/beret, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/tshirt/gray_blu, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/armor/vest, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/veteran, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/marine/corporate, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/p90, WEAR_J_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/magazine/large, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/smg/p90, WEAR_IN_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/security/MP/full, WEAR_WAIST) + +// Science Survivors // + +// Exo-Geologist + +/datum/equipment_preset/survivor/navalis/exo_geologist + name = "Survivor - Navalis - Exo-Geologist" + assignment = "Exo-Geologist" + skills = /datum/skills/civilian/survivor/scientist + flags = EQUIPMENT_PRESET_START_OF_ROUND + idtype = /obj/item/card/id/silver/clearance_badge/scientist + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY) + + survivor_variant = SCIENTIST_SURVIVOR + +/datum/equipment_preset/survivor/navalis/exo_geologist/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/tox, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/scientist/hybrisa, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/nspa_hazard, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/science, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/green, WEAR_FEET) + add_survivor_weapon_civilian(new_human) + add_random_survivor_research_gear(new_human) + ..() + +// Medical Survivors // + +// Medic + +/datum/equipment_preset/survivor/navalis/medic + name = "Survivor - Navalis - Medical Technician" + assignment = "Medical Technician" + flags = EQUIPMENT_PRESET_START_OF_ROUND + assignment = "Medical Technician" + skills = /datum/skills/civilian/survivor/paramedic + idtype = /obj/item/card/id/silver + access = list(ACCESS_CIVILIAN_PUBLIC, ACCESS_CIVILIAN_RESEARCH, ACCESS_CIVILIAN_MEDBAY, ACCESS_CIVILIAN_COMMAND) + + survivor_variant = MEDICAL_SURVIVOR + +/datum/equipment_preset/survivor/navalis/medic/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/medical_green, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/hybrisa/paramedic, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/latex, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/med, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/white, WEAR_FEET) + add_random_survivor_medical_gear(new_human) + add_survivor_weapon_civilian(new_human) + ..() + +// Corporate Survivors // + +// Platform First Officer + +/datum/equipment_preset/survivor/navalis/first_officer + name = "Survivor - Navalis - Platform First Officer" + assignment = "First Officer" + skills = /datum/skills/civilian/survivor/manager + flags = EQUIPMENT_PRESET_START_OF_ROUND + idtype = /obj/item/card/id/silver/clearance_badge/manager + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_COMMAND,ACCESS_WY_GENERAL,ACCESS_WY_COLONIAL,ACCESS_WY_EXEC,) + + survivor_variant = CORPORATE_SURVIVOR + +/datum/equipment_preset/survivor/navalis/first_officer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/white, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/WY, WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/blue, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/utility/blue, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/blue, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/laceup/brown, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/spacecash/c1000(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/tool/pen/clicky(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clipboard(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/device/megaphone(new_human), WEAR_IN_BACK) + add_survivor_weapon_civilian(new_human) + add_random_cl_survivor_loot(new_human) + ..() + +// Engineering Survivors // + +// Operations Engineer + +/datum/equipment_preset/survivor/navalis/operations_engineer + name = "Survivor - Navalis - Operations Engineer" + assignment = "Operations Engineer" + skills = /datum/skills/civilian/survivor/engineer + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_ENGINEERING,ACCESS_CIVILIAN_LOGISTICS) + + survivor_variant = ENGINEERING_SURVIVOR + +/datum/equipment_preset/survivor/navalis/operations_engineer/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/orange, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/colonist/workwear/khaki, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/yellow, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/survival/full, WEAR_L_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/yellow, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/nailgun, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/plasteel/small_stack, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding, WEAR_EYES) + add_survivor_weapon_civilian(new_human) + ..() + +// Platform Maint Tech + +/datum/equipment_preset/survivor/navalis/maint_tech + name = "Survivor - Navalis - Platform Maintenance Technician" + assignment = "Platform Maintenance Technician" + skills = /datum/skills/civilian/survivor/engineer + flags = EQUIPMENT_PRESET_START_OF_ROUND + access = list(ACCESS_CIVILIAN_PUBLIC,ACCESS_CIVILIAN_ENGINEERING,ACCESS_CIVILIAN_LOGISTICS) + + survivor_variant = ENGINEERING_SURVIVOR + +/datum/equipment_preset/survivor/navalis/maint_tech/load_gear(mob/living/carbon/human/new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/marine/insulated, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/hardhat/dblue, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/under/rank/worker_overalls, WEAR_BODY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/hazardvest/blue, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/satchel/eng, WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/utility/full, WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/tools/full, WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/black, WEAR_FEET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/smg/nailgun/compact, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/stack/sheet/metal/medium_stack, WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/welding, WEAR_EYES) + add_survivor_weapon_civilian(new_human) + ..() + +// Hostile Survivors // + +/datum/equipment_preset/survivor/navalis/clf_wet_ops + name = "Survivor - Navalis - CLF Special Forces" + flags = EQUIPMENT_PRESET_EXTRA + skills = /datum/skills/civilian/survivor/clf + languages = list(LANGUAGE_ENGLISH, LANGUAGE_JAPANESE) + faction = FACTION_CLF + faction_group = list(FACTION_CLF, FACTION_SURVIVOR) + minimap_background = "background_clf" + minimap_icon = "clf_mil" + access = list(ACCESS_CIVILIAN_PUBLIC) + survivor_variant = HOSTILE_SURVIVOR + +/datum/equipment_preset/survivor/navalis/clf_wet_ops/load_gear(mob/living/carbon/human/new_human) + spawn_rebel_uniform(new_human) + new_human.equip_to_slot_or_del(new /obj/item/clothing/head/helmet/marine/grey, WEAR_HEAD) + new_human.equip_to_slot_or_del(new /obj/item/clothing/glasses/sunglasses/aviator, WEAR_EYES) + new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/helmet_nvg/cosmetic, WEAR_IN_HELMET) + new_human.equip_to_slot_or_del(new /obj/item/prop/helmetgarb/bullet_pipe, WEAR_IN_HELMET) + new_human.equip_to_slot_or_del(new /obj/item/clothing/mask/gas/pmc, WEAR_FACE) + new_human.equip_to_slot_or_del(new /obj/item/clothing/gloves/combat, WEAR_HANDS) + new_human.equip_to_slot_or_del(new /obj/item/clothing/accessory/storage/webbing, WEAR_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m16(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m16(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/ammo_magazine/rifle/m16(new_human), WEAR_IN_ACCESSORY) + new_human.equip_to_slot_or_del(new /obj/item/clothing/suit/storage/militia/vest, WEAR_JACKET) + new_human.equip_to_slot_or_del(new /obj/item/weapon/gun/rifle/m16/m16a5(new_human), WEAR_L_HAND) + new_human.equip_to_slot_or_del(new /obj/item/storage/belt/marine/m16(new_human), WEAR_WAIST) + new_human.equip_to_slot_or_del(new /obj/item/device/radio/headset/distress/CLF(new_human), WEAR_L_EAR) + new_human.equip_to_slot_or_del(new /obj/item/storage/backpack/lightpack/five_slot(new_human), WEAR_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/pouch/firstaid/ert(new_human), WEAR_R_STORE) + new_human.equip_to_slot_or_del(new /obj/item/book/codebook/wey_yu(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/storage/box/clf(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/reagent_container/ld50_syringe/choral(new_human), WEAR_IN_BACK) + new_human.equip_to_slot_or_del(new /obj/item/clothing/shoes/veteran/pmc/knife, WEAR_FEET) + ..() diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 316cd795980d..cfc494c86403 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -654,6 +654,11 @@ color = "green" info = "

I could not do it, the fucking marshals, the minions of THEM, have gotten a whiff of my co-workers plans and started raiding us pre-emptively. We managed to get word of it and erected a few barricades to slow them down, but it is too late. Our plan, my plan to save humanity has turned to dust.

As I lay and write this, they are gassing the entire area with tear gas, while gunshots echo around the caves. \n They have gotten to my mind already, their voices are... laughing, saying that, \" it's over \" and that \n “we have risen\". Their voices are mocking me as I could do nothing to prevent their rise \n Just as I am about to finish my final entry, I overhear a few panicked radio calls from a dead officer's radio, about a code red lambda breach, and \" X-RAYS OUT OF CONTAINMENT\". \n However, not a single one of their cries has been met with a response as their fellow officers are too preoccupied with beating up poor miners... \n They have won.... they have PLANNED THIS all along.... \n only God may save us now..." +/obj/item/paper/navalis/rescue + name = "Rescue Imminent: Tell Others" + info = "I just got off the radio before the main relay tower was ripped apart, its the Marines! They heard our distress call and are on the way! They'll be landing within the day, I need to warn the others, hope is in sight! Its almost over." + + /obj/item/paper/bigred/upp name = "UPP Orders" diff --git a/colonialmarines.dme b/colonialmarines.dme index 91c3b274e52a..44276c1d5644 100644 --- a/colonialmarines.dme +++ b/colonialmarines.dme @@ -750,6 +750,7 @@ #include "code\datums\weather\weather_events\lv522_chances_claim.dm" #include "code\datums\weather\weather_events\lv624.dm" #include "code\datums\weather\weather_events\lv759_hybrisa_prospera.dm" +#include "code\datums\weather\weather_events\navalis_platform_13.dm" #include "code\datums\weather\weather_events\new_varadero.dm" #include "code\datums\weather\weather_events\sorokyne.dm" #include "code\datums\weather\weather_map_holders\big_red.dm" @@ -757,6 +758,7 @@ #include "code\datums\weather\weather_map_holders\lv522_chances_claim.dm" #include "code\datums\weather\weather_map_holders\lv624.dm" #include "code\datums\weather\weather_map_holders\lv759_hybrisa_prospera.dm" +#include "code\datums\weather\weather_map_holders\navalis_platform_13.dm" #include "code\datums\weather\weather_map_holders\new_varadero.dm" #include "code\datums\weather\weather_map_holders\sorokyne.dm" #include "code\datums\xeno_shields\xeno_shield.dm" @@ -799,6 +801,7 @@ #include "code\game\area\LV522_Chances_Claim.dm" #include "code\game\area\LV624.dm" #include "code\game\area\LV759_Hybrisa_Prospera.dm" +#include "code\game\area\Navalis_Platform_13.dm" #include "code\game\area\prison.dm" #include "code\game\area\Prison_Station_FOP.dm" #include "code\game\area\prison_v3_fiorina.dm" @@ -1881,6 +1884,7 @@ #include "code\modules\gear_presets\survivors\lv_624\corporate_dome_insert_lv624.dm" #include "code\modules\gear_presets\survivors\lv_624\preset_lv.dm" #include "code\modules\gear_presets\survivors\lv_759\preset_hybrisa.dm" +#include "code\modules\gear_presets\survivors\navalis\preset_navalis.dm" #include "code\modules\gear_presets\survivors\new_varadero\preset_new_varadero.dm" #include "code\modules\gear_presets\survivors\shivas_snowball\panic_room_insert_shivas.dm" #include "code\modules\gear_presets\survivors\shivas_snowball\preset_shivas_snowball.dm" diff --git a/icons/obj/resin_objects.dmi b/icons/obj/resin_objects.dmi index dcf1c777bbe4..5f2d5720a50c 100644 Binary files a/icons/obj/resin_objects.dmi and b/icons/obj/resin_objects.dmi differ diff --git a/icons/obj/structures/props/hybrisa/grates.dmi b/icons/obj/structures/props/hybrisa/grates.dmi index 15f6410b7724..05cbdb590d11 100644 Binary files a/icons/obj/structures/props/hybrisa/grates.dmi and b/icons/obj/structures/props/hybrisa/grates.dmi differ diff --git a/icons/obj/structures/props/oilrig/support_beam.dmi b/icons/obj/structures/props/oilrig/support_beam.dmi new file mode 100644 index 000000000000..a0f8eacad2aa Binary files /dev/null and b/icons/obj/structures/props/oilrig/support_beam.dmi differ diff --git a/icons/obj/structures/props/wall_decorations/decals.dmi b/icons/obj/structures/props/wall_decorations/decals.dmi index cdb3eed6769d..106cc8fb75f8 100644 Binary files a/icons/obj/structures/props/wall_decorations/decals.dmi and b/icons/obj/structures/props/wall_decorations/decals.dmi differ diff --git a/icons/turf/half_plate.dmi b/icons/turf/half_plate.dmi new file mode 100644 index 000000000000..03ee38014212 Binary files /dev/null and b/icons/turf/half_plate.dmi differ diff --git a/icons/ui_icons/map_blips.dmi b/icons/ui_icons/map_blips.dmi index cd9025fb7930..e1333772f1a9 100644 Binary files a/icons/ui_icons/map_blips.dmi and b/icons/ui_icons/map_blips.dmi differ diff --git a/map_config/maps.txt b/map_config/maps.txt index dda60215ffad..0729b3aa5797 100644 --- a/map_config/maps.txt +++ b/map_config/maps.txt @@ -60,6 +60,9 @@ map lv759_hybrisa_prospera minplayers 130 endmap +map navalis_platform_13 +endmap + map new_varadero endmap diff --git a/maps/map_briefings/cl_brief_navalis.html b/maps/map_briefings/cl_brief_navalis.html new file mode 100644 index 000000000000..716b80f99440 --- /dev/null +++ b/maps/map_briefings/cl_brief_navalis.html @@ -0,0 +1,69 @@ +
+
Weyland-Yutani Corporation
"Building Better + Worlds"
+
+
Special Services Division
Liaison Colony Briefing
+
+
The ship AI aboard your stationed ship has informed us that a distress +signal has been picked up from an off-shore platform on planet Aires, and that a mission is being +prepared to investigate the disturbance.

As such, the special +services division has prepared a briefing on the nature of the colony, and known +potential threats to it's operation.

Classified materials are +excluded from this briefing and should be requested separately, and as such, the +contents of this document may be shared or withheld at your discretion, unless +otherwise specified.
+
+
Planet: Aires
Facility: Navalis Platform Thireteen (13)
Operator: Weyland-Yutani
+
+
History and Purpose
+
+
Navalis Platform 13 is one in a series of offshore platforms known +as the 'Navalis Cluster'. This cluster consists of fourty seven offshore +platforms, the majority of which are semi-automated, meaning they require only +a minimal crew compliment.

The seabed of this world is rich in +hydrocarbons and other valuable minerals. The abundance of this is such that +the continued operation of the Navalis Cluster is of paramount importance not only +to the corporation, but to the United American and Imperial governments.

+
+
NP-13 is the command and control platform of the cluster. It has crew +quarters to hold up to two hundred personnel and three landing pads with associated +shuttles to allow rapid transit between all platforms in the cluster. As the majority +of the platforms in the cluster are semi-automated, only a minimal crew requirement is +needed on these platforms at any given time. Otherwise, crews are rotated through NP-13. +

Under normal circumstances, it can be expected that the true crew compliment +of NP-13 is around 30 to 50 personnel.

The platform holds only a modest security +compliment of a dozen personnel, however they are issued with modern weaponry and defensive +system compliments. +
+
Amongst corporate personnel, a posting on this world is considered a dead-end career path +for senior ranked individuals, whereas for junior ranked personnel this posting is seen as an +excellent starting point in your career.

Take this into consideration when interacting +with local personnel. You are authorised to offer off-world transfers or single-rank promotions to +platform personnel should this be in the general interests of the company. +
It is the opinion of our Security analysts division that the most likely cause of this +distress signal is a cyclone that has struck the platform and has disabled it. The platform is +rated to survive up to Category 7 hurricane's and similar events, nonetheless damage to exterior +communications is possible.

However our security division can not rule out the risk +of an armed outside group assaulting the station. As such, the dispatchment of a military relief +mission to investigate this issue has been put forward as the best course of action. +
+
Recent Information
+
+
The final report transmitted from the platform prior to ceasation of communications, indicated +that the platform personnel had started to detect sub-surface movement on the ocean floor. This is +considered unexpected, as there is minimal xeno-fauna life that can survive at those depths. The local +scientific personnel believe these movements may be the result of the on-going mining operation. +
+
Final Note
+
+
Liaison. The strategic value of this platform is absolute. The loss of any other platform +would only be a minor setback. However, this platform is solely responsible for the operation +of the entire Navalis cluster. If this platform is disabled for a long duration, or worse destroyed, +then the financial consequences will send major shockwaves through the local sector division, and risk +a substantial, single digit, drop in quarterly profits. +
diff --git a/maps/map_files/Navalis_Platform_13/Navalis_Platform_13.dmm b/maps/map_files/Navalis_Platform_13/Navalis_Platform_13.dmm new file mode 100644 index 000000000000..b64381793776 --- /dev/null +++ b/maps/map_files/Navalis_Platform_13/Navalis_Platform_13.dmm @@ -0,0 +1,218554 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aaa" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3, +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aab" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aac" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aad" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aae" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aaf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangeline, +/area/navalis/indoors/industrial/power) +"aag" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/orangelinecorner/west, +/area/navalis/indoors/industrial/power) +"aah" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aai" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/reagent_dispensers/fueltank/oxygentank, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aal" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aam" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aan" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aao" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aap" = ( +/obj/structure/closet/toolcloset, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aar" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aas" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aat" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aau" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/powercell, +/obj/effect/landmark/objective_landmark/science, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aav" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aax" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aay" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aaz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaA" = ( +/obj/item/clothing/head/welding, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaC" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/meson, +/obj/structure/prop/server_equipment/laptop/closed, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaD" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 4; + pixel_y = 2; + pixel_x = 2 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaG" = ( +/obj/item/tool/weldingtool, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaH" = ( +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = -5 + }, +/turf/open/floor/prison/ramptop, +/area/navalis/indoors/industrial/power) +"aaI" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"aaJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaL" = ( +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aaM" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaN" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/power) +"aaP" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aaR" = ( +/obj/effect/spawner/random/pills/midchance{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaS" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/closet, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaT" = ( +/obj/effect/spawner/random/tool{ + pixel_x = -5; + pixel_y = -3 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaW" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aaX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aaY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -25; + color = "#FFFF00" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"aaZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/power) +"aba" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/refinery) +"abb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"abc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/refinery) +"abd" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"abe" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"abf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"abg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -10; + pixel_y = -9; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"abh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"abi" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"abj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2/southeast, +/area/navalis/indoors/residential/starboard) +"abk" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"abl" = ( +/obj/effect/decal/navalis/plate_edge/darker, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/refinery) +"abm" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/accessway) +"abn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"abo" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"abp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/omega, +/area/navalis/indoors/industrial/refinery) +"abq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/industrial/refinery) +"abr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/north, +/area/navalis/indoors/industrial/refinery) +"abs" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/orangeline/east, +/area/navalis/indoors/industrial/refinery) +"abt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/accessway) +"abu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/red, +/area/navalis/indoors/industrial/refinery) +"abv" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/orangeline/west, +/area/navalis/indoors/industrial/refinery) +"abw" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 4 + }, +/turf/open/floor/hybrisa/metal/orangeline/east, +/area/navalis/indoors/industrial/refinery) +"abx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/refinery) +"aby" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open_space, +/area/navalis/oob/empty_space) +"abz" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_y = 1; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"abA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"abB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangeline/west, +/area/navalis/indoors/industrial/refinery) +"abC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/refinery) +"abD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/east, +/area/navalis/indoors/industrial/refinery) +"abE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/west, +/area/navalis/indoors/industrial/refinery) +"abF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"abG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"abH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangelinecorner/west, +/area/navalis/indoors/industrial/refinery) +"abI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/browncorner, +/area/navalis/indoors/industrial/refinery) +"abJ" = ( +/turf/open/floor/darkgreen2/east, +/area/navalis/indoors/residential/accessway) +"abK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/port) +"abL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"abM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/darkgreen/east, +/area/navalis/indoors/industrial/refinery) +"abN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/refinery) +"abO" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"abP" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"abQ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"abR" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"abS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/command/aft_hallway) +"abT" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/west, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"abU" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/accessway) +"abV" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"abW" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"abX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"abY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/refinery) +"abZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangelinecorner/north, +/area/navalis/indoors/industrial/refinery) +"aca" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"acb" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 1; + pixel_y = 3 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"acc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acd" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ace" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acf" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"acg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"ach" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7; + pixel_x = 16 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aci" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/obj/structure/platform/metal/hybrisa/metalplatform2/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"acj" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"ack" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open_space, +/area/navalis/oob/empty_space) +"acl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"acm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aco" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/lower_deck/port) +"acp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acq" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acr" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"acs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"act" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/navalis/indoors/logistic/primary_storage) +"acu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/navalis/indoors/logistic/primary_storage) +"acv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"acw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/med_sci/lower_level/delivery) +"acx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"acy" = ( +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/primary_storage) +"acz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 27 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"acA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"acB" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"acC" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 1; + icon_state = "trash_11" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -12; + pixel_y = 15 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"acD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acE" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open_space, +/area/navalis/oob/empty_space) +"acF" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"acG" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/outdoors/landing_zone_2/under) +"acH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"acI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"acJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/navalis/indoors/logistic/primary_storage) +"acK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"acL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"acM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"acN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"acO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acP" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -7; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"acQ" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_x = -2; + pixel_y = -23 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"acR" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"acS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"acT" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"acU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"acW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = -4 + }, +/turf/open/floor/prison/darkbrowncorners2/west, +/area/navalis/indoors/logistic/primary_storage) +"acX" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"acY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"acZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"ada" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"adb" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/turf/open/floor/corsat/plate, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"adc" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/indoors/landing_zone_2) +"adf" = ( +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/corsat/brown/northwest, +/area/navalis/indoors/industrial/mining) +"adg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"adh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"adi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -2; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"adj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + dir = 1; + pixel_y = -11 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = 14 + }, +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"adk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"adl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"adm" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"adn" = ( +/obj/structure/ore_box, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"ado" = ( +/obj/effect/spawner/random/tool, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"adp" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"adq" = ( +/obj/structure/machinery/light{ + invisibility = 101 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2/east, +/area/navalis/indoors/industrial/mining) +"adr" = ( +/obj/structure/machinery/light{ + invisibility = 101 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/navalis/indoors/industrial/mining) +"ads" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"adt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = 9; + pixel_y = 42 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 18 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"adu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"adv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"adw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"adx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"ady" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"adz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"adA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"adB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/secure, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"adC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"adD" = ( +/obj/structure/prop/server_equipment/laptop/on{ + pixel_y = 4; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"adE" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"adF" = ( +/obj/structure/largecrate/random/case, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"adG" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/outdoors/landing_zone_2) +"adH" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/primary_storage) +"adI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"adJ" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"adL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2/southeast, +/area/navalis/indoors/logistic/primary_storage) +"adM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/primary_storage) +"adN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"adO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/corporate{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"adP" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 8 + }, +/obj/item/stack/sheet/metal/large_stack, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"adQ" = ( +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"adR" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"adS" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"adT" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 4 + }, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"adU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"adV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/browncorner/east, +/area/navalis/indoors/industrial/mining) +"adW" = ( +/obj/item/fuel_cell{ + layer = 3.1; + pixel_x = -10; + pixel_y = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"adX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/northeast, +/area/navalis/indoors/logistic/primary_storage) +"adY" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"adZ" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/primary_storage) +"aea" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"aeb" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aec" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/primary_storage) +"aed" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/logistic/primary_storage) +"aee" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/obj/structure/surface/table/almayer, +/obj/item/tank/emergency_oxygen, +/obj/item/tank/emergency_oxygen{ + pixel_x = -6 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"aef" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/gamma, +/area/navalis/indoors/industrial/mining) +"aeg" = ( +/obj/item/stack/rods{ + pixel_x = -5 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeh" = ( +/obj/item/stack/sheet/metal{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aei" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aej" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aek" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/morgue) +"ael" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aem" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 14 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aen" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeo" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aep" = ( +/obj/item/fuel_cell{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"aeq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aes" = ( +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -4 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/maintenance_port) +"aet" = ( +/obj/structure/bed/chair{ + pixel_y = -1; + dir = 8; + pixel_x = 9 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/Port_hallway) +"aeu" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/wrench, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aev" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 8 + }, +/obj/structure/largecrate/random, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"aew" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"aex" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"aey" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 4 + }, +/obj/item/fuel_cell, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"aez" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/machinery/light/small, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + layer = 2.9 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aeA" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy4{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aeB" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/pipes, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aeC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/Port_hallway) +"aeD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aeE" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aeF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aeG" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 1 + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"aeH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aeI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aeJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aeK" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aeL" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 8 + }, +/obj/effect/hybrisa/misc/fake/pipes, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aeM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/Port_hallway) +"aeN" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 + }, +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeO" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/marine/veteran/insulated{ + pixel_x = 1; + pixel_y = 6 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeP" = ( +/obj/structure/largecrate/empty, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeQ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/metal/med_large_stack, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeR" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/tool, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeS" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"aeT" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"aeU" = ( +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/pharmacy) +"aeV" = ( +/obj/item/stack/rods{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aeW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/mech/hydralic_clamp, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aeY" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 1; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + layer = 2; + pixel_y = 12; + pixel_x = -14 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 9; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -8; + pixel_x = -14; + layer = 2.5 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"afa" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afb" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"afc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"afd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"afe" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + pixel_x = -4 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"aff" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1; + layer = 2.97 + }, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"afg" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + pixel_y = 9; + pixel_x = -4; + layer = 4 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_x = 5; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"afh" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"afi" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/structure/machinery/shower{ + pixel_y = -10; + dir = 8; + pixel_x = -2 + }, +/obj/structure/sink{ + dir = 1; + pixel_x = -4; + pixel_y = -19 + }, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/starboard) +"afj" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/landmark/railgun_camera_pos, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"afk" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"afl" = ( +/obj/item/weapon/twohanded/folded_metal_chair, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"afm" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"afn" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/north, +/area/navalis/oob/powered) +"afo" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"afp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"afq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"afr" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/weapon/gun/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/clothing/suit/armor/vest, +/obj/effect/landmark/objective_landmark/far, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/head/beret, +/turf/open/floor/prison/red/north, +/area/navalis/indoors/command/security) +"afs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/mech_bay) +"aft" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/mech_bay) +"afu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/mech_bay) +"afv" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afw" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afx" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"afy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/item/newspaper{ + layer = 3.1; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"afz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"afA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"afB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"afC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"afD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"afE" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"afF" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"afG" = ( +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"afH" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afI" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/tool, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/navalis/indoors/logistic/mech_bay) +"afK" = ( +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/navalis/indoors/logistic/mech_bay) +"afL" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afM" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"afN" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 20 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"afO" = ( +/obj/structure/machinery/light{ + invisibility = 101; + dir = 1 + }, +/turf/open/floor/prison/darkyellowfull2/east, +/area/navalis/indoors/industrial/mining) +"afP" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"afQ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"afR" = ( +/obj/structure/machinery/door/poddoor/hybrisa/secure_red_door{ + dir = 4; + unacidable = 1; + explo_proof = 1; + name = "Sector Three Blastdoors"; + id = "sector_three"; + needs_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/navalis/oob) +"afS" = ( +/obj/structure/prop/resin_prop{ + dir = 8; + icon_state = "chair" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"afT" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"afU" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"afV" = ( +/obj/structure/prop/hybrisa/supermart/souto_rack, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"afW" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"afX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"afY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"afZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"aga" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"agb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"agc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy4, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"age" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"agf" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"agg" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/largecrate/random/case/double{ + layer = 2.97 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"agh" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"agi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/rods{ + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"agj" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#1790f9"; + pixel_y = -8; + pixel_x = 3; + name = "rubber mat" + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"agk" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#4c9c97"; + layer = 2.01; + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"agl" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"agm" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"agn" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"ago" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"agp" = ( +/obj/structure/bed, +/obj/item/bedsheet/ce, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"agq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#16e9a1"; + layer = 2.01; + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"agr" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ags" = ( +/obj/structure/machinery/light/small, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"agt" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"agu" = ( +/obj/structure/prop/resin_prop{ + icon_state = "densecrate" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"agv" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"agw" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"agx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"agy" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"agz" = ( +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"agA" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"agB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkyellow2/west, +/area/navalis/indoors/logistic/mech_bay) +"agC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 1 + }, +/turf/open/floor/prison/darkyellow2/east, +/area/navalis/indoors/logistic/mech_bay) +"agD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wrench{ + pixel_x = -8; + pixel_y = 10 + }, +/obj/item/stack/rods{ + pixel_x = -5 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/mech_bay) +"agE" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/red/north, +/area/navalis/indoors/command/security) +"agF" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/random/mini, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"agG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"agH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/brown, +/area/navalis/indoors/industrial/mining) +"agI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/southeast, +/area/navalis/indoors/industrial/mining) +"agJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat/brown/southwest, +/area/navalis/indoors/industrial/mining) +"agK" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"agL" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"agM" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"agN" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"agO" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"agP" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "chair_alt" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"agQ" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 5; + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"agR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/starboard) +"agS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/starboard) +"agT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/starboard) +"agU" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"agV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"agW" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -3; + pixel_y = 6 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"agX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"agY" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"agZ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"aha" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ahb" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ahc" = ( +/obj/effect/spawner/random/pills/midchance, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"ahd" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"ahf" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/Port_hallway) +"ahg" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/mech_bay) +"ahh" = ( +/obj/structure/machinery/mech_bay_recharge_port{ + name = "Power Port" + }, +/obj/structure/sign/poster/pinup{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/navalis/indoors/logistic/mech_bay) +"ahi" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/navalis/indoors/logistic/mech_bay) +"ahj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -15 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -15 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -15 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahm" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"ahn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/accessway) +"aho" = ( +/obj/structure/prop/resin_prop{ + icon_state = "case" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ahp" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -25; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ahq" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ahr" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ahs" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/storage/hazardvest{ + pixel_x = -6; + pixel_y = -6 + }, +/obj/item/clothing/suit/storage/hazardvest/blue, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aht" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahu" = ( +/obj/structure/machinery/light, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"ahv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pj/red, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"ahw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"ahx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/starboard) +"ahy" = ( +/obj/structure/prop/resin_prop{ + icon_state = "chest_white" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ahz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahA" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahB" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + dir = 1; + pixel_y = -11 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahD" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahE" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/Port_hallway) +"ahF" = ( +/obj/effect/alien/resin/sticky, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"ahG" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/megaphone, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/meeting_hall) +"ahH" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ahI" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahJ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahK" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahL" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ahN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/industrial/refinery) +"ahO" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ahP" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"ahQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"ahR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"ahS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"ahT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/navalis/indoors/residential/starboard) +"ahU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile, +/area/navalis/indoors/residential/starboard) +"ahV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"ahW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/navalis/indoors/residential/starboard) +"ahX" = ( +/obj/structure/prop/resin_prop{ + icon_state = "secure_crate_strapped" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ahY" = ( +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"ahZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -8; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aia" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aib" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aic" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + dir = 1; + pixel_y = -11 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aid" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aie" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aif" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aig" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32; + layer = 2.9 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aih" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aii" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -15; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aij" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/east, +/area/navalis/indoors/residential/accessway) +"aik" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"ail" = ( +/obj/effect/spawner/random/pills/midchance, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"aim" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/accessway) +"ain" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/accessway) +"aio" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 8; + icon_state = "trash_11" + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aip" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aiq" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"air" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"ais" = ( +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"ait" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkgreen2, +/area/navalis/indoors/residential/accessway) +"aiu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aiv" = ( +/obj/structure/prop/resin_prop{ + icon_state = "densecrate" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"aiw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aix" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/microwave{ + pixel_y = 7; + layer = 3.20; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"aiy" = ( +/obj/structure/closet/cabinet, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiz" = ( +/obj/structure/surface/table/woodentable, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 4; + pixel_x = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiA" = ( +/obj/structure/bed, +/obj/item/bedsheet/colorable{ + color = "#b54b3d" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiB" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aiC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_x = 16; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aiD" = ( +/obj/structure/surface/table/woodentable, +/obj/item/book{ + pixel_x = 5; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"aiF" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aiG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aiH" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/darkgreen2/west, +/area/navalis/indoors/residential/accessway) +"aiI" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aiJ" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aiK" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/radio{ + pixel_x = -12; + pixel_y = 8 + }, +/obj/item/tool/kitchen/knife, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiL" = ( +/obj/structure/surface/table/woodentable, +/obj/effect/decal/cleanable/dirt, +/obj/item/book/manual/detective, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aiN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aiO" = ( +/obj/structure/surface/table/woodentable, +/obj/item/trash/plate{ + pixel_y = 9 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiP" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aiQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aiS" = ( +/obj/structure/closet/cabinet, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"aiT" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/prop/resin_prop{ + icon_state = "densecrate" + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"aiU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"aiV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/tool/kitchen/tray{ + pixel_y = -10 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/bottle/beer/craft/mono{ + pixel_x = 7; + pixel_y = -6 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"aiW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"aiX" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"aiY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/residential/kitchen) +"aiZ" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"aja" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"ajb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_x = 1; + pixel_y = 15 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"ajc" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"ajd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/trash/plate, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"aje" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/starboard) +"ajf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"ajg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"ajh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/residential/kitchen) +"aji" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/device/radio/off{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"ajj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2/southeast, +/area/navalis/indoors/residential/accessway) +"ajk" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ajl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"ajm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"ajn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/aft_hallway) +"ajo" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"ajp" = ( +/obj/structure/surface/table/woodentable, +/obj/item/folder/black_random{ + pixel_x = 1; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"ajq" = ( +/obj/structure/surface/table/woodentable, +/obj/item/newspaper, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"ajr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2/east, +/area/navalis/indoors/residential/accessway) +"ajs" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 6; + pixel_y = -6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 14; + pixel_y = 9 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 4; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"ajt" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 18 + }, +/obj/effect/spawner/random/gun/uscm_primary/highchance, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aju" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"ajv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"ajw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/chem_dispenser/soda, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"ajx" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_y = 1; + layer = 2.5 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"ajy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = -4 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"ajz" = ( +/obj/structure/surface/table/woodentable, +/obj/item/paper_bin{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"ajA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"ajB" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/effect/spawner/random/powercell, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"ajC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkblue2/north, +/area/navalis/indoors/residential/accessway) +"ajD" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/darkblue2/north, +/area/navalis/indoors/residential/accessway) +"ajE" = ( +/obj/structure/machinery/light/small{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"ajF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"ajG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -8; + pixel_y = 9 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"ajH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/resin_prop{ + icon_state = "secure_crate_strapped" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"ajI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"ajJ" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"ajK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"ajL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/east, +/area/navalis/indoors/residential/accessway) +"ajM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/west, +/area/navalis/indoors/residential/accessway) +"ajN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/microwave, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"ajO" = ( +/obj/structure/reagent_dispensers/beerkeg, +/obj/structure/reagent_dispensers/beerkeg{ + pixel_x = -8; + pixel_y = -5 + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"ajP" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"ajQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/west, +/area/navalis/indoors/residential/accessway) +"ajR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"ajS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"ajT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/north, +/area/navalis/indoors/residential/accessway) +"ajU" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"ajV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/port) +"ajW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege, +/area/navalis/indoors/residential/port) +"ajX" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/residential/port) +"ajY" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"ajZ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"aka" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = -3; + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"akb" = ( +/obj/structure/machinery/light/small, +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"akc" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + pixel_x = -4 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"akd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/microwave{ + pixel_y = 7; + layer = 3.20; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"ake" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/microwave{ + pixel_y = 7; + layer = 3.20; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"akf" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"akg" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"akh" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed, +/obj/item/bedsheet/blue, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"aki" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/port) +"akj" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#d2b525"; + pixel_y = -8; + pixel_x = 3; + name = "rubber mat" + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"akk" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#f6643e"; + layer = 2.01; + pixel_y = -8; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"akl" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"akm" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"akn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"ako" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"akp" = ( +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/navalis/indoors/residential/port) +"akq" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"akr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"aks" = ( +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/command/director_office) +"akt" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aku" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#4c9c97"; + pixel_y = -8; + pixel_x = 3; + name = "rubber mat" + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"akv" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/paper, +/obj/item/paper{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"akw" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"akx" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"aky" = ( +/obj/structure/bed/chair/comfy{ + dir = 8; + icon_state = "comfychair_blue" + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"akz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/navalis/indoors/residential/port) +"akA" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"akB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14" + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"akC" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/newspaper, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"akD" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/clothing/under/sl_suit, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"akE" = ( +/obj/structure/toilet{ + pixel_y = -9; + dir = 1 + }, +/obj/structure/machinery/shower{ + pixel_y = 9; + dir = 8; + pixel_x = -4; + layer = 4 + }, +/obj/structure/sink{ + pixel_x = -4; + pixel_y = 24 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"akF" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = 3; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akI" = ( +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"akJ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akK" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"akL" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akM" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/hardhat/white{ + pixel_y = -3; + pixel_x = 4 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"akO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akP" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"akQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior/com_ext) +"akR" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -22 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"akT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akV" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"akX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"akY" = ( +/obj/effect/sentry_landmark/lz_2/bottom_right, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"akZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/industrial/power) +"ala" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"alb" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/whitered/southwest, +/area/navalis/indoors/med_sci/main_floor) +"alc" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ald" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"ale" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"alg" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 5 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"alj" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6; + pixel_x = 16 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5; + pixel_x = 16 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19; + pixel_x = 16 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"alm" = ( +/obj/structure/flora/tree/dead{ + pixel_y = 5; + pixel_x = -18; + name = "dead tree"; + desc = "Looks like it hasn't been tended to for a while." + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/landing_zone_1) +"aln" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/prison/floor_plate, +/area/navalis/outdoors/landing_zone_1) +"alo" = ( +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alp" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"als" = ( +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alt" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alv" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext) +"aly" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"alA" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alB" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + id = "vessellockdown"; + name = "PSV Charon - Vehicle Accessway"; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alC" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"alE" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alF" = ( +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alG" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + id = "vessellockdown"; + name = "PSV Charon - Vehicle Accessway"; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"alJ" = ( +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/comm_one) +"alL" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alN" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/closed/wall/strata_outpost/reinforced/hull{ + name = "PSV Charon" + }, +/area/navalis/oob) +"alO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"alR" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alU" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"alW" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/navalis/outdoors/landing_zone_2) +"alX" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"alZ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"ama" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"amb" = ( +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"amc" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"amd" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"ame" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amg" = ( +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"ami" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"amk" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"aml" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amm" = ( +/turf/open/floor/prison/greenblue/west, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amn" = ( +/turf/open/floor/prison/greenblue/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amo" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amp" = ( +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amq" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amr" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"ams" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amu" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amv" = ( +/turf/open/floor/prison/greenblue/north, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amw" = ( +/turf/open/floor/prison/greenblue/northeast, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amx" = ( +/obj/effect/decal/hybrisa/wy_huge_logo/lines, +/turf/open/floor/prison/greenfull/northwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amy" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"amz" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/indoors/industrial/refinery) +"amA" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"amB" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"amC" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"amD" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"amE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"amF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"amG" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/indoors/industrial/refinery) +"amH" = ( +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 20 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"amI" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/accessway) +"amJ" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/indoors/industrial/accessway) +"amK" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"amL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"amM" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"amN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"amO" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/refinery) +"amP" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"amQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"amR" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"amS" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"amT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"amU" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/accessway) +"amV" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/refinery) +"amW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"amX" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/refinery) +"amY" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/refinery) +"amZ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"ana" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -25; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anb" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anc" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"and" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = 3; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"ane" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"ang" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + pixel_y = 11; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -14; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = 8; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"ani" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -9; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anj" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"ank" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -14; + pixel_x = 8; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anl" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/refinery) +"anm" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/indoors/industrial/accessway) +"ann" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"ano" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = 3; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anp" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anq" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -25; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"ans" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"ant" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = 15; + pixel_x = 8; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 2; + pixel_y = -14; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anu" = ( +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"anv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"anw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"anx" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"any" = ( +/turf/open/floor/hybrisa/metal/orangeline/east, +/area/navalis/indoors/industrial/refinery) +"anz" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 8 + }, +/turf/open/floor/half_plate/dark_yellow/west, +/area/navalis/indoors/industrial/mining) +"anA" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/industrial/accessway) +"anB" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"anD" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/industrial/refinery) +"anE" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anF" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/accessway) +"anG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"anH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/accessway) +"anI" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/accessway) +"anJ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + layer = 2.1 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"anK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/accessway) +"anL" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/industrial/refinery) +"anM" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"anN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/refinery) +"anO" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"anP" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/accessway) +"anQ" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"anR" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -9; + pixel_x = -10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"anT" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/refinery) +"anU" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"anV" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"anW" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"anX" = ( +/turf/open_space, +/area/navalis/outdoors/landing_zone_2) +"anY" = ( +/turf/open/floor/prison/rampbottom/east, +/area/navalis/outdoors/comm_one) +"anZ" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/exterior/log_ext) +"aoa" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/comm_one) +"aob" = ( +/turf/open/floor/prison/ramptop, +/area/navalis/outdoors/exterior/log_ext) +"aoc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"aod" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aoe" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/primary_storage) +"aog" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/maintenance_starboard) +"aoh" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/indoors/industrial/mining) +"aoi" = ( +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"aoj" = ( +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"aok" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aol" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/indoors/industrial/mining) +"aom" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aon" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"aoo" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/indoors/industrial/mining) +"aop" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/primary_storage) +"aoq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"aor" = ( +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aos" = ( +/turf/open/floor/corsat/browncorner/east, +/area/navalis/indoors/industrial/mining) +"aot" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aou" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/industrial/mining) +"aov" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aow" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aox" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/mining) +"aoy" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aoz" = ( +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aoA" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aoB" = ( +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"aoC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aoD" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/mining) +"aoE" = ( +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aoF" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aoG" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aoH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoJ" = ( +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoK" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/workshop) +"aoL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/logistic/primary_storage) +"aoM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/Port_hallway) +"aoN" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/mech_bay) +"aoO" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"aoP" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoQ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoR" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/maintenance_port) +"aoT" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/navalis/indoors/logistic/Port_hallway) +"aoU" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/Port_hallway) +"aoV" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/maintenance_port) +"aoW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aoX" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/records_room) +"aoY" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/oft_duty_room) +"aoZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apa" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/workshop) +"apb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"apc" = ( +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"apd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/Port_hallway) +"ape" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/Port_hallway) +"apf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apg" = ( +/turf/open/floor/corsat/browncorner/west, +/area/navalis/indoors/industrial/mining) +"aph" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"api" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/indoors/industrial/accessway) +"apj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/mining) +"apk" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/starboard) +"apl" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"apm" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/pharmacy) +"apn" = ( +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"apo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"app" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"apq" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/records_room) +"apr" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aps" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/Port_hallway) +"apt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apu" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apv" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 1; + pixel_x = 5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"apw" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"apy" = ( +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/director_office) +"apz" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/accessway) +"apA" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"apB" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"apC" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/main_floor) +"apD" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/science_lower_entrance) +"apE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apF" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apH" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apI" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"apJ" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"apK" = ( +/turf/open/floor/plating, +/area/navalis/outdoors/landing_zone_1) +"apL" = ( +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/pharmacy) +"apM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/pharmacy) +"apN" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/main_floor) +"apO" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"apP" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/workshop) +"apQ" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/navalis/indoors/logistic/Port_hallway) +"apR" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/Port_hallway) +"apS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"apT" = ( +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"apU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"apV" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/navalis/outdoors/landing_zone_1) +"apW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/pharmacy) +"apX" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/main_floor) +"apY" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/main_floor) +"apZ" = ( +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"aqa" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aqb" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_one_access = null; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/mech_bay) +"aqc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/mech_bay) +"aqd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/mech_bay) +"aqe" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aqf" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/pharmacy) +"aqg" = ( +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aqh" = ( +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"aqi" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/science_lower_entrance) +"aqj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aqk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aql" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/xeno_growth) +"aqm" = ( +/turf/open/floor/plating, +/area/navalis/indoors/xeno_growth) +"aqn" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aqo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aqp" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"aqq" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/foyer) +"aqr" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/foyer) +"aqs" = ( +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/main_floor) +"aqt" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aqu" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/Port_hallway) +"aqv" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aqw" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/Port_hallway) +"aqx" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/brown, +/area/navalis/indoors/industrial/mining) +"aqz" = ( +/turf/open/floor/prison/whitered/west, +/area/navalis/indoors/med_sci/main_floor) +"aqA" = ( +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aqB" = ( +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/main_floor) +"aqC" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + pixel_y = 23; + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"aqD" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"aqE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"aqF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/starboard) +"aqG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open_space, +/area/navalis/oob/empty_space) +"aqH" = ( +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"aqI" = ( +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"aqJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"aqK" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"aqL" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/science_lower_entrance) +"aqM" = ( +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aqN" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/industrial/mining) +"aqO" = ( +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aqP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aqQ" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/starboard) +"aqR" = ( +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aqS" = ( +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/foyer) +"aqT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aqU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"aqV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/southeast, +/area/navalis/indoors/logistic/Port_hallway) +"aqW" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aqX" = ( +/obj/item/prop/colony/canister{ + pixel_y = 11 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aqY" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/industrial/mining) +"aqZ" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/kitchen) +"ara" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"arb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"arc" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/foyer) +"ard" = ( +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/foyer) +"are" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"arf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/Port_hallway) +"arg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/northeast, +/area/navalis/indoors/logistic/Port_hallway) +"arh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/industrial/mining) +"ari" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"arj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"ark" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/foyer) +"arl" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/med_sci/foyer) +"arm" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"arn" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/chemical_store) +"aro" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/chemical_store) +"arp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 10 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"arq" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/maintenance_port) +"arr" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/Port_hallway) +"ars" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"art" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aru" = ( +/turf/open/floor/plating, +/area/navalis/indoors/xeno_growth/residential) +"arv" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"arw" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"arx" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"ary" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/accessway) +"arz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/west, +/area/navalis/indoors/residential/accessway) +"arA" = ( +/turf/open/floor/plating, +/area/navalis/indoors/residential/kitchen) +"arB" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/navalis/indoors/residential/kitchen) +"arC" = ( +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"arD" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/foyer) +"arE" = ( +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/chemical_store) +"arF" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"arG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/industrial/mining) +"arH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"arI" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/north, +/area/navalis/indoors/residential/accessway) +"arJ" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/kitchen) +"arK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/kitchen) +"arL" = ( +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"arM" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/foyer) +"arN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"arO" = ( +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"arP" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"arQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"arR" = ( +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"arS" = ( +/turf/open/floor/corsat, +/area/navalis/indoors/xeno_growth/residential) +"arT" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"arV" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/kitchen) +"arX" = ( +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"arZ" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"asa" = ( +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/residential/landing_pad) +"asb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"asc" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreencorner/north, +/area/navalis/indoors/med_sci/chemical_store) +"asd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkpurple2/west, +/area/navalis/indoors/residential/cafeteria) +"ase" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/kitchen) +"asf" = ( +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"asg" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/kitchen) +"ash" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"asi" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = 30 + }, +/obj/item/stack/rods{ + layer = 6 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/chemical_store) +"asj" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"ask" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/starboard_hallway) +"asl" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"asm" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/chemical_store) +"asn" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"aso" = ( +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asq" = ( +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob) +"asr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"ass" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"ast" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asu" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/maintenance_starboard) +"asv" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/starboard_hallway) +"asw" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 6 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"asx" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"asy" = ( +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"asz" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"asA" = ( +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"asB" = ( +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"asC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/chemical_store) +"asD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open/floor/corsat/plate, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"asE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asF" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asG" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asH" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"asI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"asJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"asK" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/break_room) +"asL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"asM" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/maintenance_port) +"asN" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"asO" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/tertiary_comms) +"asP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/vending/cola, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/starboard_hallway) +"asQ" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/meeting_hall) +"asR" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/meeting_hall) +"asS" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/maintenance_port) +"asT" = ( +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/main_floor) +"asU" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/chemical_store) +"asV" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"asW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/navalis/indoors/xeno_growth/residential) +"asX" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"asY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"asZ" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"ata" = ( +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"atb" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"atc" = ( +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/break_room) +"atd" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/break_room) +"ate" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/chemical_store) +"atf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"atg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"ath" = ( +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"ati" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"atj" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"atk" = ( +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"atl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"atm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/accessway) +"atn" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"ato" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"atp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"atq" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"atr" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"ats" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"att" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"atu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"atv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/command/tertiary_comms) +"atw" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/meeting_hall) +"atx" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/meeting_hall) +"aty" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/command/meeting_hall) +"atz" = ( +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/xeno_growth/residential) +"atA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"atB" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"atC" = ( +/obj/effect/decal/hybrisa/road/lines3{ + color = "#5b9068"; + pixel_y = -1 + }, +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"atD" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/port) +"atE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"atF" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"atG" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"atH" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 16; + layer = 3.1 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 1; + layer = 3.2 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/meeting_hall) +"atI" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"atJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"atK" = ( +/turf/open/floor/prison/whitegreencorner, +/area/navalis/indoors/med_sci/main_floor) +"atL" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/main_floor) +"atM" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/meeting_hall) +"atN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"atO" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"atP" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"atQ" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/navalis/indoors/med_sci/break_room) +"atR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"atS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/corridor) +"atT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/chemical_store) +"atU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"atV" = ( +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"atW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"atX" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/port) +"atY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"atZ" = ( +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"aua" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"aub" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/surg_one) +"auc" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/surg_one) +"aud" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/surg_one) +"aue" = ( +/turf/closed/shuttle/elevator{ + dir = 10; + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"auf" = ( +/turf/closed/shuttle/elevator{ + dir = 6; + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"aug" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/surg_two) +"auh" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/surg_two) +"aui" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/surg_two) +"auj" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/corridor) +"auk" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/corridor) +"aul" = ( +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/command/tertiary_comms) +"aum" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"aun" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"auo" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aup" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"aur" = ( +/turf/closed/shuttle/elevator{ + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"aus" = ( +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_y = 16 + }, +/turf/open/hybrisa/street/underground_unweedable, +/area/navalis/indoors/med_sci/main_floor) +"aut" = ( +/turf/closed/shuttle/elevator{ + dir = 1; + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"auu" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auv" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auw" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"aux" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auy" = ( +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/surg_one) +"auz" = ( +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/hybrisa/street/underground_unweedable, +/area/navalis/indoors/med_sci/main_floor) +"auA" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/maintenance_starboard) +"auC" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/security) +"auD" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/server_room) +"auE" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/server_room) +"auF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"auG" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"auH" = ( +/turf/closed/shuttle/elevator{ + dir = 9; + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"auI" = ( +/turf/closed/shuttle/elevator/gears{ + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"auJ" = ( +/turf/closed/shuttle/elevator{ + dir = 5; + explo_proof = 1; + unacidable = 1 + }, +/area/navalis/indoors/med_sci/main_floor) +"auK" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/med_sci/corridor) +"auL" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"auN" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/aft_hallway) +"auO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/aft_hallway) +"auP" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/command/security) +"auQ" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"auR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/accessway) +"auS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"auT" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/port) +"auU" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/maintenance_port) +"auV" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"auW" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"auX" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/starboard_hallway) +"auY" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 4; + name = "synthethic potted plant"; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/tile/beige_bigtile, +/area/navalis/indoors/residential/port) +"auZ" = ( +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/starboard_hallway) +"ava" = ( +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/starboard_hallway) +"avb" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/command/security) +"avc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/command/security) +"avd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/command/server_room) +"ave" = ( +/turf/closed/wall/mineral/bone_resin, +/area/navalis/indoors/xeno_growth/residential) +"avf" = ( +/obj/effect/decal/hybrisa/road/lines2{ + color = "#5b9068"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"avg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"avh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/port) +"avi" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"avj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"avk" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"avl" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + pixel_y = 23; + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"avm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"avn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/starboard_hallway) +"avo" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/starboard_hallway) +"avp" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/security) +"avq" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/security) +"avr" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/server_room) +"avs" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/server_room) +"avt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/server_room) +"avu" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/server_room) +"avv" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/east, +/area/navalis/indoors/residential/accessway) +"avw" = ( +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"avx" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"avy" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"avz" = ( +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"avA" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"avB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/aft_hallway) +"avC" = ( +/turf/open/floor/prison/green, +/area/navalis/indoors/command/starboard_hallway) +"avD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/fireaxe{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/starboard_hallway) +"avE" = ( +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/starboard_hallway) +"avF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/security) +"avG" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/security) +"avH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/navalis/indoors/command/security) +"avI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/command/server_room) +"avJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/south, +/area/navalis/indoors/residential/accessway) +"avK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/east, +/area/navalis/indoors/residential/port) +"avL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/west, +/area/navalis/indoors/residential/port) +"avM" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"avN" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/command/director_office) +"avO" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/director_office) +"avP" = ( +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/port_hallway) +"avQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"avR" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/server_room) +"avS" = ( +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"avT" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/accessway) +"avU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/port) +"avV" = ( +/obj/structure/machinery/power/apc, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/port) +"avW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/port) +"avX" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/north, +/area/navalis/indoors/residential/port) +"avY" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"avZ" = ( +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 4; + pixel_x = 32; + density = 0 + }, +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/port) +"awa" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/maintenance_port) +"awb" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/maintenance_port) +"awc" = ( +/obj/structure/bed/chair/office/dark{ + pixel_y = 1; + pixel_x = 5 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, +/area/navalis/indoors/command/office) +"awd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/aft_hallway) +"awe" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/aft_hallway) +"awf" = ( +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"awg" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/command_kitchen) +"awh" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/command/server_room) +"awi" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/command/server_room) +"awj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"awk" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/accessway) +"awl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/port) +"awm" = ( +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"awn" = ( +/obj/effect/decal/hybrisa/road/lines3{ + color = "#5b9068"; + pixel_y = -1 + }, +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"awo" = ( +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"awp" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/oft_duty_room) +"awq" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/exterior/com_ext) +"awr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 18; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 6 + }, +/obj/structure/prop/hybrisa/misc/elevator_door/right{ + pixel_x = 18 + }, +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/med_sci/main_floor) +"aws" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/port) +"awt" = ( +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/port) +"awu" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"awv" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"aww" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/office) +"awx" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/office) +"awy" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"awz" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/command_kitchen) +"awA" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/oft_duty_room) +"awB" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/oft_duty_room) +"awC" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/oft_duty_room) +"awD" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/oft_duty_room) +"awE" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/accessway) +"awF" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 20; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"awG" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"awH" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"awI" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"awJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"awK" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"awL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/port_hallway) +"awM" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/command_kitchen) +"awN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/command_kitchen) +"awO" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/oft_duty_room) +"awP" = ( +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/residential/port) +"awQ" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/port) +"awR" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"awS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"awT" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"awU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"awV" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/command/office) +"awW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"awX" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"awY" = ( +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/port_hallway) +"awZ" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"axa" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"axb" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"axc" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"axd" = ( +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"axe" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"axf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"axg" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/port) +"axh" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"axi" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"axj" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/conferance) +"axk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/conferance) +"axl" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/office) +"axm" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/oft_duty_room) +"axn" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/accessway) +"axo" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"axp" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 20; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"axq" = ( +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"axr" = ( +/obj/structure/bed/bedroll{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"axs" = ( +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"axt" = ( +/obj/structure/largecrate/supply/supplies/water, +/obj/effect/landmark/objective_landmark/medium, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"axu" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/oft_duty_room) +"axv" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/cent_com) +"axw" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"axx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"axy" = ( +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/aft_hallway) +"axz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"axA" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"axB" = ( +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"axC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"axD" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"axE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"axF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"axG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west{ + icon_state = "hybrisaplatform_broken"; + density = 0 + }, +/obj/structure/platform/metal/hybrisa/metalplatform4{ + icon_state = "hybrisaplatform_broken"; + density = 0 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"axH" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/cent_com) +"axI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"axJ" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/command/office) +"axK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"axL" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"axM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"axN" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/conferance) +"axO" = ( +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/port_hallway) +"axP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"axQ" = ( +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/port_hallway) +"axR" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/command/cent_com) +"axS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"axT" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/office) +"axU" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/cent_com) +"axV" = ( +/turf/open/floor/prison/blue, +/area/navalis/indoors/command/cent_com) +"axW" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"axX" = ( +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/command/cent_com) +"axY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"axZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/command/cent_com) +"aya" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"ayc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayd" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"aye" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayf" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/maintenance_port) +"ayg" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayh" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayi" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/bathroom) +"ayj" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/item/stack/rods{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayl" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"aym" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/maintenance_port) +"ayn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"ayo" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior/com_ext) +"ayp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"ayq" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ayr" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"ays" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/port_hallway) +"ayt" = ( +/obj/structure/largecrate/empty/case/double{ + layer = 2.9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/port_hallway) +"ayu" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/bathroom) +"ayv" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/command/maintenance_port) +"ayw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/port_hallway) +"ayx" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"ayz" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open_space, +/area/navalis/oob/empty_space) +"ayD" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"ayE" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"ayH" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ayI" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ayJ" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"ayK" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"ayL" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ayM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 4; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -14; + pixel_y = -1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ayN" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"ayO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"ayQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"ayT" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ayU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"ayV" = ( +/obj/structure/machinery/light, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_east, +/area/navalis/indoors/industrial/refinery) +"ayW" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_east, +/area/navalis/indoors/industrial/refinery) +"ayX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/prison/cell_stripe/east, +/area/navalis/indoors/industrial/refinery) +"ayY" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ayZ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aza" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "testr"; + dir = 4; + unacidable = 1; + name = "Sector C: External Access"; + explo_proof = 1; + needs_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/navalis/oob/empty_space) +"azc" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 1.1 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"azd" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aze" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7; + pixel_x = 16 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"azf" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"azh" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"azj" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"azk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/power) +"azl" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"azm" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"azn" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"azp" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"azr" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"azs" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"azt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/industrial/accessway) +"azu" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"azv" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"azw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"azx" = ( +/obj/structure/machinery/power/apc, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"azy" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/refinery) +"azA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open_space, +/area/navalis/oob/empty_space) +"azB" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"azC" = ( +/obj/structure/machinery/door_control/navalis_walkway_lockdown{ + id = "testr"; + pixel_x = 30; + pixel_y = 34; + explo_proof = 1; + name = "Sector C: External Access Lockdown"; + use_power = 0; + light_power = 2; + light_color = "#FFEFD2"; + light_on = 1; + light_range = 3; + needs_power = 0 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"azD" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"azE" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/prison/greenblue/northwest, +/area/navalis/indoors/charon/below_deck/front) +"azG" = ( +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/comm_one) +"azH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"azK" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"azN" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"azO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3"; + dir = 8 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 40; + pixel_y = -32 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/foyer) +"azP" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_1/under) +"azQ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"azR" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"azT" = ( +/turf/closed/wall/hybrisa/research, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"azU" = ( +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/command/office) +"azV" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"azW" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"azX" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open_space, +/area/navalis/oob) +"azY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"azZ" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/trash, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 2.5; + name = "synthethic potted plant"; + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"aAb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate3, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAd" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 1.1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aAe" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"aAg" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/outdoors/exterior/com_ext) +"aAh" = ( +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aAi" = ( +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/med_sci/upper_level/morgue) +"aAj" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"aAk" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/monorail{ + dir = 4; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 1.2; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aAl" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"aAm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 4; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 1.2; + explo_proof = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAn" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/monorail{ + dir = 4; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 1.2; + explo_proof = 1 + }, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aAo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"aAp" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/indoors/landing_zone_2) +"aAq" = ( +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAr" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"aAs" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAt" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"aAu" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aAv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7; + pixel_x = 16 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aAw" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAx" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aAy" = ( +/obj/structure/window/framed/hybrisa/research/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"aAz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"aAA" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aAB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAC" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 5 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aAD" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"aAE" = ( +/turf/open_space, +/area/navalis/outdoors/landing_zone_2/under) +"aAF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"aAG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aAH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"aAI" = ( +/turf/closed/wall/mineral/bone_resin, +/area/navalis/indoors/residential/cafeteria) +"aAJ" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/landing_zone_2) +"aAL" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aAM" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior/med_ext) +"aAN" = ( +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/oob) +"aAO" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"aAP" = ( +/obj/effect/sentry_landmark/lz_2/top_left, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"aAQ" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"aAS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aAT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aAU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/oob/empty_space) +"aAV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"aAW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"aAY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aAZ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -9; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aBa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aBb" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aBd" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aBf" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"aBg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aBh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aBi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/item/lightstick/planted{ + pixel_y = 13 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"aBj" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/structure/tunnel, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"aBk" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aBl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aBn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aBo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aBp" = ( +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"aBq" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aBr" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aBt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aBu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 4; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 1.2; + explo_proof = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aBx" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/monorail{ + dir = 4; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 1.2; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aBy" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aBB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aBC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBD" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBF" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"aBG" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aBI" = ( +/obj/item/clothing/shoes/blue{ + pixel_y = 7; + pixel_x = -4 + }, +/obj/item/clothing/shoes/black{ + pixel_x = -3; + pixel_y = -5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"aBJ" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"aBK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aBL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"aBM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aBO" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBP" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/lower_level/port) +"aBS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aBT" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open_space, +/area/navalis/oob/empty_space) +"aBU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"aBV" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aBW" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/starboard) +"aBY" = ( +/obj/effect/sentry_landmark/lz_1/bottom_right, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"aBZ" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + locked = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/maintenance_starboard) +"aCa" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"aCb" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"aCc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/reagent_dispensers/watertank{ + layer = 2.9 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"aCd" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/corsat/plate, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"aCe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/starboard_hallway) +"aCf" = ( +/obj/structure/tunnel, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/residential/landing_pad) +"aCg" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/wood{ + pixel_y = 7; + pixel_x = 5 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"aCh" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18; + layer = 4.2 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aCi" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/starboard_hallway) +"aCj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"aCk" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"aCl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"aCm" = ( +/obj/effect/sentry_landmark/lz_1/top_left, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"aCn" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aCo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/aft_hallway) +"aCp" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aCq" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aCr" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aCs" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aCt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 12; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/aft_hallway) +"aCu" = ( +/obj/structure/tunnel, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aCv" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aCw" = ( +/obj/effect/alien/resin/sticky, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"aCx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aCy" = ( +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/bed/chair{ + dir = 4; + layer = 2.7 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"aCz" = ( +/obj/item/stack/sheet/wood{ + pixel_x = -10; + pixel_y = -4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"aCA" = ( +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/bed/chair{ + dir = 4; + layer = 2.7 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/aft_hallway) +"aCB" = ( +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/starboard_hallway) +"aCC" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/largecrate/empty/case/double{ + layer = 2.9 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_y = 32 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/aft_hallway) +"aCD" = ( +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/port_hallway) +"aCE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"aCF" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 23; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/port_hallway) +"aCG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aCH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/bedroll{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/conferance) +"aCI" = ( +/obj/item/trash/tray, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"aCJ" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/item/trash/hotdog{ + pixel_y = -10; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"aCK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aCL" = ( +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aCM" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aCN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"aCO" = ( +/obj/structure/bed/chair/comfy/hybrisa/blue{ + pixel_y = -1 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"aCP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aCQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"aCR" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/item/trash/sosjerky{ + pixel_x = 8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"aCS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aCT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 1.1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aCU" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aCV" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 23; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"aCW" = ( +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/port_hallway) +"aCX" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 12; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/bed/chair/wood/normal{ + layer = 4 + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/port_hallway) +"aCY" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"aCZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"aDa" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 12; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/bed/chair/office/dark{ + pixel_y = 5; + pixel_x = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/port_hallway) +"aDb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aDc" = ( +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 12; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/port_hallway) +"aDd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aDe" = ( +/obj/structure/largecrate/empty{ + layer = 2.9 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/port_hallway) +"aDf" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 1; + pixel_y = 1 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"aDg" = ( +/obj/structure/largecrate/random/case, +/obj/item/clothing/head/hardhat/white{ + pixel_y = -1; + pixel_x = -1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aDh" = ( +/obj/item/tool/warning_cone{ + pixel_x = -18; + pixel_y = -2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aDi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aDj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aDk" = ( +/obj/item/device/flashlight, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aDl" = ( +/obj/item/tool/weldingtool/largetank{ + pixel_x = 7; + pixel_y = 13 + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aDm" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"aDn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aDo" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aDp" = ( +/obj/structure/closet/crate/radiation, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aDq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aDr" = ( +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aDs" = ( +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aDt" = ( +/obj/item/storage/belt/utility/full{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aDu" = ( +/obj/item/tool/hatchet{ + pixel_x = 6; + pixel_y = -6 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"aDv" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aDw" = ( +/obj/item/device/analyzer{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aDy" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aDz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aDB" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob) +"aDC" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aDD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"aDE" = ( +/obj/structure/platform/metal/strata/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"aDF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aDG" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aDH" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/book/manual/chef_recipes, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"aDI" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/suit/chef, +/obj/item/clothing/suit/chef/classic, +/obj/item/clothing/head/chefhat, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"aDJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"aDL" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"aDM" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aDN" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aDO" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aDP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aDQ" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aDR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"aDS" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"aDU" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 18 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"aDV" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aDW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"aDX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/port_hallway) +"aDY" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/northeast, +/area/navalis/indoors/logistic/primary_storage) +"aEa" = ( +/obj/structure/machinery/camera/autoname/lz_camera, +/turf/open/floor/plating, +/area/navalis/outdoors/landing_zone_2) +"aEb" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3, +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aEc" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/Port_hallway) +"aEd" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aEe" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"aEf" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"aEg" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/primary_storage) +"aEh" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"aEi" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/logistic/Port_hallway) +"aEj" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/Port_hallway) +"aEk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aEn" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aEo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/storage) +"aEp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aEr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEt" = ( +/obj/structure/bed/chair, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"aEv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"aEx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/main_floor) +"aEy" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/main_floor) +"aEz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"aEB" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"aEC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/pharmacy) +"aED" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/pharmacy) +"aEE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/pharmacy) +"aEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aEG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/mech_bay) +"aEI" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"aEJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aEK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"aEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"aEO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/mech_bay) +"aEP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"aEQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aER" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/navalis/outdoors/landing_zone_2) +"aES" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"aET" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aEU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"aEV" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aEW" = ( +/obj/effect/decal/hybrisa/road/lines2{ + color = "#5b9068"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aEX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"aEY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"aEZ" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"aFa" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aFb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"aFc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aFd" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/oob/empty_space) +"aFe" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/conduit) +"aFg" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aFi" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"aFj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/main_floor) +"aFk" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aFl" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aFn" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aFo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"aFp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aFq" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"aFr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aFs" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/starboard) +"aFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aFu" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"aFv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"aFw" = ( +/obj/structure/surface/table/almayer, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_half_br"; + pixel_x = 7; + pixel_y = 2 + }, +/obj/item/trash/cigbutt/cigarbutt{ + pixel_x = 12; + pixel_y = 14 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 13; + pixel_x = -7 + }, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"aFx" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"aFy" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aFA" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aFB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aFC" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3"; + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"aFD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/foyer) +"aFE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aFF" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aFG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"aFH" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/logistic/Port_hallway) +"aFI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aFJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aFK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aFL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aFM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"aFO" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aFQ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"aFR" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"aFS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aFU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"aFV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"aFW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"aFX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/starboard) +"aFY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"aFZ" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"aGa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"aGb" = ( +/obj/structure/machinery/light/small, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"aGc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"aGd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2, +/area/navalis/indoors/residential/starboard) +"aGe" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aGf" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/kitchen) +"aGg" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/paper{ + pixel_x = 11; + pixel_y = 13 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"aGh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aGj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7; + pixel_x = 16 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11; + pixel_x = 16 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aGk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aGl" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"aGm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/navalis/indoors/residential/starboard) +"aGn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/accessway) +"aGo" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/accessway) +"aGp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aGq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aGr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aGs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aGt" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aGu" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"aGv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aGy" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aGz" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"aGC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkgreen2/east, +/area/navalis/indoors/residential/accessway) +"aGD" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/kitchen) +"aGE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"aGF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"aGG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aGH" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + unacidable = 1; + id = "dig_lockdown"; + name = "Sector D: External Access"; + explo_proof = 1 + }, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/industrial/mining) +"aGI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aGJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aGK" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + unacidable = 1; + id = "dig_lockdown"; + name = "Sector D: External Access"; + dir = 8; + explo_proof = 1 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/industrial/mining) +"aGL" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/warning_cone{ + pixel_x = -6; + pixel_y = 11 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aGM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aGN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aGO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aGP" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aGQ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"aGR" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"aGU" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aGV" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aGW" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/structure/machinery/door_control/navalis_digsite_nw_lockdown{ + id = "dig_lockdown"; + explo_proof = 1; + name = "Sector D: External Access Lockdown"; + light_color = "#FFEFD2"; + light_on = 1; + light_power = 2; + light_range = 3; + use_power = 0; + pixel_y = 28; + needs_power = 0 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aGX" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + unacidable = 1; + id = "dig_lockdown"; + name = "Sector D: External Access"; + explo_proof = 1 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/industrial/mining) +"aGY" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"aGZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aHa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aHb" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/wrapping_paper, +/obj/item/clothing/head/chefhat{ + pixel_x = -2; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"aHe" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aHf" = ( +/obj/structure/lz_sign/hybrisa_sign/medical{ + name = "Navalis Platform 13 - Emergency Medical Landing Zone one sign"; + desc = "A large sign that reads 'Emergency Medical - LZ - 01'." + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"aHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"aHh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"aHi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aHj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/resin_prop{ + icon_state = "closed_oxygen" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"aHk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/resin_prop{ + icon_state = "case" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"aHl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aHm" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"aHn" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aHo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"aHp" = ( +/obj/effect/spawner/random/pills/lowchance, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aHq" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aHr" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/bloodtrail, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"aHs" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"aHt" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"aHu" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aHv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"aHw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkgreen2/northeast, +/area/navalis/indoors/residential/accessway) +"aHx" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/starboard) +"aHy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"aHz" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"aHA" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open_space, +/area/navalis/oob/empty_space) +"aHC" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aHD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"aHE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aHF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"aHG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aHH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aHI" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/break_room) +"aHJ" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aHK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/chemical_store) +"aHL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/item/clothing/head/welding{ + pixel_x = 7; + pixel_y = -7 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aHM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aHN" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/tertiary_comms) +"aHO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"aHP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aHQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aHR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"aHS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"aHT" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/starboard_hallway) +"aHU" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"aHV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/meeting_hall) +"aHW" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/meeting_hall) +"aHX" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/meeting_hall) +"aHY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/port) +"aHZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"aIa" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"aIb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/main_floor) +"aIc" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aId" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/starboard_hallway) +"aIe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aIf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/tertiary_comms) +"aIg" = ( +/obj/structure/cargo_container/hybrisa/containersextended/redright{ + layer = 4.2 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"aIh" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2/east, +/area/navalis/indoors/residential/accessway) +"aIi" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"aIj" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"aIk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aIl" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/accessway) +"aIm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/north, +/area/navalis/indoors/residential/accessway) +"aIn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"aIo" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/security) +"aIp" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/red/east, +/area/navalis/indoors/command/security) +"aIq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/server_room) +"aIr" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"aIs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"aIt" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"aIu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aIv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aIw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"aIx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aIy" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/navalis/indoors/residential/port) +"aIz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/aft_hallway) +"aIA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"aIB" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aIC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aID" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"aIE" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"aIG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"aIH" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"aII" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"aIJ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/server_room) +"aIK" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/port) +"aIL" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aIM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"aIN" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"aIO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"aIP" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aIQ" = ( +/obj/structure/flora/pottedplant{ + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aIR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aIS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aIT" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/command_kitchen) +"aIU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/oft_duty_room) +"aIV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aIW" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aIX" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aIY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"aIZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"aJc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"aJd" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"aJe" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"aJf" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/bed/chair/comfy/hybrisa/blue{ + dir = 4; + pixel_x = 9 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"aJg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJi" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/chunk, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/cent_com) +"aJl" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"aJm" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"aJn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"aJo" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJp" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"aJq" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"aJr" = ( +/obj/effect/landmark/objective_landmark/science, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aJs" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/refinery) +"aJt" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/refinery) +"aJu" = ( +/obj/structure/pipes/vents/pump, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"aJv" = ( +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"aJw" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"aJx" = ( +/turf/open/floor/prison/greenblue/north, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"aJy" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aJz" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aJA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aJB" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aJC" = ( +/obj/structure/largecrate/random, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"aJD" = ( +/obj/effect/landmark/objective_landmark/close, +/obj/structure/closet/crate/construction, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aJE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"aJF" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aJG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aJH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aJI" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aJJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/darkgreen2/west, +/area/navalis/indoors/residential/accessway) +"aJK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aJL" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 13 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/meeting_hall) +"aJM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/accessway) +"aJN" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"aJO" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/darkbrown2/north, +/area/navalis/indoors/residential/port) +"aJP" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aJQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aJR" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aJS" = ( +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenblue/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"aJT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"aJU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"aJV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aJW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aJX" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"aJY" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/accessway) +"aKa" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"aKb" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aKc" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aKd" = ( +/turf/open/floor/corsat, +/area/navalis/outdoors/exterior/log_ext) +"aKe" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aKf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aKg" = ( +/turf/open/floor/corsat, +/area/navalis/outdoors/exterior/med_ext) +"aKh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"aKi" = ( +/turf/closed/wall/hybrisa/research/reinforced, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"aKj" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aKk" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 10; + pixel_y = 21 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aKm" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aKn" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkgreen2/east, +/area/navalis/indoors/residential/accessway) +"aKo" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aKp" = ( +/turf/open/floor/corsat, +/area/navalis/outdoors/exterior/com_ext) +"aKq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aKr" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aKs" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aKt" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkgreen2/west, +/area/navalis/indoors/residential/accessway) +"aKu" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/indoors/industrial/mining) +"aKv" = ( +/turf/closed/wall/hybrisa/research/reinforced, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"aKw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aKx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aKy" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkblue2/west, +/area/navalis/indoors/residential/accessway) +"aKz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/accessway) +"aKA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aKB" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aKC" = ( +/obj/item/prop/alien/hugger, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"aKD" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/port) +"aKE" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"aKF" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"aKG" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 4; + pixel_y = -9 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"aKH" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aKJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aKL" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/red/north, +/area/navalis/indoors/industrial/refinery) +"aKM" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/industrial/refinery) +"aKN" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/accessway) +"aKO" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/refinery) +"aKP" = ( +/obj/item/storage/toolbox/electrical{ + pixel_y = -6 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"aKQ" = ( +/obj/item/tool/crowbar, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/refinery) +"aKR" = ( +/obj/item/storage/toolbox/mechanical/green{ + pixel_x = -11; + pixel_y = 9 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"aKS" = ( +/obj/item/clothing/head/hardhat{ + pixel_x = 7 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/accessway) +"aKT" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/prison/rampbottom/east, +/area/navalis/outdoors/comm_one) +"aKU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aKV" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"aKW" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"aKX" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/navalis/oob/empty_space) +"aKY" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aLa" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open_space, +/area/navalis/outdoors/landing_zone_2) +"aLc" = ( +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"aLe" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"aLf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/sidewalkcenter/west, +/area/navalis/indoors/med_sci/lower_level/delivery) +"aLg" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/chemical_store) +"aLi" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/oob/powered) +"aLj" = ( +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aLk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aLl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/records) +"aLm" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/rear) +"aLp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aLq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_y = -1 + }, +/turf/open/floor/corsat/blue/east, +/area/navalis/indoors/charon/below_deck/middle) +"aLr" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aLs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"aLu" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/indoors/charon/below_deck/front) +"aLv" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/lower_deck/maint) +"aLx" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = 14 + }, +/turf/closed/wall/strata_outpost/reinforced/hull{ + name = "PSV Charon" + }, +/area/navalis/oob) +"aLy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/rear) +"aLz" = ( +/obj/structure/prop/ice_colony/soil_net/navalis_indestructible{ + layer = 2 + }, +/obj/item/lightstick/red/planted{ + pixel_y = -10; + pixel_x = -14; + layer = 4.11 + }, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"aLA" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/black{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"aLB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aLD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/platform/metal/almayer/north, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/structure/lattice, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"aLH" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/platform_decoration/metal/almayer/southeast, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"aLK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/indoors/charon/below_deck/front) +"aLL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aLM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"aLN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aLR" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble10{ + dir = 8; + pixel_x = -32; + layer = 4.2 + }, +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/rear) +"aLU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aLW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"aLX" = ( +/obj/structure/platform/metal/almayer/east, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aMb" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"aMc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"aMd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"aMe" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/med_ext/upper) +"aMf" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aMg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/airport/refuelinghose{ + layer = 1; + pixel_x = -18; + pixel_y = -44 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aMj" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/obj/structure/prop/invuln/pipe_water, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aMk" = ( +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = 16; + pixel_y = -27 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aMn" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"aMp" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aMr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = 10 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aMt" = ( +/obj/structure/prop/turbine, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"aMu" = ( +/turf/open/floor/corsat/arrow_north, +/area/navalis/indoors/charon/below_deck/rear) +"aMv" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"aMw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"aMx" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/middle) +"aMA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"aMB" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aMC" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/middle) +"aMF" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aMG" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble2{ + light_color = "#00ff9f"; + light_on = 1; + light_power = 2; + light_range = 3; + pixel_y = 24; + pixel_x = 1; + density = 0 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aMH" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"aMI" = ( +/turf/open/floor/corsat/red/east, +/area/navalis/indoors/industrial/refinery) +"aML" = ( +/obj/vehicle/train/cargo/trolley, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aMM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = 30 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aMQ" = ( +/turf/open/floor/almayer_hull, +/area/navalis/oob/empty_space) +"aMW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open_space, +/area/navalis/oob/empty_space) +"aNa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"aNd" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aNe" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"aNf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/charon/below_deck/front) +"aNj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/rear) +"aNk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/front) +"aNl" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"aNm" = ( +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aNn" = ( +/obj/structure/prop/hybrisa/airport/refuelinghose2{ + layer = 1; + pixel_x = -18; + pixel_y = -12 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aNq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/middle) +"aNu" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_y = -7 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"aNv" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/item/stack/sheet/wood{ + pixel_x = -10; + pixel_y = -4 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"aNz" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = 30 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"aNE" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"aNF" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"aNG" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"aNH" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"aNI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/starboard_hallway) +"aNJ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"aNK" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aNL" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aNN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"aNO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"aNP" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"aNQ" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/command/aft_hallway) +"aNR" = ( +/obj/structure/platform/metal/strata, +/turf/closed/wall/hybrisa/colony/office/reinforced/hull, +/area/navalis/oob) +"aNS" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + alpha = 220; + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aNU" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aNV" = ( +/obj/item/trash/cigbutt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aNW" = ( +/obj/item/trash/cheesie, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aNX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/bed/bedroll, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aNY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/item/trash/candle, +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aNZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/bed/bedroll, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aOa" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"aOb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/ceramic_plate, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aOc" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aOd" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/crushed_cup, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aOe" = ( +/obj/item/trash/candle, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"aOf" = ( +/obj/effect/spawner/random/gun/special/highchance, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aOg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aOh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/spawner/random/gun/pistol/highchance, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aOi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aOj" = ( +/obj/structure/prop/resin_prop{ + icon_state = "psiphon:0" + }, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"aOk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aOl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -28 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"aOm" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aOn" = ( +/obj/structure/prop/resin_prop{ + icon_state = "secure_crate_strapped" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aOo" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aOp" = ( +/mob/living/simple_animal/cat{ + name = "Holly" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"aOq" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aOr" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aOs" = ( +/obj/structure/cargo_container/canc/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aOt" = ( +/obj/structure/cargo_container/canc/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aOu" = ( +/obj/structure/cargo_container/canc/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aOv" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"aOw" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aOx" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aOy" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = -13; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"aOz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/industrial/refinery) +"aOA" = ( +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"aOB" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"aOC" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open_space, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"aOD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"aOE" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"aOF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/industrial/mining) +"aOG" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/arrow_north, +/area/navalis/indoors/industrial/mining) +"aOH" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOI" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"aOJ" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aOK" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"aOL" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOM" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aON" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aOO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 5 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOQ" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOR" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aOS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aOT" = ( +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aOU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 9 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aOY" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"aOZ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"aPa" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aPb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPd" = ( +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/mining) +"aPe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aPf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aPg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aPh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPj" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/mining) +"aPk" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 5 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPl" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPm" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/primary_storage) +"aPn" = ( +/obj/structure/pipes/standard/manifold/fourway/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPo" = ( +/obj/effect/landmark/monkey_spawn, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPq" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPr" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPs" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aPt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aPu" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aPw" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aPx" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/mining) +"aPy" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 5 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPz" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPA" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 10 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aPC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aPD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPE" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPG" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPI" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPK" = ( +/obj/item/stack/tile/plasteel{ + pixel_x = 9 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"aPL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aPM" = ( +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aPN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPO" = ( +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/mining) +"aPP" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPQ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 10 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPR" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 6 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aPS" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 10 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aPT" = ( +/turf/open/floor/plating, +/area/navalis/indoors/industrial/mining) +"aPU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"aPW" = ( +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aPY" = ( +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aPZ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/chemical_store) +"aQa" = ( +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/logistic/Port_hallway) +"aQb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/chemical_store) +"aQc" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aQd" = ( +/obj/structure/pipes/standard/manifold/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aQe" = ( +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQf" = ( +/obj/structure/prop/resin_prop{ + icon_state = "closed_oxygen" + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"aQh" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_2/under) +"aQi" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 6 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aQk" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = -32 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/starboard_hallway) +"aQl" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/starboard_hallway) +"aQm" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"aQn" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aQo" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQp" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQq" = ( +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"aQr" = ( +/obj/structure/sign/safety/stairs{ + pixel_x = 32 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aQs" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 6 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQt" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQu" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQv" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 6 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQw" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aQx" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/aft_hallway) +"aQy" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"aQz" = ( +/obj/structure/sign/safety/bridge{ + pixel_x = 32; + pixel_y = -8 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 32; + pixel_y = 8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"aQA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/port_hallway) +"aQB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/sign/safety/bulkhead_door{ + pixel_x = 32 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/port_hallway) +"aQC" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQD" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aQF" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"aQH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/powercell{ + pixel_x = 6; + pixel_y = -5 + }, +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQI" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aQK" = ( +/obj/structure/surface/rack, +/obj/item/storage/toolkit/empty, +/obj/item/storage/toolkit/empty, +/obj/item/storage/toolkit/empty, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aQL" = ( +/obj/structure/closet, +/obj/item/clothing/accessory/storage/black_vest/brown_vest, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aQM" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQN" = ( +/obj/structure/surface/rack, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"aQO" = ( +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQP" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aQQ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"aQR" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"aQS" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"aQT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -25; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"aQU" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/refinery) +"aQV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate3, +/turf/open_space, +/area/navalis/oob/empty_space) +"aQW" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/darkbrowncorners2/east, +/area/navalis/indoors/logistic/primary_storage) +"aQX" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/corsat/brown/northeast, +/area/navalis/indoors/industrial/mining) +"aQY" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/corsat/brown/northwest, +/area/navalis/indoors/industrial/mining) +"aQZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = -32 + }, +/obj/structure/bed/roller/hospital_empty/bigrollerempty{ + icon_state = "bigrollerempty_up" + }, +/obj/item/cpr_dummy, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"aRa" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aRb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"aRc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"aRd" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/science_lower_entrance) +"aRe" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"aRf" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"aRg" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"aRh" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/corsat/brown/southeast, +/area/navalis/indoors/industrial/mining) +"aRi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"aRj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aRk" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"aRl" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"aRm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/starboard) +"aRn" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"aRo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"aRp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aRq" = ( +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/plating/platingdmg3, +/area/navalis/indoors/med_sci/chemical_store) +"aRr" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"aRs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/port) +"aRt" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"aRu" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"aRv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open_space, +/area/navalis/oob) +"aRw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreencorner/west, +/area/navalis/indoors/med_sci/main_floor) +"aRx" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"aRy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"aRz" = ( +/obj/structure/bed/hybrisa/dingy, +/obj/item/bedsheet/colorable, +/obj/effect/landmark/survivor_spawner, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"aRA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"aRB" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/obj/item/tool/pen/blue/clicky, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"aRC" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/maintenance_starboard) +"aRD" = ( +/turf/open_space, +/area/navalis/oob) +"aRE" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aRF" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = -14; + pixel_y = -3 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"aRG" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/kutjevo_smooth/west{ + layer = 3.1; + pixel_x = 4; + pixel_y = 9; + name = "crate of dirt" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"aRH" = ( +/obj/structure/platform/metal/kutjevo/north{ + pixel_y = 9; + name = "crate of dirt"; + desc = "A crate of dirt" + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 7; + name = "broken attachment cable"; + color = "#353935"; + pixel_x = 17 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"aRI" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east{ + pixel_y = 9; + pixel_x = -4; + layer = 3.1; + name = "crate of dirt" + }, +/obj/structure/prop/hybrisa/misc/fire{ + icon_state = "zfire_smoke2"; + pixel_x = -27; + pixel_y = -1; + layer = 6.1 + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = 9 + }, +/obj/item/prop{ + desc = "A destroyed cargo tug, looks like it was dragging a crate of dirt."; + icon = 'icons/obj/vehicles/vehicles.dmi'; + icon_state = "cargo_engine"; + name = "cargo tug"; + pixel_x = -1; + pixel_y = 2; + layer = 2.8; + dir = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aRJ" = ( +/obj/structure/platform/metal/kutjevo/east{ + pixel_x = 5; + name = "crate of dirt"; + desc = "A crate of dirt" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"aRK" = ( +/turf/open/auto_turf/sand/layer0, +/area/navalis/outdoors/landing_zone_2) +"aRL" = ( +/obj/structure/platform/metal/kutjevo/west{ + pixel_x = -5; + name = "crate of dirt"; + desc = "A crate of dirt" + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aRM" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"aRN" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth{ + layer = 3.1; + pixel_y = -5; + pixel_x = 5; + name = "crate of dirt" + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aRO" = ( +/obj/structure/platform/metal/kutjevo{ + pixel_y = -5; + name = "crate of dirt"; + desc = "A crate of dirt" + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aRP" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north{ + layer = 3.1; + pixel_x = -5; + pixel_y = -5; + name = "crate of dirt" + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aRQ" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aRR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"aRS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"aRT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aRU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aRV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/obj/effect/landmark/crap_item, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"aRW" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"aRX" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/xeno_growth) +"aRY" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/residential/starboard) +"aRZ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"aSa" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"aSb" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"aSc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/prison/floor_plate, +/area/navalis/outdoors/landing_zone_1) +"aSd" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"aSe" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"aSf" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"aSg" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aSh" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aSi" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"aSj" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/residential/port) +"aSk" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aSl" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced/hull, +/area/navalis/oob) +"aSm" = ( +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"aSn" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"aSo" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"aSp" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aSq" = ( +/obj/item/fuel_cell, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"aSr" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aSs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/item/fuel_cell, +/obj/item/fuel_cell, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aSt" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aSu" = ( +/obj/item/fuel_cell, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"aSv" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aSw" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aSx" = ( +/obj/structure/pipes/vents/pump, +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"aSy" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"aSz" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"aSA" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aSB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"aSC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"aSD" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aSE" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aSF" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aSG" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aSH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/monorail{ + dir = 4; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 1.2; + explo_proof = 1 + }, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aSI" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"aSJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aSK" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"aSL" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"aSM" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"aSN" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"aSO" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal"; + layer = 3 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal"; + layer = 3 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal"; + layer = 3 + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 11; + name = "Creature Hazard Warning"; + desc = "A warning that aquatic creatures have climbed on to this platform via the lattice support." + }, +/obj/structure/sign/safety/north{ + pixel_x = 7; + pixel_y = 26 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"aSP" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/oob/empty_space) +"aST" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aSU" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/visible/purple, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aSV" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 6 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aSX" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"aSZ" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTa" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/oob/water/far) +"aTb" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTc" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTd" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTe" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTf" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTg" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTh" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/outdoors/landing_zone_2) +"aTi" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTj" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTk" = ( +/obj/structure/machinery/landinglight/ds2, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTl" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"aTn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"aTo" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"aTp" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/outdoors/landing_zone_2) +"aTq" = ( +/obj/structure/lz_sign/hybrisa_sign/mining{ + name = "Navalis Platform 13 - Landing Zone two sign"; + desc = "A large sign that reads Navalis Platform 13 - Cargo Landing Pad Two"; + layer = 4 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aTr" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTs" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTt" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTu" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTv" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTw" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTx" = ( +/obj/structure/machinery/landinglight/ds1/delaythree{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTy" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTz" = ( +/obj/structure/machinery/landinglight/ds1{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTA" = ( +/obj/structure/machinery/landinglight/ds1/delaythree, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTB" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTC" = ( +/obj/structure/machinery/landinglight/ds1/delayone, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTD" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/port) +"aTE" = ( +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"aTF" = ( +/obj/effect/alien/resin/sticky, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"aTG" = ( +/obj/item/stack/sheet/plasteel/large_stack, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"aTH" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 6; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 6 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"aTJ" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = 6; + pixel_y = -24 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"aTK" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -6; + pixel_y = -24 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"aTL" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/port) +"aTM" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_y = 32; + pixel_x = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"aTN" = ( +/obj/structure/machinery/power/reactor/colony, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + pixel_x = -6; + pixel_y = 32 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"aTO" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"aTP" = ( +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"aTQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/north, +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"aTR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/obj/structure/machinery/colony_floodlight/navalis_wall_light, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"aTT" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/oob) +"aTU" = ( +/obj/effect/spawner/random/gun/shotgun/lowchance, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"aTX" = ( +/obj/structure/prop/hybrisa/misc/floorprops/floorglass3, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/outdoors/exterior/com_ext/upper) +"aTY" = ( +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"aUl" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_y = 6 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/starboard) +"aUq" = ( +/obj/structure/platform/metal/strata, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"aUt" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/cryoxadone{ + pixel_y = -2; + pixel_x = -2 + }, +/obj/item/reagent_container/glass/beaker/cryopredmix{ + pixel_x = 6; + pixel_y = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/pharmacy) +"aUA" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/south, +/area/navalis/indoors/residential/cafeteria) +"aVz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"aVQ" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/indoors/industrial/power) +"aWm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aWs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/maintenance_port) +"aWt" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"aWu" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"aWx" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + layer = 2.7 + }, +/obj/effect/landmark/survivor_spawner, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison, +/area/navalis/indoors/command/security) +"aWB" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/maintenance_starboard) +"aXg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"aXm" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/largecrate/supply/generator{ + layer = 4.2; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"aXq" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"aXw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"aXD" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/port) +"aXP" = ( +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob/powered) +"aYj" = ( +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/corsat, +/area/navalis/outdoors/exterior/com_ext) +"aYk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/entrance) +"aYq" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/paper{ + pixel_y = 1 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"aYx" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/workshop) +"aYJ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/indoors/logistic/primary_storage) +"aYN" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"aYS" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"aYX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/corsat/marked, +/area/navalis/outdoors/exterior/med_ext/lower) +"aZf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 18 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"aZk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"aZm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"aZC" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"aZF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"aZH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/empty, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/workshop) +"aZK" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"aZP" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/corridor) +"baK" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/flight) +"baZ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy22" + }, +/area/navalis/oob/water) +"bbj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/med_sci/upper_level/sec) +"bbz" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"bbX" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"bck" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"bcr" = ( +/obj/structure/platform_decoration/metal/almayer, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"bcK" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + density = 0; + name = "pole signal" + }, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"bcR" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/prop/resin_prop{ + icon_state = "barrel_yellow" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob/powered) +"bdL" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/indoors/industrial/power) +"bej" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/med_sci/lower_level/port) +"bek" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/lower_level/records) +"beq" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"bey" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11; + layer = 4 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = 30 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/item/tool/surgery/scalpel{ + pixel_x = -15; + pixel_y = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/surg_two) +"bfl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/aft_hallway) +"bfp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/item/stack/rods{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"bfr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"bfu" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/lower) +"bfD" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy23" + }, +/area/navalis/oob/powered) +"bfL" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"bgb" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"bgt" = ( +/obj/structure/machinery/big_computers/messaging_server/brown, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"bgx" = ( +/obj/effect/decal/remains/robot{ + pixel_y = 9; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 15; + pixel_x = 3 + }, +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/navalis/outdoors/landing_zone_1) +"bgW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"bhs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"bhD" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 10 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"bic" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/navalis/indoors/residential/port) +"bii" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/starboard) +"bix" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/outdoors/landing_zone_2/under) +"biX" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/glass/bucket/janibucket, +/turf/open/floor/almayer/blackcorner/west, +/area/navalis/indoors/command/upper_deck/jani) +"bjf" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/upper_deck/starboard) +"bjh" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext) +"bjk" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"bjl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/logistic/lower_deck/fore) +"bjo" = ( +/obj/item/tank/anesthetic{ + pixel_x = -9; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/surg_two) +"bjU" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"bjV" = ( +/obj/structure/machinery/power/monitor{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"bkp" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/outdoors/exterior/log_ext/upper) +"bkz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"bld" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical_solid/autoname{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/morgue) +"ble" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_y = -10; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"blh" = ( +/obj/structure/cargo_container/hybrisa/containersextended/redleft, +/turf/open/floor/corsat/darkgreen/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"blI" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"blN" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/tile/green_bigtile/west, +/area/navalis/indoors/residential/cafeteria) +"blW" = ( +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketempty{ + density = 0 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"bmd" = ( +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/charon/below_deck/front) +"bme" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/cent_com) +"bmn" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"bms" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"bmF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"bmW" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"bnd" = ( +/obj/structure/machinery/xenoanalyzer, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"bnW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/east, +/area/navalis/indoors/med_sci/lower_level/port) +"box" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southwest, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"boA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/barcardine, +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/med_sci/lower_level/port) +"boW" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"bpe" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/box, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"bpA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"bpI" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"bpW" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/paper/research_notes/good, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"bpY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/command/lower_deck/port) +"bqq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/indoors/charon/below_deck/front) +"bqr" = ( +/obj/item/prop/colony/canister{ + pixel_x = 4; + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"bqw" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/road_edge{ + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"bqx" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/prop/hybrisa/misc/fire{ + icon_state = "zfire_smoke2"; + pixel_x = -36; + pixel_y = -9; + layer = 6.1 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"bqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/poster/safety{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/command/lower_deck/port) +"bqU" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 28 + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/starboard) +"bra" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"bri" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = 15; + pixel_x = 8; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 2; + pixel_y = -14; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"brj" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/clothing/head/soft/purple, +/turf/open/floor/almayer/black2, +/area/navalis/indoors/command/upper_deck/jani) +"brp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"bry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -7; + pixel_y = 19 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/upper_level/entrance) +"brA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"brE" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating/platingdmg1, +/area/navalis/indoors/logistic/lower_deck/port) +"brQ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 12 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = -13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = 19 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"bsj" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/obj/structure/platform/metal/almayer/north, +/obj/structure/prop/hybrisa/fakeplatforms/platform3{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/northeast, +/obj/structure/platform_decoration/metal/almayer/southwest, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"bsv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/office) +"bsy" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"bsG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"bsY" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"btl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"btr" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = -22; + pixel_y = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12; + layer = 7 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis/dig, +/area/navalis/oob/powered) +"btR" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"bub" = ( +/obj/item/tool/warning_cone{ + pixel_x = 4; + pixel_y = 18; + layer = 4.2 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"buC" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_2/under) +"buK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"buZ" = ( +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-y" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-4-8" + }, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/oft_duty_room) +"bvw" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/west, +/area/navalis/indoors/residential/starboard) +"bvx" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/arrow_south, +/area/navalis/indoors/industrial/mining) +"bvE" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"bvM" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = -32 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 32 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"bvN" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"bvQ" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"bvZ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"bwo" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/corridor) +"bwp" = ( +/obj/structure/closet/emcloset, +/obj/structure/machinery/light, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/aft_hallway) +"bwt" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/item/prop/almayer/box, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"bwB" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"bwG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"bxd" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble9{ + pixel_x = -1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/plate, +/area/navalis/oob/empty_space) +"bxj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"bxK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"bxT" = ( +/obj/structure/cargo_container/horizontal/blue/bottom, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"byk" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"byt" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"byw" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"byE" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname{ + locked = 1; + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"byS" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, +/area/navalis/indoors/command/office) +"byZ" = ( +/turf/open/floor/darkpurple2/east, +/area/navalis/indoors/residential/cafeteria) +"bzb" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"bzr" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"bzz" = ( +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/obj/effect/spawner/random/toolbox, +/turf/open/hybrisa/street/underground_unweedable, +/area/navalis/indoors/med_sci/main_floor) +"bzO" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"bAi" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/entrance) +"bAm" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/navalis/outdoors/exterior/log_ext/upper) +"bAs" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 6; + pixel_y = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"bAB" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"bAC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/darkbrown2, +/area/navalis/indoors/residential/starboard) +"bAJ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"bAK" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8; + pixel_x = 1; + layer = 2.9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"bAL" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/med_ext/upper) +"bBe" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/maintenance_starboard) +"bBh" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"bBm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"bBX" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sink{ + dir = 8; + pixel_x = -7; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"bCi" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/residential/port) +"bCj" = ( +/turf/open/floor/almayer/plating, +/area/navalis/outdoors/landing_zone_1) +"bCl" = ( +/turf/open/floor/corsat/red/west, +/area/navalis/indoors/industrial/refinery) +"bCm" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/darkgreen/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"bCp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = -19; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"bCR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrowncorners3/east, +/area/navalis/indoors/med_sci/lower_level/starboard) +"bDm" = ( +/obj/structure/sign/safety/biolab{ + pixel_x = 32 + }, +/obj/item/device/healthanalyzer, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"bDu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25; + pixel_y = 5; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/command/office) +"bDY" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"bEc" = ( +/obj/structure/prop/resin_prop{ + icon_state = "closed_oxygen" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"bEe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = 9; + pixel_y = 1 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"bEf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 1 + }, +/turf/open/floor/half_plate/green/north, +/area/navalis/outdoors/exterior/med_ext/upper) +"bEq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/medical{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"bEw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"bEW" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"bFf" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + pixel_y = -2 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"bFF" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/oob/powered) +"bFL" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"bFQ" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/navalis/indoors/command/lower_deck/sub_pen) +"bGb" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 11 + }, +/obj/structure/mirror{ + pixel_y = 32; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"bGd" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/server_room) +"bGr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"bGO" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/maint) +"bHp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"bHF" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"bHK" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"bHR" = ( +/obj/structure/largecrate/supply/medicine/medkits, +/turf/open/floor/prison/darkyellow2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"bHT" = ( +/obj/effect/alien/weeds, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob/powered) +"bIp" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble10{ + dir = 8; + pixel_x = -32; + layer = 4.2 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"bIu" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"bIJ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"bJd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"bJo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen, +/area/navalis/indoors/logistic/lower_deck/fore) +"bJz" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"bJC" = ( +/turf/open/floor/prison/floor_plate, +/area/navalis/outdoors/landing_zone_1) +"bJG" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"bJI" = ( +/obj/item/bedsheet/green{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"bJO" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"bJS" = ( +/obj/item/bedsheet/ce{ + color = "#b54b3d" + }, +/obj/structure/bed, +/obj/structure/bed{ + pixel_y = -12 + }, +/obj/item/bedsheet/ce{ + color = "#b54b3d"; + pixel_y = -12 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"bKC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"bKI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating_striped/east, +/area/navalis/indoors/med_sci/lower_level/port) +"bKJ" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy16"; + layer = 3.2 + }, +/area/navalis/oob/powered) +"bKO" = ( +/obj/structure/bed/chair/office/light{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/office) +"bLq" = ( +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/upper_level/morgue) +"bLs" = ( +/obj/structure/machinery/portable_atmospherics/canister/phoron, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"bLu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"bLP" = ( +/turf/open/floor/corsat/arrow_north, +/area/navalis/indoors/industrial/mining) +"bLR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/wood/normal{ + dir = 4; + pixel_x = -8 + }, +/obj/item/stack/sheet/metal, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"bMe" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"bMr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime1" + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"bMy" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"bMC" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"bMQ" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/logistic/lower_deck/fuel) +"bMS" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"bMU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"bNc" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/com_ext/upper) +"bNd" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"bNg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"bNk" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"bNs" = ( +/obj/item/stack/cable_coil{ + pixel_x = -7; + pixel_y = 5 + }, +/obj/item/stack/cable_coil{ + pixel_x = 7 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"bNU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"bNX" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"bNZ" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"bOv" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = 19 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"bOC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"bOE" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"bOJ" = ( +/turf/open/floor/prison/greenblue/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"bOO" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/command/office) +"bPl" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"bPA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"bPK" = ( +/turf/open/floor/prison/greenfull/northwest, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"bPW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/janitorialcart{ + pixel_x = 1; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/port) +"bQF" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"bQS" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1; + pixel_y = -4 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"bRo" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/processor{ + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"bRF" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"bRR" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"bSa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"bSp" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 13; + pixel_y = 17 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"bSw" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy17" + }, +/area/navalis/oob/powered) +"bSz" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"bSE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"bSG" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"bSI" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2; + color = "#343434" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/charon/below_deck/middle) +"bSV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"bSW" = ( +/obj/structure/barricade/handrail/strata/navalis{ + pixel_x = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"bTx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"bTA" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"bTU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "psiphon:0" + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"bUd" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"bUf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/starboard) +"bUh" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6; + pixel_x = 16 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5; + pixel_x = 16 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"bUA" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"bUB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/com_ext/upper) +"bUG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/landing_zone_2) +"bUK" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"bVb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplecorners2, +/area/navalis/indoors/command/upper_deck/server) +"bVD" = ( +/turf/open/floor/prison/darkyellowcorners2/east, +/area/navalis/indoors/command/lower_deck/sub_pen) +"bVF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe3, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"bVN" = ( +/turf/open/floor/prison/greenblue/northwest, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"bVW" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 10 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -11 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"bWj" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"bWK" = ( +/obj/structure/largecrate/random/barrel/green{ + pixel_x = 3 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"bWR" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = -2; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = -11; + pixel_y = 12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"bXn" = ( +/obj/structure/cargo_container/uscm/chinook/left, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"bXx" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/navalis/indoors/industrial/accessway) +"bXC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"bXM" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"bXW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 14; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"bYh" = ( +/turf/open/floor/almayer/blackfull/west, +/area/navalis/indoors/charon/below_deck/front) +"bYG" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"bYO" = ( +/turf/open_space, +/area/navalis/indoors/residential/cafeteria) +"bZh" = ( +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/indoors/logistic/upper_deck/entrance) +"bZW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"caz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"caC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/obj/structure/platform/metal/hybrisa/metalplatform4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"caD" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 4; + pixel_x = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"caQ" = ( +/turf/open/floor/corsat/red/north, +/area/navalis/indoors/industrial/refinery) +"caW" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_off{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/command/upper_deck/server) +"cbD" = ( +/obj/structure/bed/chair{ + pixel_y = -1; + dir = 8; + pixel_x = 9 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"cbM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = -13 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = 19 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"ccb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"ccl" = ( +/obj/structure/prop/resin_prop{ + icon_state = "pscrubber:0" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"ccw" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -5; + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"ccL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkpurple2/northwest, +/area/navalis/indoors/residential/starboard) +"ccO" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"cdn" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"cdq" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"cdC" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"cdG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"cdT" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"cdW" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/logistic/lower_deck/port) +"ceB" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy13" + }, +/area/navalis/oob/water) +"ceK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/comm_one) +"cfG" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"cfO" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"cgk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"cgn" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"cgH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/med_sci/lower_level/port) +"chd" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/outdoors/exterior/med_ext) +"che" = ( +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor, +/turf/open/floor/plating, +/area/navalis/oob) +"chK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double{ + layer = 2.9 + }, +/obj/item/reagent_container/food/snacks/hotdog{ + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"ciq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"ciM" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"cja" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"cjd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"cjm" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/break_room) +"cjx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"cjB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/port) +"cjE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 2; + pixel_y = 9 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"cjI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ckk" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"cko" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/upper_level/entrance) +"ckz" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications/simple{ + dir = 8; + pixel_y = -2 + }, +/obj/structure/window/reinforced, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/command/office) +"ckX" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"clp" = ( +/obj/item/tool/warning_cone{ + pixel_x = 2; + pixel_y = 10 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"clu" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/souto{ + icon_state = "6_pack_1_crushed" + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"clB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"cma" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/office) +"cmb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"cmw" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"cmK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"cmO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines3, +/obj/item/clothing/head/beret{ + pixel_y = -5; + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"cnG" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"cnM" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/power) +"coc" = ( +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"cok" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"coD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"coK" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_y = -1; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"cpq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"cpO" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/light/spot, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"cpS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/xeno_growth) +"cpV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"cpX" = ( +/obj/structure/platform/stone/strata/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"cqa" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/turf/open_space, +/area/navalis/oob/empty_space) +"cqb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"cqf" = ( +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"cql" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"cqI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"cqQ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"crn" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"crO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"csm" = ( +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"cty" = ( +/obj/item/device/flashlight/lamp/tripod, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"ctB" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"ctC" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"ctI" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ctM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"ctR" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/weapon/gun/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/clothing/suit/armor/vest, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/sign/safety/ammunition{ + pixel_x = 23; + pixel_y = 31 + }, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/clothing/head/beret, +/turf/open/floor/prison/red/northwest, +/area/navalis/indoors/command/security) +"ctZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"cuo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"cuE" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"cuO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 4; + pixel_x = 6 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/morgue) +"cuX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"cvj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"cvm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"cvx" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"cvA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"cvJ" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/colony{ + name = "Science Armoury" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"cwd" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/closed/wall/strata_outpost/reinforced, +/area/navalis/indoors/charon/below_deck/middle) +"cwo" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/candy{ + layer = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 8 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"cwF" = ( +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"cwW" = ( +/obj/structure/surface/table/almayer, +/obj/item/weapon/gun/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/obj/item/ammo_magazine/smg/nailgun, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"cxE" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"cya" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"cyb" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"cyl" = ( +/obj/structure/machinery/power/port_gen/pacman/super, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"cyp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"cyC" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/storage/briefcase, +/obj/item/spacecash/c10, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/starboard) +"cyG" = ( +/obj/structure/machinery/power/reactor/colony, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"cyK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"cze" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"czB" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/logistic/upper_deck/walkway) +"czH" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"czP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"czW" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"cAt" = ( +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"cAv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"cAM" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock" + }, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/outdoors/exterior/med_ext/upper) +"cBd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/machine/recycler, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"cBj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"cBo" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"cBs" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/indoors/industrial/refinery) +"cBt" = ( +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/logistic/lower_deck/fore) +"cBy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/almayer/plating_striped, +/area/navalis/indoors/med_sci/lower_level/port) +"cBG" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"cBO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + pixel_y = -1; + dir = 8; + pixel_x = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"cBS" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"cBU" = ( +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/accessway) +"cBW" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"cCc" = ( +/turf/open/floor/darkblue2, +/area/navalis/indoors/residential/accessway) +"cCm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/item/stack/sheet/metal{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/logistic/lower_deck/port) +"cCA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/computer/communications{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/red/west, +/area/navalis/indoors/command/security) +"cCN" = ( +/obj/structure/platform/metal/almayer, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"cCP" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/empty_space) +"cCU" = ( +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/residential/cafeteria) +"cDl" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = -5; + pixel_y = 9 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/foyer) +"cDz" = ( +/obj/effect/decal/hybrisa/road/road_stop, +/obj/effect/decal/hybrisa/road/lines4, +/obj/vehicle/train/cargo/trolley, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"cDE" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"cDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"cDH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"cDT" = ( +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 33; + icon_state = "notices_2"; + name = "sticky notes" + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/pharmacy) +"cEf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop/closed, +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/med_sci/upper_level/flight) +"cEg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/starboard) +"cEl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/med_sci/lower_level/port) +"cEo" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"cEw" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"cEG" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/indoors/industrial/accessway) +"cEH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"cEJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"cFv" = ( +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"cFE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/command/lower_deck/starboard) +"cFJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/obj/structure/stairs, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"cFY" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"cGP" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"cHd" = ( +/obj/effect/decal/hybrisa/road/corner{ + pixel_x = -1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"cHf" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"cHh" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/tray{ + pixel_x = -16; + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"cHp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"cHB" = ( +/obj/structure/closet/crate, +/obj/item/tool/extinguisher, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"cHN" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"cIb" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"cIB" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/northeast, +/area/navalis/indoors/residential/cafeteria) +"cIP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/med_sci/lower_level/port) +"cIS" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -14 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"cIU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/command_kitchen) +"cJg" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2; + pixel_x = 32 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/break_room) +"cJJ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"cJN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalertblank{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = -32 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/red, +/area/navalis/indoors/command/security) +"cKh" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3"; + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"cKt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/maint) +"cKx" = ( +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/entrance) +"cKJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"cLj" = ( +/obj/structure/surface/table/woodentable, +/obj/item/storage/fancy/cigar/matchbook/koorlander{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/book/manual/medical_diagnostics_manual{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/telescreen{ + pixel_y = 31 + }, +/obj/structure/machinery/light/small/blue{ + dir = 8; + pixel_y = -7 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/break_room) +"cLU" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"cMc" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"cMf" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"cMh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/almayer/dark_sterile2, +/area/navalis/indoors/residential/kitchen) +"cMi" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/refinery) +"cMj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"cMv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"cMG" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"cMZ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"cNf" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"cNj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"cND" = ( +/obj/item/clothing/shoes/black, +/obj/item/clothing/shoes/blue{ + pixel_y = -8; + pixel_x = -10 + }, +/obj/item/clothing/shoes/black{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"cNM" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/delivery) +"cOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"cOk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"cOw" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/gloves/marine/veteran/insulated, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"cOF" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/outdoors/exterior/com_ext) +"cOP" = ( +/obj/structure/machinery/light, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 15; + pixel_y = 5; + layer = 2.7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"cOW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"cPt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"cQr" = ( +/obj/structure/prop/hybrisa/misc/floorprops/floorglass3, +/turf/open_space, +/area/navalis/outdoors/exterior/com_ext/upper) +"cQA" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"cQI" = ( +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"cQM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/starboard_hallway) +"cQS" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/command/upper_deck/server) +"cQV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"cRQ" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#712215" + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"cRY" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"cSs" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/meeting_hall) +"cSx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreencorner/west, +/area/navalis/indoors/med_sci/pharmacy) +"cSG" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/darkpurple2, +/area/navalis/indoors/residential/cafeteria) +"cSH" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"cSK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/item/stack/sheet/plasteel/med_small_stack, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/green_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"cSR" = ( +/obj/structure/bed/sofa/south/grey/right, +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"cSZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/oob/powered) +"cTj" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 12; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/port_hallway) +"cTA" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"cUf" = ( +/obj/structure/stairs/multiz/up, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/primary_storage) +"cUH" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -22 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"cUO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"cUV" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#712215" + }, +/obj/item/reagent_container/food/snacks/stew{ + pixel_y = 14; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"cVv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/command/lower_deck/port) +"cWb" = ( +/obj/structure/machinery/computer/shuttle/dropship/flight/lz1{ + layer = 3.2 + }, +/obj/structure/prop/invuln/remote_console_pod, +/turf/open/floor/platingdmg1, +/area/navalis/outdoors/landing_zone_1) +"cWe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/foyer) +"cWf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"cWk" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/prop/invuln/catwalk_support{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"cWT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"cXd" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/cent_com) +"cXw" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"cXC" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"cXJ" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"cXN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 7; + pixel_x = 7 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/entrance) +"cXT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"cXY" = ( +/obj/structure/prop/hybrisa/misc/fire{ + icon_state = "zfire_smoke2"; + pixel_x = -32; + pixel_y = 17; + layer = 6.1 + }, +/obj/effect/decal/cleanable/blood/xeno{ + pixel_y = 3; + pixel_x = 14 + }, +/turf/open/floor/prison/floorscorched1, +/area/navalis/indoors/logistic/primary_storage) +"cYf" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/bed/chair/comfy/hybrisa/blue{ + dir = 8; + pixel_x = -9 + }, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2; + pixel_x = 32 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"cYp" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"cYO" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/road_edge{ + pixel_y = 7 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"cYW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"cZy" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"cZA" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"cZE" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"daK" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"dbE" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"dbF" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/CICmap/pmc, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"dca" = ( +/obj/structure/machinery/power/port_gen/pacman/mrs, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 32 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"dcd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"dcT" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"dda" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/port) +"ddh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/floor/corsat/darkgreen/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"ddk" = ( +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/main_floor) +"ddq" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat, +/area/navalis/oob/powered) +"ddA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"ddC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob) +"ddD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"ddK" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/upper) +"dej" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/cafeteria) +"des" = ( +/obj/structure/cargo_container/arious/rightmid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"deF" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/tray{ + pixel_y = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"deG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = -6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/north, +/area/navalis/indoors/residential/starboard) +"dfx" = ( +/obj/item/prop/colony/usedbandage{ + dir = 9 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"dgc" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/office) +"dgk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/port) +"dgD" = ( +/obj/structure/prop/hybrisa/misc/urinal{ + pixel_y = 32; + pixel_x = -2; + color = "#f5e9db" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/strata, +/area/navalis/indoors/command/bathroom) +"dgG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"dhl" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"dhH" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"dhX" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19 + }, +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"dig" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"diA" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"diE" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + pixel_y = 23; + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy4{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"diL" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"diS" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"djx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"djE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/landmark/static_comms/net_one, +/turf/open/floor/prison/floor_marked, +/area/navalis/outdoors/comm_one) +"dkn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/pills/highchance{ + pixel_y = -5; + pixel_x = 5 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"dlb" = ( +/obj/structure/cargo_container/horizontal/blue/middle, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"dlo" = ( +/turf/open/floor/corsat/redcorner/west, +/area/navalis/indoors/industrial/refinery) +"dlq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/starboard) +"dlA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/head/welding{ + pixel_x = 3; + pixel_y = 5 + }, +/obj/structure/sign/safety/security{ + pixel_x = 32; + pixel_y = -8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"dlI" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"dlZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"dme" = ( +/obj/structure/bed/roller, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/foyer) +"dmp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10; + pixel_x = 18 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"dmx" = ( +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -8 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"dmA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"dmH" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/indoors/industrial/power) +"dmK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"dmQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -10; + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"dnc" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"dnN" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/port) +"dnR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"dog" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/black, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"doo" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"doN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/outdoors/exterior/com_ext) +"doP" = ( +/obj/structure/machinery/cm_vending/sorted/tech/electronics_storage, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"dpb" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_y = -1; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"dpf" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"dpk" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"dpw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/command/upper_deck/server) +"dpD" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"dpF" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"dpN" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"dqw" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/obj/structure/platform/stone/strata/north, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/xeno_growth/residential) +"dqB" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"dqL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"dqN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"dre" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"drj" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"drC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/west, +/area/navalis/indoors/command/security) +"drJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"drK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"drS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"drT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"drW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/corridor) +"drZ" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/log_ext/lower) +"dsu" = ( +/obj/structure/prop/resin_prop{ + icon_state = "chest" + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"dsG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod, +/area/navalis/oob/powered) +"dsJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplecorners2/east, +/area/navalis/indoors/command/upper_deck/server) +"dsS" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"dtA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/oob/powered) +"dtH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 12 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/residential/cafeteria) +"dug" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = -6; + pixel_y = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"dui" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3"; + pixel_x = 13 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft"; + color = "#d3d3d3" + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_12"; + pixel_x = 10; + pixel_y = 11; + layer = 3.6 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"duj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/port) +"dun" = ( +/obj/structure/bed, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"duK" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/med_sci/lower_level/delivery) +"duN" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/port) +"dvr" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_y = 5 + }, +/obj/item/tool/pen/blue/clicky, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"dvv" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"dvQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/maint) +"dvS" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/upper_level/entrance) +"dvZ" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/oob) +"dwf" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"dwn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"dwM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"dwW" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"dxj" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/upper_deck/server) +"dxs" = ( +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"dxu" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"dxE" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/obj/structure/platform/stone/strata, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/xeno_growth/residential) +"dxJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/west, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/cent_com) +"dxV" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"dyh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/port_hallway) +"dyi" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"dyj" = ( +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"dyy" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"dyB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"dyE" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/landmark/objective_landmark/science, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"dyL" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright"; + color = "#d3d3d3" + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"dyT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/xeno_growth/residential) +"dzd" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_one_access = null; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/workshop) +"dze" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"dzr" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"dzw" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 1; + pixel_y = 26 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"dzF" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/front) +"dzH" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"dzI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/med_sci/upper_level/sec) +"dzN" = ( +/obj/structure/cargo_container/trijent/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"dAk" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/cafeteria) +"dAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/starboard) +"dAz" = ( +/obj/structure/sign/poster/corporate{ + pixel_y = -32 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"dBg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/turf/open_space, +/area/navalis/oob) +"dBm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"dBo" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"dBJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"dCl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"dCs" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"dCu" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"dCF" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/autodispenser{ + dir = 4 + }, +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"dCK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"dCN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/effect/spawner/random/toolbox, +/obj/item/stack/sheet/metal/medium_stack{ + pixel_x = 5; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"dCO" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 4; + name = "synthethic potted plant"; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/tile/beige_bigtile, +/area/navalis/indoors/residential/starboard) +"dCY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"dDp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/entrance) +"dDu" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy13" + }, +/area/navalis/oob/powered) +"dDK" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"dDP" = ( +/obj/structure/barricade/handrail/pizza{ + color = "#36454F"; + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"dDQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/lisa, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"dEn" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"dEv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10" + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"dED" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/maint) +"dEI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/colony/canister{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/item/prop/colony/canister{ + pixel_x = 3; + pixel_y = 2 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"dEU" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"dFa" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"dFg" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"dFi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"dFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"dFz" = ( +/turf/open/floor/plating/platingdmg1, +/area/navalis/outdoors/landing_zone_2) +"dGb" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"dGw" = ( +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"dGP" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/command/lower_deck/port) +"dHq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"dHH" = ( +/obj/structure/prop/turbine{ + layer = 6; + explo_proof = 0 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -26; + pixel_y = -4; + layer = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_y = 6; + pixel_x = -6 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"dHI" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"dIb" = ( +/turf/open/floor/prison/darkyellow2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"dIg" = ( +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"dIA" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"dIO" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"dIV" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"dJd" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"dJv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble12{ + dir = 1; + pixel_x = -29; + pixel_y = 1; + layer = 4.2 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"dJN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"dJO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/gun/smg/p90{ + pixel_x = 3 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"dKb" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/oft_duty_room) +"dKd" = ( +/obj/item/prop/colony/usedbandage{ + name = "bandages"; + layer = 4; + pixel_x = -4 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/morgue) +"dKk" = ( +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"dKz" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/charon/below_deck/front) +"dKB" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/upper) +"dKG" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/upper) +"dKI" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/floodlight{ + pixel_y = 2; + pixel_x = 16 + }, +/turf/open/hybrisa/street/sidewalkcenter/west, +/area/navalis/indoors/med_sci/lower_level/delivery) +"dKY" = ( +/obj/structure/machinery/door_control{ + id = "secret_access"; + name = "Submarine Dock"; + pixel_y = 28; + pixel_x = -28; + req_access = list(213); + explo_proof = 1 + }, +/turf/closed/wall/hybrisa/colony/office/reinforced/hull, +/area/navalis/oob/powered) +"dKZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/indoors/logistic/primary_storage) +"dLf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/upper_level/entrance) +"dLk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/aft_hallway) +"dLn" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"dLv" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"dLA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"dLB" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3, +/turf/open/floor/half_plate/green, +/area/navalis/outdoors/exterior/med_ext/upper) +"dLC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"dMn" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"dMN" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"dMP" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"dMX" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/flashlight/lamp/on, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/command/lower_deck/starboard) +"dNo" = ( +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/industrial/mining) +"dNE" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"dNM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"dOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/canister{ + pixel_x = 6; + pixel_y = -6 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"dOq" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/entrance) +"dOx" = ( +/turf/open/floor/corsat/browncorner/north, +/area/navalis/indoors/industrial/mining) +"dOT" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/med_ext/upper) +"dPu" = ( +/turf/open/floor/darkgreen2/north, +/area/navalis/indoors/residential/accessway) +"dPv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/resin_prop{ + icon_state = "secure_crate_strapped" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"dPx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"dPC" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"dQd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"dQh" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/accessway) +"dQi" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -14; + pixel_x = 15; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -8; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"dQm" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/lower) +"dQn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"dQr" = ( +/obj/structure/prop/resin_prop, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"dQB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_x = 16; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11; + pixel_x = 16 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"dQF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"dQV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"dQX" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/accessway) +"dRe" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -10; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = 2; + pixel_y = 13 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 3 + }, +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/med_sci/break_room) +"dRh" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"dRj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/med_sci/lower_level/port) +"dRz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"dSa" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"dSw" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/logistic/lower_deck/maint) +"dSQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/science, +/obj/item/clothing/accessory/stethoscope, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"dSX" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"dTd" = ( +/obj/structure/largecrate/empty/case, +/obj/structure/largecrate/random/mini{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"dTo" = ( +/obj/structure/lattice, +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"dTv" = ( +/turf/open/floor/prison/ramptop/east, +/area/navalis/oob/water) +"dTV" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"dTY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/starboard) +"dUa" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"dUf" = ( +/obj/effect/spawner/random/toolbox, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"dUh" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"dUk" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/chemical_store) +"dUA" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"dUG" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"dVb" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/platform/stone/strata/north, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/xeno_growth/residential) +"dVo" = ( +/obj/item/card/id/captains_spare{ + access = list(213); + name = "Submersile-Bravo ID"; + desc = "Spare access to the submarine deck."; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/machinery/door_control{ + id = "secret_access"; + name = "Submarine Dock"; + pixel_y = -4; + pixel_x = -25; + req_access = list(213); + explo_proof = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"dVL" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_y = -3; + pixel_x = -5 + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/port) +"dVY" = ( +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/upper_level/morgue) +"dWa" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/effect/sentry_landmark/lz_1/bottom_left, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"dWw" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"dWA" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"dWE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"dXh" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/oob/empty_space) +"dXj" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"dXo" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyright{ + layer = 4.2 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"dXJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/cafeteria) +"dXQ" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/navalis/indoors/command/lower_deck/sub_pen) +"dXX" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"dYA" = ( +/obj/effect/sentry_landmark/lz_2/top_right, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"dZT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"eae" = ( +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"eah" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/lower_deck/maint) +"eaE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/upper_level/entrance) +"eaF" = ( +/obj/structure/sign/safety/elevator{ + pixel_x = 13; + pixel_y = 30 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"eaG" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"eaN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Colony_Crawlers/Science_2{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ebb" = ( +/obj/structure/stairs, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"ebl" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"ebI" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/med_sci/lower_level/starboard) +"ebP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"ebV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"ebZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"ecw" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"ecz" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"ecI" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"edb" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + pixel_y = 23; + density = 0 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"edc" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"edv" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform_decoration/metal/almayer/northwest, +/turf/open_space, +/area/navalis/oob/empty_space) +"edY" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12; + pixel_x = 7 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/meeting_hall) +"eeg" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"eem" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/navalis/indoors/command/tertiary_comms) +"eet" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/northwest, +/area/navalis/indoors/residential/cafeteria) +"eeI" = ( +/obj/effect/spawner/random/tool{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"eeY" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"efu" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 6; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"efG" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"efR" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/com_ext/upper) +"egi" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/workshop) +"egl" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/outdoors/landing_zone_1) +"egr" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/exterior/log_ext) +"egE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"egI" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"ehA" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/accessway) +"ehB" = ( +/obj/structure/device/broken_piano, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"ehJ" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"ehL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"ehZ" = ( +/turf/open_space, +/area/navalis/oob/powered) +"ein" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/starboard) +"eiL" = ( +/obj/effect/landmark/queen_spawn, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"eiY" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ejp" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 10 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"ejs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 8 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ejG" = ( +/obj/structure/platform/metal/strata/west{ + icon_state = "strata_metalplatform_broken"; + density = 0 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"ekt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"ekD" = ( +/turf/open/floor/prison/red/east, +/area/navalis/indoors/command/security) +"ekG" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"elg" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/outdoors/comm_one) +"eli" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"elq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 8; + pixel_x = -24; + pixel_y = -4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 10; + pixel_y = -4; + pixel_x = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"elY" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"emr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/firecloset/full, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/navalis/indoors/command/tertiary_comms) +"emt" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = -32; + pixel_x = 16 + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/main_floor) +"emG" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/prison/rampbottom/north, +/area/navalis/outdoors/comm_one) +"emH" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"emS" = ( +/obj/structure/stairs/multiz/down, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"emX" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"enK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"enL" = ( +/obj/item/weapon/gun/flamer, +/obj/structure/surface/rack, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"enR" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/upper_deck/starboard) +"epm" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"epI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"epK" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/lower_level/records) +"epZ" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/cafeteria) +"eqd" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/oft_duty_room) +"eqt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"eqz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/uscm_mre{ + pixel_x = -10; + pixel_y = -7 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"eqL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating2/north, +/area/navalis/indoors/med_sci/lower_level/port) +"eqV" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"erf" = ( +/turf/open/floor/plating/platingdmg2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"erm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"erq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"erQ" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"erU" = ( +/obj/effect/decal/hybrisa/workers_decal{ + dir = 4; + pixel_y = -17 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"erX" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"esa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 1 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"est" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open_space, +/area/navalis/oob/empty_space) +"esz" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"esD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/maint) +"esH" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"esZ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14" + }, +/obj/effect/decal/cleanable/dirt{ + pixel_y = -9 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"etb" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/outdoors/landing_zone_2/under) +"ete" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/landing_zone_2) +"etl" = ( +/obj/structure/prop/tower{ + icon = 'icons/obj/structures/machinery/comm_tower3.dmi'; + icon_state = "static1_broken"; + name = "Destroyed TC-3T static telecommunications tower"; + desc = "A static heavy-duty TC-3T telecommunications tower. Used to set up subspace communications lines between planetary and extra-planetary locations. This one has been permanently destroyed, and not by human hands."; + explo_proof = 1; + health = 100000 + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + layer = 7; + pixel_y = 11; + light_color = "#FF7700"; + pixel_x = -2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating, +/area/navalis/indoors/command/tertiary_comms) +"etI" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/landing_pad) +"etT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"eum" = ( +/obj/structure/bed/hybrisa/bunkbed3, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"euo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"eup" = ( +/obj/structure/cargo_container/hybrisa/containersextended/kelland_right, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"euK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/prison, +/area/navalis/indoors/command/server_room) +"euQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"evd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_x = -2; + pixel_y = -23 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"evB" = ( +/turf/open/floor/corsat/darkgreencorner, +/area/navalis/indoors/industrial/refinery) +"evP" = ( +/obj/structure/machinery/big_computers/messaging_server/black{ + dir = 1 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"evZ" = ( +/obj/effect/landmark/static_comms/net_two, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"ewh" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ewF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"ewJ" = ( +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/logistic/workshop) +"ewK" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"ewN" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"ewT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/effect/spawner/random/toolbox{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"ewU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"exc" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/upper_deck/starboard) +"exQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"eyb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/chemical_store) +"eyh" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/platform/metal/strata/north{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata/east{ + layer = 2.5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"eyu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"eyG" = ( +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/entrance) +"eyI" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"eyK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"eyV" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/chemical_store) +"eyW" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = -2; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"eyY" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"ezf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"ezm" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1; + layer = 2.9 + }, +/obj/structure/sign/poster/safety{ + pixel_x = -4; + pixel_y = 34 + }, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 4 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"ezq" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/computerblack/computer3, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"ezG" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 17; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ezM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"eAa" = ( +/obj/structure/window_frame/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"eAj" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"eAv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"eAG" = ( +/obj/structure/largecrate/random/barrel/purewhite, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"eBl" = ( +/obj/effect/decal/hybrisa/road/lines3{ + color = "#5b9068"; + pixel_y = -1 + }, +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"eBn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/outdoors/exterior/med_ext) +"eBC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"eBE" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 14; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"eBK" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"eBS" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/workshop) +"eBZ" = ( +/turf/open/floor/prison/darkyellowcorners2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"eCe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/med_sci/lower_level/starboard) +"eCX" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/reagent_dispensers/watertank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/delivery) +"eCZ" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/med_ext/lower) +"eDa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"eDc" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"eDg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"eDz" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"eDI" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/paper_bin{ + pixel_x = 9; + pixel_y = 22 + }, +/obj/item/device/flashlight/pen{ + pixel_x = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"eDL" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/bed/chair/comfy/hybrisa/blue{ + dir = 4; + pixel_x = 9 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"eEe" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/indoors/command/upper_deck/port) +"eEy" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"eEP" = ( +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"eFc" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"eFj" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/clothing/gloves/yellow{ + pixel_x = 4 + }, +/obj/item/device/lightreplacer{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"eFs" = ( +/obj/item/prop/alien/hugger, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/north, +/area/navalis/indoors/residential/accessway) +"eFv" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"eFH" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/corridor) +"eFW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + pixel_y = -1; + dir = 8; + pixel_x = 9 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"eGb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/command/tertiary_comms) +"eGn" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/item/device/binoculars/civ{ + pixel_y = 8 + }, +/obj/item/newspaper{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"eHc" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/magazine/boots/n117{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/foyer) +"eHk" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"eHm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"eHq" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 10; + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/med_ext/upper) +"eHY" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, +/area/navalis/indoors/command/office) +"eIg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"eIp" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/maintenance_starboard) +"eIC" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"eIG" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/lower_deck/starboard) +"eJn" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/med_sci/lower_level/port) +"eJs" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"eJL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"eJP" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_y = 6 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"eJV" = ( +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"eKa" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/starboard) +"eKb" = ( +/obj/structure/machinery/landinglight/ds2/delaythree, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/stairs/multiz/down, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"eKs" = ( +/obj/item/paper/crumpled{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"eKN" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"eKW" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/navalis/indoors/logistic/mech_bay) +"eLu" = ( +/turf/open/floor/corsat/darkgreencorner/west, +/area/navalis/indoors/industrial/refinery) +"eLN" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"eLU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/logistic/workshop) +"eNl" = ( +/obj/structure/machinery/vending/cola{ + pixel_y = 16 + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/port_hallway) +"eNp" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"eNx" = ( +/obj/item/tool/warning_cone{ + pixel_y = 13; + pixel_x = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"eNP" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/prop/invuln/catwalk_support{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"eNS" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"eNT" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 18 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"eOa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"eOe" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"eOi" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"eOu" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"eOL" = ( +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/navalis/indoors/residential/port) +"eOZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_x = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"ePz" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"ePD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/residential/cafeteria) +"ePG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagentgrinder{ + pixel_y = 5; + pixel_x = 4 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -12 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/pharmacy) +"ePX" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"eQm" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/turf/open/floor/prison/darkpurplecorners2/north, +/area/navalis/indoors/command/upper_deck/server) +"eQp" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"eQt" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/paper{ + pixel_x = 5; + pixel_y = 2 + }, +/obj/item/tool/pen/blue, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = 8; + pixel_x = -7 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"eQz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/obj/structure/barricade/handrail, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/command/lower_deck/starboard) +"eQH" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"eQI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"eQT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"eQW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"eQZ" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"eRg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy{ + dir = 8 + }, +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/command/upper_deck/jani) +"eRp" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"eRx" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/logistic/upper_deck/entrance) +"eRH" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 20; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 1; + pixel_x = 5 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"eRW" = ( +/obj/structure/machinery/door_control/navalis_comms_lockdown{ + pixel_y = 32; + explo_proof = 1; + needs_power = 0; + id = "sector_two"; + name = "Sector B: Vehicle Entrance Lockdown" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"eSe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/records) +"eSn" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/starboard) +"eSs" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"eSD" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8; + pixel_y = 18 + }, +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"eSR" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"eTj" = ( +/obj/structure/prop/resin_prop, +/obj/structure/sign/safety/stairs{ + pixel_x = -17 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"eTr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"eTv" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"eTC" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"eTD" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"eTL" = ( +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/command/lower_deck/starboard) +"eTO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/item/storage/fancy/vials/random{ + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"eTX" = ( +/obj/structure/prop/dam/crane{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"eUj" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"eUs" = ( +/turf/open/floor/prison, +/area/navalis/indoors/residential/cafeteria) +"eUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"eUF" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/records) +"eUJ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"eUS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"eVa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/starboard) +"eVe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/logistic/workshop) +"eVw" = ( +/obj/item/shard{ + icon_state = "medium"; + pixel_x = -10; + pixel_y = -8 + }, +/turf/open/floor/plating/platingdmg1, +/area/navalis/indoors/logistic/lower_deck/port) +"eVM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"eWb" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"eWl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"eWD" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"eWH" = ( +/obj/structure/platform/metal/almayer/north, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11; + pixel_x = 16 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"eWS" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"eXd" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"eXf" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"eXt" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/navalis/oob/water) +"eXD" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"eXI" = ( +/obj/structure/sign/safety/chem_lab{ + pixel_y = -28; + pixel_x = -24 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/main_floor) +"eXW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"eYm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"eYA" = ( +/obj/structure/surface/table/almayer, +/obj/item/fuel_cell, +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"eYT" = ( +/obj/item/tool/surgery/scalpel, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/drapes{ + pixel_x = 3; + pixel_y = 10 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/surg_one) +"eZt" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/landing_zone_1/under) +"eZw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/supply_kit, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"eZy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"eZO" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_stop{ + pixel_y = -6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"faE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/starboard) +"faH" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"fbi" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"fbj" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -2; + pixel_x = 6 + }, +/obj/effect/spawner/random/gun/smg/lowchance, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/command_kitchen) +"fbl" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"fbt" = ( +/obj/structure/window/framed/hybrisa/colony/hull, +/turf/open/floor/plating, +/area/navalis/indoors/residential/port) +"fbE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -20; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"fbV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/prison/bluefull, +/area/navalis/indoors/med_sci/upper_level/flight) +"fcb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"fcu" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/refinery) +"fcE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"fcO" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced/hull, +/area/navalis/oob) +"fdc" = ( +/turf/open/floor/plating/platingdmg3, +/area/navalis/indoors/med_sci/chemical_store) +"fdJ" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"fdQ" = ( +/turf/open/floor/prison/ramptop, +/area/navalis/oob/water) +"fdR" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/navalis/indoors/logistic/primary_storage) +"feA" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/landing_zone_2) +"feC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"feD" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"feF" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"feI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"fff" = ( +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade"; + layer = 2.98 + }, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"ffh" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/prop/invuln/catwalk_support{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"ffn" = ( +/obj/structure/barricade/handrail{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/starboard) +"ffo" = ( +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"ffp" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"ffK" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/med_ext/lower) +"ffQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/snack_bowl{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/tool/pen/red/clicky{ + pixel_x = -10; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/break_room) +"ffU" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/reagent_dispensers/fueltank/spacecraft, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fgm" = ( +/obj/structure/machinery/cm_vending/sorted/tech/tool_storage, +/turf/open/floor/hybrisa/tile/green_bigtile/southwest, +/area/navalis/indoors/command/tertiary_comms) +"fgp" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"fgB" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"fgM" = ( +/obj/structure/closet/emcloset, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"fgY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"fhb" = ( +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/conduit) +"fhc" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 10; + pixel_y = -6 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 32 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/med_sci/records_room) +"fhi" = ( +/obj/structure/closet/secure_closet/fridge, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"fht" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"fhz" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"fhB" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#b3aa9b"; + alpha = 220; + layer = 3.2; + pixel_x = 32 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/break_room) +"fhM" = ( +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"fhX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"fhZ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"fiq" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light"; + layer = 2; + pixel_y = -13; + pixel_x = 16 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"fiD" = ( +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 6 + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"fiQ" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"fjo" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 3 + }, +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"fjp" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/prison/ramptop, +/area/navalis/indoors/logistic/mech_bay) +"fjy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"fjK" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/power) +"fjP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/wooden{ + dir = 4; + pixel_y = 2; + pixel_x = -3 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"fki" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open_space, +/area/navalis/oob/powered) +"fkk" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"fkx" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/alienjar{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/alienjar{ + pixel_y = -5 + }, +/obj/item/alienjar{ + pixel_y = 6; + pixel_x = -12 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"fkD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"fkF" = ( +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"fkV" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerbloodempty, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 21; + layer = 3.8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = -30; + name = "medical emergency alarm" + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"fld" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"flf" = ( +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"flA" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"flK" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/tile/green_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"fme" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"fml" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/paper/research_notes/grant, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"fmC" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"fmN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fmO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/pharmacy) +"fnd" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + density = 0; + name = "pole signal" + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"fnv" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"fnU" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 2 + }, +/obj/structure/window/reinforced, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/command/office) +"fon" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"fpb" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_x = -13; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"fpk" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/green_bigtile/northeast, +/area/navalis/indoors/command/tertiary_comms) +"fpK" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty{ + icon_state = "bigrollerempty_up" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"fpN" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/platform/metal/strata/east{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata{ + layer = 2.5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"fpO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/prop/resin_prop{ + icon_state = "densecrate" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"fqa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"fqb" = ( +/obj/item/paper/crumpled{ + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"fqd" = ( +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"fqh" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"fqO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/aft_hallway) +"fqT" = ( +/obj/structure/cargo_container/lockmart/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"frn" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 3; + pixel_x = -3 + }, +/turf/open/floor/almayer/black2/east, +/area/navalis/indoors/med_sci/records_room) +"frp" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -9; + pixel_y = 5 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"fsg" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + id = "industriallockdown"; + name = "Industrial Rig: Entrance Blastdoor"; + needs_power = 0; + unacidable = 1; + dir = 4; + desc = "This is shut tight. You will have to go to this rig's Command Centre, to the North, to lift this." + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/accessway) +"fsr" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"fst" = ( +/turf/open/floor/prison/greenblue/northeast, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"fsF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/cent_com) +"fsI" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyleft, +/obj/structure/cargo_container/hybrisa/containersextended/redleft{ + layer = 4.2 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"fsJ" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper{ + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"fsL" = ( +/obj/structure/surface/rack, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/whitegreencorner, +/area/navalis/indoors/med_sci/chemical_store) +"ftk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -3; + pixel_y = 4 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"ftr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/medicalright, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"ftt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1; + layer = 3.33 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"ftM" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/navalis/outdoors/exterior/med_ext/upper) +"ftU" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/oft_duty_room) +"fui" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/pharmacy) +"fuG" = ( +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"fuS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/med_sci/upper_level/entrance) +"fuU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"fvf" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"fvC" = ( +/obj/item/tool/warning_cone{ + pixel_x = -10; + pixel_y = 11 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"fvE" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"fvJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/port) +"fvV" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv, +/obj/effect/spawner/random/gun/shotgun/lowchance, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/red, +/area/navalis/indoors/command/security) +"fwH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"fwM" = ( +/obj/structure/stairs/multiz/up, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"fwS" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/item/tool/weldpack{ + pixel_y = 5 + }, +/obj/item/tool/weldingtool, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"fwY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/starboard) +"fxc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"fxq" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"fxD" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"fxI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -8; + pixel_y = 6 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"fxN" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/lower_deck/fore) +"fyn" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 8 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/accessway) +"fyp" = ( +/obj/structure/machinery/computer/shuttle/dropship/flight/lz2{ + layer = 3.2 + }, +/obj/structure/prop/invuln/remote_console_pod, +/turf/open/floor/plating/platingdmg1, +/area/navalis/outdoors/landing_zone_2) +"fyy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"fyK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/med_sci/lower_level/port) +"fyN" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"fzk" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"fzv" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/panelscorched, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fzy" = ( +/obj/structure/barricade/handrail/wire, +/turf/open_space, +/area/navalis/oob/empty_space) +"fzF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"fAj" = ( +/obj/structure/cargo_container/kelland/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"fAt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"fAD" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"fAF" = ( +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/port) +"fAZ" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"fBd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/effect/spawner/random/attachment, +/obj/effect/spawner/random/attachment, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -3; + pixel_y = 10 + }, +/turf/open/floor/prison/red/east, +/area/navalis/indoors/med_sci/upper_level/sec) +"fBe" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/upper) +"fBf" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/workshop) +"fBh" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"fBj" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"fBN" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"fBP" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"fBX" = ( +/turf/open/floor/corsat/redcorner/north, +/area/navalis/indoors/industrial/refinery) +"fCc" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"fCp" = ( +/obj/structure/machinery/door/poddoor/almayer/open{ + id = "comacc"; + dir = 2; + unacidable = 1; + name = "Command Upper Access"; + explo_proof = 1; + needs_power = 0 + }, +/turf/open/floor/almayer/pod_landing_floor, +/area/navalis/outdoors/exterior/com_ext/upper) +"fCx" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 9 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"fCF" = ( +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"fCH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"fCS" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/main_floor) +"fDa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fDh" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"fDp" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"fDB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/cent_com) +"fEk" = ( +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 4; + pixel_x = 32; + density = 0 + }, +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/starboard) +"fEs" = ( +/obj/structure/barricade/handrail/pizza{ + color = "#36454F" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"fEv" = ( +/obj/structure/prop/hybrisa/Factory/Robotic_arm{ + dir = 8; + layer = 4.2; + pixel_y = 5; + level = 5; + pixel_x = -26 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fEW" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/storage) +"fFe" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/command/aft_hallway) +"fFi" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"fFt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"fFw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_18"; + pixel_y = 17; + pixel_x = -11; + layer = 3.6 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 31; + icon_state = "notices_4"; + name = "sticky notes"; + pixel_x = -2 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/break_room) +"fFx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"fFT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/glass/bucket{ + pixel_x = -4; + pixel_y = -3 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/port) +"fFV" = ( +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"fGf" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/navalis/outdoors/landing_zone_2) +"fGj" = ( +/obj/item/tool/mop{ + pixel_x = 15; + pixel_y = 24 + }, +/obj/item/reagent_container/glass/bucket/mopbucket{ + pixel_x = 10; + pixel_y = 4 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"fGD" = ( +/turf/open/floor/darkpurplecorners2/east, +/area/navalis/indoors/residential/cafeteria) +"fGS" = ( +/obj/structure/platform_decoration/metal/strata/west, +/obj/structure/platform_decoration/metal/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"fGT" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"fGZ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"fHh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetalcorner, +/area/navalis/indoors/logistic/lower_deck/maint) +"fHE" = ( +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"fHJ" = ( +/obj/structure/cargo_container/kelland/right, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"fHK" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"fHO" = ( +/obj/item/tool/wet_sign{ + pixel_x = -9 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"fHP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped, +/area/navalis/indoors/med_sci/lower_level/port) +"fId" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/logistic/primary_storage) +"fIl" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/sec) +"fIA" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"fJa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_east, +/area/navalis/indoors/med_sci/lower_level/port) +"fJh" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"fJQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"fKh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -4; + pixel_x = 15; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"fKk" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/starboard) +"fKm" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile, +/area/navalis/indoors/residential/starboard) +"fKx" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/command/aft_hallway) +"fKE" = ( +/obj/structure/machinery/landinglight/ds2, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/stairs/multiz/down, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"fKO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/west, +/area/navalis/indoors/med_sci/lower_level/port) +"fKQ" = ( +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"fLg" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"fLv" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "smokestack" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"fLz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/east, +/area/navalis/indoors/residential/cafeteria) +"fLD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/industrial/refinery) +"fLV" = ( +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"fMb" = ( +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"fMd" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"fMe" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"fMp" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -20; + pixel_y = 32 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/corridor) +"fMs" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = -26; + pixel_y = -11; + layer = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_y = 6; + pixel_x = -6 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"fMt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"fMN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/prop/hybrisa/Factory/Robotic_arm/Flipped{ + dir = 8; + pixel_y = 2; + pixel_x = 5; + desc = "A robotic arm used to assist in operating and repairing the internal mining equipment." + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"fMT" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"fNm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"fNv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 4; + pixel_y = 9 + }, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/command/lower_deck/port) +"fNx" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_y = 12 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"fND" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"fNN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 10; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"fNX" = ( +/turf/open/floor/corsat/omega, +/area/navalis/indoors/industrial/refinery) +"fOf" = ( +/turf/open/floor/corsat/gamma, +/area/navalis/indoors/industrial/mining) +"fOq" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"fOG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"fPx" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 3; + color = "#FFFF00"; + pixel_y = -1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"fPN" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/device/demo_scanner{ + pixel_y = 5 + }, +/obj/effect/spawner/random/technology_scanner{ + pixel_x = -6; + pixel_y = 4 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"fPP" = ( +/obj/structure/machinery/landinglight/ds1/delaytwo{ + dir = 1 + }, +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"fQi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler/walk_past{ + pixel_x = 10; + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/logistic/lower_deck/maint) +"fQj" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"fQy" = ( +/obj/structure/machinery/computer3/server/rack, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"fQT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_y = 5; + pixel_x = -6 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"fQZ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/mineral/processing_unit{ + name = "oven" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"fRe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/workshop) +"fRq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"fRB" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/structure/prop/dam/crane/cargo{ + pixel_y = -12; + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"fRK" = ( +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/delivery) +"fRZ" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpet_colorable/blue_grey, +/area/navalis/indoors/command/office) +"fSp" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/logistic/upper_deck/entrance) +"fSA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fST" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/west, +/area/navalis/indoors/med_sci/lower_level/starboard) +"fSY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"fTf" = ( +/obj/structure/barricade/handrail/medical, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"fTg" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = 6; + pixel_y = 12 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"fTs" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent3" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"fTt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"fTM" = ( +/obj/structure/closet/emcloset, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/logistic/workshop) +"fTU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6, +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"fTX" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/bridge{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 15; + pixel_y = 32 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/oft_duty_room) +"fUd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"fUt" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6; + pixel_x = 16 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5; + pixel_x = 16 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"fUx" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"fUI" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"fUT" = ( +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 7 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"fUY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"fVg" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -2; + pixel_y = 4 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 11; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"fVx" = ( +/obj/effect/decal/cleanable/blood/oil, +/obj/structure/machinery/landinglight/ds2/delayone, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/stairs/multiz/down, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"fVy" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/megaphone{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/device/whistle{ + pixel_x = 4; + pixel_y = -3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"fVM" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"fVP" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/conduit) +"fVX" = ( +/turf/open/floor/prison/greenblue/southeast, +/area/navalis/indoors/charon/below_deck/front) +"fWh" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/walkway) +"fWi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"fWH" = ( +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/upper_deck/starboard) +"fWU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = -6; + pixel_y = 7 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fXd" = ( +/obj/structure/machinery/light/small, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"fXi" = ( +/obj/structure/surface/rack, +/obj/item/tool/weldpack, +/obj/item/tool/weldpack, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"fXm" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"fXs" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#6e272e"; + layer = 2.01; + dir = 8; + pixel_y = -33; + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"fXD" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/structure/platform_decoration/stone/strata/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"fXH" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"fXS" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"fXU" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/entrance) +"fXY" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/logistic/lower_deck/maint) +"fYh" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"fYs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"fYw" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"fYI" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"fYN" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"fYR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/powerloader/jd{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"fYX" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"fZg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -2 + }, +/turf/open/floor/corsat/brown, +/area/navalis/indoors/industrial/mining) +"fZk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"fZl" = ( +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/kitchen) +"fZo" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"fZp" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/outdoors/exterior/log_ext/upper) +"fZQ" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/weldingtool/largetank{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"fZW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"gaD" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 8 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalleft"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"gaX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"gbu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"gbI" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"gch" = ( +/obj/structure/closet/secure_closet/atmos_personal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/command/tertiary_comms) +"gcp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"gcW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"gdc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"gdg" = ( +/obj/item/paper{ + layer = 2; + pixel_x = 7; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/command/office) +"gdM" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"gdP" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/mid) +"gea" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"geg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/maintenance_port) +"geS" = ( +/turf/open_space, +/area/navalis/indoors/industrial/power) +"geY" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"gfb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"gfB" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"gga" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"ggb" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"gge" = ( +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + density = 0; + pixel_y = 32 + }, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/upper_level/corridor) +"ggj" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/bloodtrail, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"ggO" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/med_sci/lower_level/records) +"ggR" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/server_room) +"ghj" = ( +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"ghL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"ghN" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/tool/kitchen/utensil/pknife, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"ghV" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"gib" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"gim" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"giq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 6; + pixel_y = 4; + pixel_x = 8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"giz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"giX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/starboard) +"gjc" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"gjJ" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"gjW" = ( +/obj/effect/decal/hybrisa/road/lines2{ + color = "#5b9068"; + pixel_y = 1 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/kitchen) +"gkf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1; + pixel_x = 3 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"gkl" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"gkr" = ( +/obj/structure/bed/chair/office/light{ + pixel_y = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"gkw" = ( +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"gkN" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/paper_bin/uscm, +/obj/item/tool/pen{ + pixel_x = 4; + pixel_y = 2 + }, +/obj/item/tool/hand_labeler{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/storage/box/bodybags{ + pixel_x = 8; + pixel_y = 8 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/morgue) +"gkV" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/navalis/oob/water) +"glY" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/starboard) +"gmm" = ( +/obj/structure/prop/hybrisa/misc/urinal{ + pixel_y = 32; + pixel_x = -2; + color = "#f5e9db" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/strata, +/area/navalis/indoors/command/bathroom) +"gmt" = ( +/obj/structure/cargo_container/hd/mid, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"gmx" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/charon/below_deck/front) +"gmE" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"gmI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"gne" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"gnf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/plating, +/area/navalis/indoors/xeno_growth) +"gng" = ( +/obj/structure/machinery/computer/med_data, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/firealarm{ + pixel_y = 25; + name = "medical emergency alarm" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"gnn" = ( +/obj/effect/alien/resin/sticky, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"gnF" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"gnH" = ( +/turf/open/floor/prison/darkyellow2/southeast, +/area/navalis/indoors/command/lower_deck/sub_pen) +"goe" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_y = -4; + pixel_x = -6 + }, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/com_ext/upper) +"goi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"goP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/cent_com) +"goW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"goX" = ( +/obj/structure/machinery/computer/telecomms/server{ + layer = 3.4; + pixel_y = 16; + color = "aba39d"; + pixel_x = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5; + pixel_x = -1 + }, +/obj/item/stool{ + pixel_x = -8; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/navalis/indoors/command/tertiary_comms) +"gpl" = ( +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/starboard) +"gpL" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison/cell_stripe, +/area/navalis/outdoors/comm_one) +"gpQ" = ( +/obj/item/bodybag/cryobag{ + pixel_x = 5; + pixel_y = -8 + }, +/turf/open/floor/prison/whitered/west, +/area/navalis/indoors/med_sci/main_floor) +"gpU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"gqw" = ( +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/command/aft_hallway) +"gqE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"grh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/med_sci/lower_level/port) +"grj" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/south, +/area/navalis/indoors/residential/starboard) +"gru" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -9; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"grz" = ( +/obj/structure/machinery/disposal, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/pharmacy) +"grP" = ( +/obj/structure/bed/chair/comfy/lime, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"grQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/industrial/refinery) +"gsa" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"gsd" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/cent_com) +"gsk" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"gsI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"gta" = ( +/turf/open/floor/plating/kutjevo/panelscorched, +/area/navalis/outdoors/landing_zone_1) +"gtv" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"gtC" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 14; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#294daa"; + layer = 2.01; + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"gtF" = ( +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 4; + pixel_x = 32; + density = 0 + }, +/turf/closed/wall/mineral/bone_resin, +/area/navalis/indoors/residential/port) +"gtK" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"gtN" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"gtO" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"gtS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/med_sci/upper_level/corridor) +"gtV" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/corridor) +"gue" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"guz" = ( +/obj/item/lightstick/red/spoke/planted, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"guA" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/prop/almayer/CICmap/pmc{ + faction = "Survivor"; + name = "colony map table" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"guB" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"guF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"guG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop{ + pixel_y = 3; + pixel_x = -6 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"gvo" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"gvt" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargo_shutter_1" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/primary_storage) +"gvv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkpurple2/northwest, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"gvC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"gvL" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/upper_level/entrance) +"gvV" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"gwb" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"gwy" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"gwA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/red/north, +/area/navalis/indoors/med_sci/upper_level/sec) +"gwQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset/full, +/turf/open/floor/hybrisa/metal/bluemetalcorner/west, +/area/navalis/indoors/command/upper_deck/starboard) +"gwR" = ( +/obj/structure/largecrate/supply/generator, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"gwY" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/flight) +"gwZ" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_x = 9; + pixel_y = 17 + }, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -9; + pixel_y = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_x = 5; + pixel_y = -5 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = -30 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/break_room) +"gxh" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"gxk" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform3, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"gxu" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/sidewalkcenter/east, +/area/navalis/indoors/med_sci/lower_level/delivery) +"gxJ" = ( +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"gxM" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/lower) +"gxP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"gxR" = ( +/obj/structure/bed/sofa/vert/white/top, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"gxU" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2; + color = "#343434" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/charon/below_deck/middle) +"gyc" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"gyn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/oob/empty_space) +"gyq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northwest, +/area/navalis/indoors/command/tertiary_comms) +"gyI" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"gyV" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright"; + color = "#d3d3d3" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"gyZ" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"gzd" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light"; + layer = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"gzg" = ( +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/logistic/upper_deck/workshop) +"gzo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"gzG" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/recharger, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/obj/item/storage/belt/gun/m4a3/mod88, +/turf/open/floor/prison/red/east, +/area/navalis/indoors/command/security) +"gzH" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/upper_deck/workshop) +"gzI" = ( +/obj/structure/surface/rack, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"gzY" = ( +/obj/structure/machinery/bot/medbot, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"gAe" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"gAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + invisibility = 101; + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/landing_zone_2) +"gAG" = ( +/turf/closed/wall/mineral/bone_resin{ + opacity = 0 + }, +/area/navalis/oob) +"gAI" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"gAK" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/mid) +"gAU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"gBg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"gBz" = ( +/obj/structure/closet/secure_closet/medical3{ + req_access_txt = "100" + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"gBJ" = ( +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/starboard) +"gBV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"gCs" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"gCx" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"gCI" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/west, +/area/navalis/indoors/residential/cafeteria) +"gCW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"gDz" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/indoors/residential/kitchen) +"gDA" = ( +/obj/structure/bed/chair/office/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/office) +"gDC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"gDD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"gDQ" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#712215" + }, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"gDV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"gDX" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"gEr" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 18; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"gEs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"gEA" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"gEK" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"gEX" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"gEZ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"gFk" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_on{ + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/command/upper_deck/server) +"gFr" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"gFM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"gFP" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"gFS" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/cafeteria) +"gGc" = ( +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"gHu" = ( +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/command/upper_deck/jani) +"gHD" = ( +/obj/effect/decal/hybrisa/road/road_stop, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"gHI" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"gIb" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"gIh" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"gIk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"gIx" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/med_sci/lower_level/starboard) +"gIE" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/maint) +"gJo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/port) +"gJI" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/oob/water/mid) +"gJK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/east, +/area/navalis/indoors/med_sci/lower_level/starboard) +"gKa" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"gKi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"gKR" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent1" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"gKT" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"gKV" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/lower_deck/fuel) +"gLe" = ( +/turf/open_space, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"gLf" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"gLk" = ( +/obj/structure/platform_decoration/stone/strata, +/obj/structure/platform_decoration/stone/strata/north, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"gLr" = ( +/turf/open/floor/prison/darkpurple2/east, +/area/navalis/indoors/command/upper_deck/server) +"gLO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"gLQ" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"gMb" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/oob/water) +"gMd" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/logistic/lower_deck/fore) +"gMB" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"gMZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/landing_zone_2) +"gNk" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 11; + name = "broken attachment cable"; + color = "#353935"; + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"gNl" = ( +/obj/item/shard, +/turf/open/floor/plating/burnt_platingdmg3, +/area/navalis/indoors/med_sci/chemical_store) +"gNP" = ( +/obj/structure/bed/chair/dropship/pilot{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"gNS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 1; + pixel_y = -2; + layer = 2.97 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"gOc" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"gOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"gOt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"gOB" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"gPw" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4" + }, +/turf/open/floor/prison/greenblue, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"gPx" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/turf/open/floor/half_plate/green/west, +/area/navalis/outdoors/exterior/med_ext/upper) +"gPJ" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/primary_storage) +"gPO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case{ + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 8; + pixel_x = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"gPS" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/storage) +"gQa" = ( +/obj/structure/powerloader_wreckage/ft, +/turf/open/floor/mech_bay_recharge_floor, +/area/navalis/indoors/logistic/mech_bay) +"gQe" = ( +/obj/structure/bed/chair/wheelchair{ + dir = 8; + pixel_y = 3; + pixel_x = 11 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"gQX" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"gSb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/flight) +"gSr" = ( +/obj/structure/toilet{ + pixel_y = -9; + dir = 1 + }, +/obj/structure/machinery/shower{ + pixel_y = 9; + dir = 8; + pixel_x = -4; + layer = 4 + }, +/obj/structure/sink{ + pixel_x = -4; + pixel_y = 24 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"gSs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"gSO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25; + pixel_y = 1; + pixel_x = 7 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"gSS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/med_sci/lower_level/records) +"gST" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"gTn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/green_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"gTw" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/office) +"gUa" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + density = 0; + name = "pole signal" + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"gUn" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"gUv" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"gUO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 14 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"gVm" = ( +/turf/open/floor/almayer/redfull2, +/area/navalis/outdoors/landing_zone_1) +"gVz" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/flight) +"gVD" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"gVE" = ( +/turf/closed/wall/hybrisa/research/reinforced, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"gWb" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -8; + pixel_y = 21; + density = 0 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/med_sci/records_room) +"gWg" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 1; + pixel_y = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"gWi" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"gWu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_x = 16; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3; + pixel_x = 16 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"gWS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"gWW" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"gXh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"gXr" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/upper_deck/office) +"gXw" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light"; + layer = 2 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"gXH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"gXJ" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"gXQ" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_x = 1; + pixel_y = 15 + }, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_y = 4 + }, +/obj/structure/machinery/newscaster{ + pixel_x = -30; + pixel_y = 3 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/break_room) +"gYs" = ( +/obj/vehicle/train/cargo/trolley, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/largecrate/supply/generator{ + layer = 4.2; + pixel_y = 6 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"gYv" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"gYL" = ( +/obj/effect/decal/hybrisa/road/lines2{ + color = "#5b9068"; + pixel_y = 1 + }, +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"gZf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"gZi" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"gZs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"gZw" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -13; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"gZB" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/outdoors/landing_zone_2/under) +"haK" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"haU" = ( +/obj/structure/machinery/disposal/delivery, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"hbd" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 15; + pixel_y = 2 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"hbq" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"hbW" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"hch" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + pixel_y = 29 + }, +/obj/structure/machinery/big_computers/computerbrown/computer4, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 12 + }, +/obj/structure/machinery/door_control/navalis_lockdown{ + explo_proof = 1; + needs_power = 0; + id = "industriallockdown"; + name = "Industrial Rig - Lockdown"; + pixel_y = -4; + light_on = 1; + light_range = 3; + light_power = 2 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/command/cent_com) +"hcB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"hcJ" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/corridor) +"hcY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/port) +"hdr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"hdE" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"hei" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"hek" = ( +/obj/structure/prop/hybrisa/supermart/freezer/supermartfreezer2, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"hey" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"heF" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/port) +"heN" = ( +/obj/vehicle/powerloader/jd, +/turf/open/floor/mech_bay_recharge_floor, +/area/navalis/indoors/logistic/mech_bay) +"heU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"hfe" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"hfk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = 22; + pixel_x = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"hfr" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/navalis/oob/water) +"hfz" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open_space, +/area/navalis/outdoors/landing_zone_2/under) +"hfG" = ( +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"hfH" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/north, +/area/navalis/indoors/residential/cafeteria) +"hfV" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"hfZ" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"hgn" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 16; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"hgy" = ( +/obj/structure/filtration/collector_pipes{ + icon_state = "upper_1-b"; + pixel_x = 30; + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"hgJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/east, +/area/navalis/indoors/residential/cafeteria) +"hgL" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"hgW" = ( +/obj/effect/decal/hybrisa/trash, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"hgZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c"; + level = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"hhh" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = 2 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -10 + }, +/obj/item/clothing/glasses/hud/health{ + pixel_x = -10; + pixel_y = 8 + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"hhm" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + icon_state = "grime4" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"hhu" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/refinery) +"hhH" = ( +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob/empty_space) +"hhO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"hil" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/exterior/log_ext) +"hiC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/corsat, +/area/navalis/indoors/xeno_growth/residential) +"hiJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/indoors/logistic) +"hiK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/command/upper_deck/jani) +"hjt" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitormedium_on{ + icon_state = "bluemultimonitorbig_on"; + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 1; + pixel_y = 32 + }, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/command/upper_deck/server) +"hjz" = ( +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"hjT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"hjX" = ( +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"hkH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/northeast, +/area/navalis/indoors/med_sci/lower_level/port) +"hkI" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"hla" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/conduit) +"hli" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/crushed_cup{ + pixel_x = 5; + pixel_y = -5 + }, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/port) +"hlm" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"hlB" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"hlE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob) +"hlF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"hlV" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"hmf" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"hmk" = ( +/obj/structure/bed/chair/comfy/yautja{ + dir = 8; + name = "massage chair"; + desc = "A massage chair, only the best for the first responders."; + pixel_x = 9; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/break_room) +"hmm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"hmq" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"hmv" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/close, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"hmw" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"hmB" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/xeno_growth) +"hmC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/blackwyright, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"hmE" = ( +/obj/structure/prop/hybrisa/supermart/freezer/supermartfreezer3, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"hmK" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/machinery/meter{ + pixel_y = 32; + pixel_x = 29 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 1 + }, +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 14; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"hmO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/pistol/highchance, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"hmW" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"hnd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/med_sci/upper_level/store) +"hnj" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/oob/water) +"hnk" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open_space, +/area/navalis/outdoors/exterior/med_ext) +"hoe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/crowbar/red{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"hog" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10; + pixel_x = -19 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"hom" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/charon/below_deck/middle) +"hou" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"hoK" = ( +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/landing_zone_2) +"hoR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 11; + pixel_y = 3 + }, +/obj/item/storage/fancy/cigarettes/blackpack{ + pixel_y = 4; + pixel_x = -9 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"hpv" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"hqt" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"hqv" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"hqM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"hra" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"hrw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"hrN" = ( +/obj/item/tool/pen/blue{ + pixel_x = -1; + pixel_y = -4 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"hrQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/oft_duty_room) +"hrS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/logistic/upper_deck/walkway) +"hrV" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"hrY" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -2 + }, +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"hsb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/janitorialcart, +/obj/item/tool/mop{ + pixel_x = 16 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"hsd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"hsk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/port) +"hsx" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/outdoors/exterior/com_ext/upper) +"hsG" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"htf" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"htE" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"htT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/starboard) +"huy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"huQ" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "windsock" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"huT" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 18; + pixel_x = -4 + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 6; + pixel_x = -4 + }, +/turf/open/floor/plating/platingdmg3, +/area/navalis/outdoors/landing_zone_2) +"huU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"hva" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"hvp" = ( +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 4; + pixel_x = 32; + density = 0 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/science_lower_entrance) +"hvy" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"hvz" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/oft_duty_room) +"hvD" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"hvS" = ( +/obj/structure/prop/resin_prop{ + icon_state = "pscrubber:0" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/xeno_growth) +"hwk" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright"; + color = "#d3d3d3" + }, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/chemical_store) +"hwl" = ( +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/refinery) +"hwD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"hwS" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/upper_deck/port) +"hxc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"hxl" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/meeting_hall) +"hxm" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/ramptop, +/area/navalis/outdoors/landing_zone_2) +"hxv" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/effect/landmark/objective_landmark/science, +/obj/item/tool/soap{ + pixel_x = 10; + pixel_y = 8 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"hyz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"hyE" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"hyZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"hze" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"hzw" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/med_sci/lower_level/starboard) +"hzy" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/strata_outpost/reinforced{ + name = "PSV Charon" + }, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"hzD" = ( +/obj/effect/landmark/structure_spawner/xvx_hive/xeno_core, +/obj/effect/landmark/xeno_hive_spawn, +/obj/effect/landmark/ert_spawns/groundside_xeno, +/turf/open/floor/almayer/dark_sterile2, +/area/navalis/indoors/residential/landing_pad) +"hzG" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"hzT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"hzV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"hzY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"hAb" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"hAg" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"hAl" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"hAv" = ( +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"hAM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"hBr" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/walkway) +"hBx" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/med_sci/lower_level/starboard) +"hBH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"hCj" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -28 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"hCk" = ( +/turf/closed/wall/strata_outpost/reinforced/hull{ + name = "PSV Charon" + }, +/area/navalis/oob) +"hCr" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"hCB" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"hCD" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/industrial/power) +"hCK" = ( +/turf/open/floor/prison/darkbrowncorners2/west, +/area/navalis/indoors/logistic/primary_storage) +"hDy" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"hDM" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"hDS" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"hEg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + pixel_y = 11; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -14; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = 8; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"hEz" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body, +/obj/effect/decal/cleanable/blood/xeno, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"hEA" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"hEC" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/book/manual/ripley_build_and_repair{ + pixel_y = 2; + pixel_x = 6 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 3; + pixel_x = -9 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"hFu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/floodlights, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"hGe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 10; + pixel_y = 21 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/oob/powered) +"hGn" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/outdoors/landing_zone_2/under) +"hGp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 9 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"hGF" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/storage) +"hHf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/oob) +"hHM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -14 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"hIp" = ( +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/command/lower_deck/port) +"hIt" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"hIu" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"hIw" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"hIx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small{ + pixel_y = 15; + pixel_x = 3 + }, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"hII" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/kitchen) +"hIN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"hJb" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/port) +"hJf" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/largecrate/empty, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"hKm" = ( +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/command/upper_deck/server) +"hKG" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"hKH" = ( +/obj/structure/platform_decoration/metal, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"hLj" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"hLn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/northwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"hLp" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"hLs" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"hLv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"hLE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"hLJ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"hLO" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/outdoors/landing_zone_1/under) +"hMd" = ( +/obj/structure/prop/static_tank/water, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"hME" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/storage/firstaid/surgical{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"hMF" = ( +/obj/structure/cargo_container/watatsumi/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"hMK" = ( +/obj/structure/sign/safety/hazard{ + pixel_y = 32 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 13; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"hMO" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" + }, +/area/navalis/oob/powered) +"hMW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"hNi" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"hNk" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = -7; + pixel_y = 3 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"hNl" = ( +/turf/open/floor/corsat/brown/southeast, +/area/navalis/indoors/industrial/mining) +"hNu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"hNL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"hPv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/east, +/area/navalis/indoors/residential/cafeteria) +"hPW" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 13 + }, +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/meeting_hall) +"hPY" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/log_ext/upper) +"hQe" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"hQh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"hQl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"hQn" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"hQM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis/dig, +/area/navalis/oob/empty_space) +"hQT" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"hRE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"hRJ" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"hRK" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"hSc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"hSk" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"hSm" = ( +/obj/structure/closet/crate, +/obj/item/tool/carpenters_hammer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"hSo" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"hSG" = ( +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/residential/kitchen) +"hTn" = ( +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/chemical_store) +"hTv" = ( +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"hTD" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"hTO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"hTP" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel2" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"hTQ" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"hTU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"hUx" = ( +/obj/structure/bed/chair/comfy/hybrisa/blue{ + dir = 1; + pixel_y = 9 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"hUY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/workshop) +"hVb" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"hVj" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"hVp" = ( +/obj/structure/prop/resin_prop{ + dir = 8; + icon_state = "chair" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"hVq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/recharger{ + pixel_x = -3; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/blue, +/area/navalis/indoors/command/cent_com) +"hVC" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"hVN" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_x = -3; + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"hVQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"hVX" = ( +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"hWg" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"hWt" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6; + pixel_x = 16 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5; + pixel_x = 16 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"hWD" = ( +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/middle) +"hWS" = ( +/obj/structure/bed/sofa/south/white/right, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"hWZ" = ( +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/command/lower_deck/starboard) +"hXf" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"hXm" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -7; + pixel_y = 9 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"hXu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/barrel/purewhite, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"hXw" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"hXy" = ( +/obj/structure/machinery/light/spot{ + dir = 1; + pixel_y = 24 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"hYi" = ( +/obj/structure/platform/metal/strata/north, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"hZb" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -9; + pixel_y = 21 + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 9; + pixel_y = 18 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/logistic/upper_deck/walkway) +"hZx" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"iaG" = ( +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"iaJ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 6 + }, +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/pipes/pipe4{ + dir = 1 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"iaR" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"iaX" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/corsat/plate, +/area/navalis/oob) +"ibm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/flight) +"icc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"icp" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"icw" = ( +/turf/open_space, +/area/navalis/indoors/industrial/accessway) +"icz" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/computer/communications, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"icG" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/indoors/logistic/upper_deck/conduit) +"icY" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + pixel_y = -31 + }, +/turf/open/floor/prison/greenblue/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"idw" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + layer = 3.9 + }, +/turf/open/floor/prison/darkpurple2/northeast, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"idO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"idQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"iea" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 8; + pixel_y = -15; + layer = 2.97 + }, +/obj/item/device/radio{ + pixel_y = 8; + pixel_x = -8 + }, +/obj/item/device/binoculars{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"iej" = ( +/obj/item/tool/crowbar/red{ + pixel_x = -4; + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"ien" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"iex" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"ieJ" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"ieP" = ( +/obj/structure/ore_box{ + layer = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"ifO" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"igm" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/east, +/area/navalis/oob/powered) +"igq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"igs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"igE" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/generic{ + color = "#5d524b"; + alpha = 155 + }, +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 18; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 6 + }, +/obj/structure/platform/metal/strata/east, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/logistic/primary_storage) +"igM" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"igN" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/structure/reagent_dispensers/beerkeg, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"iho" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ihw" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"ihx" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/pharmacy) +"ihH" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"ihW" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"iit" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 1 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"ije" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/sec) +"ijl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ijq" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/platform/metal/strata/north{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata/east{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"ijB" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy18" + }, +/area/navalis/oob/water) +"ijN" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/turf/open/floor/half_plate/dark_yellow/east, +/area/navalis/indoors/industrial/mining) +"ijZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster/kellandmining{ + pixel_y = 32 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -2; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetalcorner, +/area/navalis/indoors/command/upper_deck/port) +"ikk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2"; + pixel_x = -9 + }, +/turf/open/floor/prison/floorscorched2, +/area/navalis/indoors/command/lower_deck/starboard) +"ikm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"iko" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/upper_deck/office) +"ikK" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"ikM" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"ikT" = ( +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/entrance) +"ilx" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/entrance) +"ilH" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/server_room) +"ilO" = ( +/obj/effect/spawner/random/toolbox, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/command/upper_deck/server) +"ilQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"ilX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/server_room) +"imn" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"imp" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 10; + pixel_x = -5 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"imQ" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/residential/accessway) +"imZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -9; + pixel_y = 10 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"inF" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"inH" = ( +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/office) +"inV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/command/lower_deck/starboard) +"ioj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 10 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"iou" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/xeno_growth/residential) +"ioy" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/corridor) +"ioD" = ( +/obj/item/prop/colony/usedbandage{ + dir = 4; + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/main_floor) +"ipo" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ipv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"ipE" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"ipH" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ipN" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/walkway) +"ipY" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/east, +/area/navalis/indoors/residential/accessway) +"iqV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"irH" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitormedium_on{ + dir = 1; + light_color = "#00da64"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/computerblack/computer2{ + pixel_x = -6 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 9; + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"irN" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + dir = 1; + light_color = "#00da64"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"irQ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"isi" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"isl" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/oob) +"isx" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cans/beer, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"isz" = ( +/obj/structure/morgue, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"isN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"isU" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ite" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"itN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble9{ + pixel_x = -1 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open/floor/corsat/plate, +/area/navalis/oob/empty_space) +"itV" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + dir = 4; + light_color = "#00da64"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/server_room) +"itW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/landing_zone_2) +"iuf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/command/lower_deck/port) +"iuF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/logistic/upper_deck/workshop) +"iuH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ivy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/storage) +"ivQ" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/machinery/space_heater/radiator/red{ + pixel_y = 16 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"ivS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/starboard) +"iwj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/oob/empty_space) +"iwF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/prison/greenblue/north, +/area/navalis/indoors/charon/below_deck/front) +"iwN" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"iwS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"iwV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -28 + }, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"iwY" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/lower_deck/port) +"ixb" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"ixc" = ( +/obj/structure/prop/hybrisa/misc/floorprops/floorglass3, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/indoors/logistic/upper_deck/conduit) +"ixA" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"ixD" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"iyp" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31 + }, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"iyD" = ( +/obj/structure/bed/chair/comfy/blue{ + pixel_y = 9; + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"iyO" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"izg" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/med_ext/upper) +"izk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"izu" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/structure/largecrate/empty/case, +/obj/structure/largecrate/random/mini/med{ + pixel_x = 3; + pixel_y = 5 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"izw" = ( +/obj/structure/stairs/multiz/down, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"izA" = ( +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"izE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/morgue) +"izG" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"izT" = ( +/turf/open/floor/darkblue2/north, +/area/navalis/indoors/residential/accessway) +"iAe" = ( +/turf/open/floor/hybrisa/tile/greencorner_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"iAf" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"iAr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"iAt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32; + pixel_x = 16 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"iAA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/flight) +"iBh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = 11; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"iBv" = ( +/obj/structure/largecrate/random{ + pixel_y = 27; + pixel_x = -7 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"iCb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/water_cooler{ + density = 0; + pixel_x = -7; + pixel_y = 16; + layer = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"iCt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 5; + pixel_y = 6; + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/upper_deck/office) +"iDl" = ( +/obj/structure/machinery/vending/coffee, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"iDw" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"iDD" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"iEs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"iEQ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"iEU" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/office) +"iEX" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy14" + }, +/area/navalis/oob/water) +"iFw" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/platform/metal/strata/north, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"iFC" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/lower) +"iFS" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"iGb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/logistic/lower_deck/maint) +"iGd" = ( +/obj/structure/bed/chair{ + dir = 1; + layer = 2; + pixel_y = 2; + pixel_x = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/conferance) +"iGR" = ( +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"iGU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/toolbox{ + layer = 4 + }, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/command/lower_deck/starboard) +"iHd" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"iHf" = ( +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/upper_level/morgue) +"iHj" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/device/assembly/prox_sensor, +/obj/item/device/assembly/infra{ + pixel_y = 5; + pixel_x = 11 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"iHo" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 2.6 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"iHs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"iHy" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"iHC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/starboard) +"iIr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"iID" = ( +/obj/vehicle/train/cargo/engine, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"iIQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"iKe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"iKi" = ( +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/upper_level/entrance) +"iKp" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/navalis/oob/water) +"iKu" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_y = 5; + pixel_x = -6 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"iKw" = ( +/obj/structure/flora/pottedplant{ + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"iKJ" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/power/terminal{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"iLe" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/command/lower_deck/starboard) +"iLm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/port) +"iLv" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/glass/beaker/bluespace{ + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/pharmacy) +"iLw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = 3; + pixel_y = 10 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"iLx" = ( +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"iLC" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"iMj" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/mining) +"iMm" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1; + pixel_y = 12; + pixel_x = 10 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"iMs" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior/med_ext) +"iMC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = -17; + pixel_y = 13 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkyellow2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"iMH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"iMJ" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"iMM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"iMP" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"iNk" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"iND" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"iNQ" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"iOc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"iOv" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"iOA" = ( +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"iOL" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"iOP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + invisibility = 101; + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/landing_zone_2) +"iOT" = ( +/obj/effect/spawner/random/powercell, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"iPw" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"iPJ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -30; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"iPM" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light"; + layer = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"iPS" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/starboard) +"iQm" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/chemical_store) +"iQx" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/prison/darkpurple2/east, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"iQI" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"iRo" = ( +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/entrance) +"iRt" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southeast, +/area/navalis/indoors/command/office) +"iRI" = ( +/obj/structure/platform/metal/strata/north{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/mid) +"iRP" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"iRR" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"iSa" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"iSi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + dir = 1; + light_color = "#00da64"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/computerbrown/computer4, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/logistic/lower_deck/maint) +"iSj" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/red/west, +/area/navalis/indoors/command/security) +"iSk" = ( +/turf/open/floor/darkgreen2, +/area/navalis/indoors/residential/accessway) +"iSK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/secure, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"iSN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/indoors/command/maintenance_port) +"iSP" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"iST" = ( +/obj/structure/machinery/big_computers/messaging_server/white, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"iTk" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 16 + }, +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/obj/item/bedsheet/colorable{ + layer = 4.1; + color = "#856f63" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"iTl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4{ + layer = 2.97 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"iTx" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"iTE" = ( +/obj/structure/largecrate/empty, +/obj/item/tool/crowbar{ + pixel_x = 2; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"iTV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/port) +"iTX" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"iUg" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"iUh" = ( +/obj/structure/bed/hybrisa/dingy, +/obj/item/bedsheet/colorable, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"iUo" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -28 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"iUs" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"iUw" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/colony_floodlight_switch{ + pixel_y = -30 + }, +/obj/item/clothing/gloves/marine/veteran/insulated, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"iUR" = ( +/obj/effect/decal/cleanable/vomit{ + pixel_x = -7; + pixel_y = -6 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"iVi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/corridor) +"iVt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"iVC" = ( +/obj/structure/stairs/multiz/up, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"iVY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"iWI" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/starboard) +"iWX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/disposal/delivery, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"iXi" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_y = -5; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"iXj" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/comp_open{ + pixel_y = 5 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/cent_com) +"iXq" = ( +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"iXw" = ( +/obj/structure/prop/resin_prop{ + dir = 8; + icon_state = "chair" + }, +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"iXG" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"iYi" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"iYF" = ( +/obj/structure/prop/invuln/dense/excavator/gray{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"iYJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/pills/highchance{ + pixel_y = -5; + pixel_x = -6 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"iYS" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_y = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"iYT" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/walkway) +"iZi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 8; + layer = 2.7 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"iZl" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = 32 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/server_room) +"iZI" = ( +/obj/structure/closet/firecloset, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"jao" = ( +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/aft_hallway) +"jaM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sign/safety/coffee{ + pixel_x = 32; + pixel_y = 8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"jaN" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"jaU" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"jbn" = ( +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/port) +"jbo" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/west, +/area/navalis/oob/powered) +"jbs" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"jbK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/pharmacy) +"jbR" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/prison/greenblue/northeast, +/area/navalis/indoors/charon/below_deck/front) +"jbZ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/server_equipment/laptop, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"jch" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"jcz" = ( +/obj/structure/flora/pottedplant{ + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"jcA" = ( +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"jcT" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"jcX" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"jcZ" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/logistic/upper_deck/workshop) +"jda" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_y = 16; + pixel_x = -6 + }, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/com_ext/upper) +"jdd" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/command/lower_deck/port) +"jdf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"jdy" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/bed/bedroll, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"jdA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"jdE" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"jdO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/chemical_store) +"jdV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"jeL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/obj/effect/alien/weeds, +/turf/open/floor/darkpurple2/north, +/area/navalis/oob) +"jeV" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/meeting_hall) +"jfg" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"jfo" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy3" + }, +/area/navalis/oob/powered) +"jfH" = ( +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/refinery) +"jfW" = ( +/obj/structure/barricade/handrail/medical{ + dir = 8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = -30; + name = "medical emergency alarm" + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"jgp" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 2 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"jgC" = ( +/turf/open/floor/prison/greenblue/east, +/area/navalis/indoors/charon/below_deck/front) +"jgG" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"jgN" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"jgT" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_y = -3; + pixel_x = 7 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southeast, +/area/navalis/indoors/command/office) +"jgW" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/reagent_container/spray/cleaner, +/turf/open/floor/almayer/black2, +/area/navalis/indoors/command/upper_deck/jani) +"jhu" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/xeno_growth/residential) +"jhC" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/navalis/indoors/residential/starboard) +"jhJ" = ( +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/industrial/refinery) +"jhL" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/computerbrown/computer5, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/command/cent_com) +"jhN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"jiH" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6; + pixel_x = -12 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/east, +/area/navalis/oob/powered) +"jiJ" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"jiK" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"jiO" = ( +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -15; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"jiT" = ( +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"jja" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"jji" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"jjj" = ( +/obj/structure/machinery/light{ + dir = 8; + pixel_y = -13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_magazine/smg/nailgun{ + current_rounds = 0 + }, +/obj/structure/largecrate/empty/case{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"jjl" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"jjs" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/navalis/indoors/residential/port) +"jjB" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"jjD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/spawner/random/pills/lowchance, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"jjJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/upper_deck/office) +"jkb" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/upper_deck/walkway) +"jkh" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"jkm" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"jko" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy23" + }, +/area/navalis/oob/water) +"jku" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis/dig, +/area/navalis/oob/powered) +"jln" = ( +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"jlq" = ( +/obj/item/prop/colony/canister{ + pixel_x = 14; + pixel_y = 18 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"jlw" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"jnF" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"jod" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"jof" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact"; + pixel_y = 3; + pixel_x = 3 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"joh" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"joo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/canister/empty, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"joM" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/outdoors/exterior/com_ext/upper) +"jpm" = ( +/obj/structure/machinery/meter{ + pixel_y = 3; + pixel_x = 30 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitered/northeast, +/area/navalis/indoors/med_sci/storage) +"jpC" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"jpD" = ( +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"jpN" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/glass/minitank{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/reagent_container/spray/cleaner, +/obj/item/device/healthanalyzer, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkish, +/area/navalis/indoors/med_sci/upper_level/store) +"jpT" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"jpY" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 4; + pixel_y = 16; + pixel_x = -7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/command/director_office) +"jql" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"jqU" = ( +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_y = 36 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"jre" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/prop/hybrisa/misc/fire/fire1{ + layer = 7; + pixel_y = -7; + light_color = "#FF7700"; + pixel_x = -33; + icon_state = "zfire_smoke2" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/damaged1, +/area/navalis/indoors/command/tertiary_comms) +"jrp" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + dir = 1; + autoname = 1; + name = "\improper Airlock"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/conduit) +"jrt" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"jry" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"jrG" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/port) +"jrW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/sign/poster/safety{ + pixel_x = -28; + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"jsi" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"jsK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/cargo/trolley, +/obj/structure/largecrate/random/barrel/red{ + layer = 4.2; + pixel_y = 5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"jtG" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/meeting_hall) +"jtY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case, +/obj/structure/largecrate/random/mini{ + pixel_y = 8; + pixel_x = -6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"jue" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"juj" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 4; + icon_state = "trash_11" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"juo" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"juz" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"juA" = ( +/turf/open/floor/half_plate/dark_yellow/north, +/area/navalis/outdoors/landing_zone_2) +"juB" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/command/lower_deck/port) +"jvd" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"jvy" = ( +/obj/structure/surface/rack, +/obj/item/tool/surgery/bonegel/empty, +/obj/item/tool/surgery/bonegel/empty{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/tool/surgery/bonegel{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkish, +/area/navalis/indoors/med_sci/upper_level/store) +"jwe" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"jwA" = ( +/obj/structure/bed/chair/office/light{ + dir = 4; + pixel_x = 6; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"jwI" = ( +/turf/closed/wall/strata_outpost/reinforced{ + name = "PSV Charon" + }, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"jxH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/logistic/lower_deck/maint) +"jxL" = ( +/obj/structure/prop/hybrisa/misc/trash/green{ + pixel_x = -2 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/command_kitchen) +"jyc" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"jyk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/device/multitool, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"jyl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/industrial/accessway) +"jyI" = ( +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"jyM" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/autoname{ + name = "\improper Airlock" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/walkway) +"jzN" = ( +/turf/open/floor/corsat/brown, +/area/navalis/indoors/industrial/refinery) +"jAf" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/indoors/industrial/accessway) +"jAD" = ( +/turf/open/floor/prison/whitegreencorner/north, +/area/navalis/indoors/med_sci/main_floor) +"jAE" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/outdoors/exterior/med_ext/upper) +"jAN" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"jAO" = ( +/obj/effect/decal/cleanable/blood/xeno{ + pixel_x = 12; + pixel_y = 12 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"jBf" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/portadialysis, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 30; + pixel_x = -30 + }, +/turf/open/floor/prison/whitered/west, +/area/navalis/indoors/med_sci/storage) +"jBi" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -9 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"jBz" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"jBH" = ( +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"jBJ" = ( +/obj/structure/machinery/cm_vending/sorted/medical/no_access, +/obj/structure/medical_supply_link/green{ + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/storage) +"jCl" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"jCo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/starboard_hallway) +"jCq" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/closet/fireaxecabinet{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/command_kitchen) +"jCt" = ( +/obj/structure/sink{ + pixel_x = 4; + pixel_y = 24 + }, +/obj/structure/toilet{ + pixel_y = -9; + dir = 1; + pixel_x = -1 + }, +/obj/structure/machinery/shower{ + pixel_y = 6; + dir = 4; + pixel_x = -1; + layer = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"jCu" = ( +/obj/structure/bed/sofa/south/white/left, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"jCI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"jCJ" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"jDj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"jDn" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"jDu" = ( +/obj/structure/sink{ + dir = 4; + pixel_x = 11 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + color = "#d3d3d3" + }, +/obj/structure/sign/safety/biolab{ + pixel_x = 35; + pixel_y = -28 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/chemical_store) +"jEk" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"jEz" = ( +/obj/structure/toilet{ + dir = 8; + pixel_y = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"jEI" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"jEP" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"jET" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"jEW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/medicine, +/obj/structure/largecrate/random/mini/med{ + pixel_y = 11 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"jFb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/pipes/standard/simple/visible/purple, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"jFk" = ( +/obj/structure/bed/chair, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"jFl" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/logistic/primary_storage) +"jFo" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/main_floor) +"jFF" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 6 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"jGm" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/server) +"jGq" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/starboard) +"jGy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"jGz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6; + pixel_x = -6 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/rebreather{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/stack/cable_coil/cut{ + pixel_x = 5 + }, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"jGW" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/east, +/area/navalis/indoors/residential/starboard) +"jHf" = ( +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketoranges, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"jHi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"jHm" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/prop/almayer/handheld1{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"jHs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/cow, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/workshop) +"jHz" = ( +/obj/structure/machinery/iv_drip, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/surg_one) +"jIw" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent2" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"jIN" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"jJb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/med_sci/lower_level/starboard) +"jJl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"jJM" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"jJN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/yellow, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"jJU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/residential/cafeteria) +"jJV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/maintenance_port) +"jKx" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargo_shutter_3" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/primary_storage) +"jKB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/comm_one) +"jKK" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/office) +"jKT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/landing_zone_2) +"jKV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"jKW" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_crate_alt2"; + layer = 3.2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"jKY" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/reagent_container/food/snacks/packaged_burger{ + pixel_y = -1; + pixel_x = -2 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"jKZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/north, +/area/navalis/indoors/med_sci/lower_level/port) +"jLc" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/conferance) +"jLR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/industrial/mining) +"jMs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/industrial/power) +"jMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/landing_zone_2) +"jMA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/com_ext/upper) +"jME" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/xeno_growth/residential) +"jMG" = ( +/turf/open/floor/prison/darkyellow2/northeast, +/area/navalis/indoors/command/lower_deck/sub_pen) +"jMV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"jNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"jNf" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"jNo" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/flight) +"jNC" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/aft_hallway) +"jNQ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"jOh" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyright, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"jOo" = ( +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"jOr" = ( +/obj/structure/closet/crate, +/obj/item/roller/bedroll, +/obj/item/reagent_container/food/snacks/twobread, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"jOx" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open_space, +/area/navalis/oob/empty_space) +"jOz" = ( +/obj/structure/largecrate/empty, +/obj/structure/largecrate/random/mini/chest/b{ + pixel_x = 3; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"jPC" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"jPN" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"jQe" = ( +/obj/structure/machinery/photocopier/wyphotocopier, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"jQJ" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/morgue) +"jRd" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/workshop) +"jRq" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/cargo_container/kelland/right, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"jRu" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/stairs/perspective{ + dir = 5; + icon_state = "p_stair_full" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"jRV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/lower_deck/port) +"jSf" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"jSq" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/med_sci/lower_level/port) +"jSs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + layer = 3.25 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"jSU" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"jTs" = ( +/obj/structure/prop/vehicles/crawler, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"jTC" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"jTJ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/indoors/charon/below_deck/front) +"jTX" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/effect/spawner/random/technology_scanner{ + pixel_x = -7; + pixel_y = 4 + }, +/turf/open/floor/prison/bluefull, +/area/navalis/indoors/med_sci/upper_level/flight) +"jUb" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/empty_space) +"jUc" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"jUO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out" + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison, +/area/navalis/indoors/command/tertiary_comms) +"jUR" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"jUS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"jUU" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/walkway) +"jUW" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy15" + }, +/area/navalis/oob/water) +"jUY" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 1 + }, +/obj/effect/landmark/yautja_teleport, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"jVm" = ( +/obj/structure/machinery/big_computers/computerbrown/computer2{ + pixel_x = -10; + pixel_y = 15 + }, +/obj/structure/machinery/computer/telecomms/traffic{ + pixel_y = 16; + pixel_x = 11; + color = "aba39d" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"jVy" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"jVM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"jVQ" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + pixel_y = 15; + pixel_x = 17; + density = 0 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"jWc" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"jWf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"jWM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/navalis/oob/empty_space) +"jXh" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/stack/rods{ + pixel_y = -15; + pixel_x = 2 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"jXq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob) +"jXz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"jXI" = ( +/obj/item/stack/sheet/wood{ + pixel_y = -4; + pixel_x = 5 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"jXK" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 32 + }, +/obj/vehicle/train/cargo/engine, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"jXL" = ( +/obj/structure/machinery/vending/cola{ + pixel_y = 16 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"jXP" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/outdoors/exterior/med_ext/upper) +"jXY" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"jYk" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/medium_stack, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"jYP" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"jZc" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"jZh" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"jZj" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"jZp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications/simple{ + dir = 8; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, +/area/navalis/indoors/command/office) +"jZB" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 4; + pixel_y = 2 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/cent_com) +"jZU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/prison/cell_stripe/north, +/area/navalis/indoors/industrial/mining) +"kau" = ( +/obj/structure/largecrate/empty/case/double{ + layer = 2.9 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/corridor) +"kaJ" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/blood/gibs/core, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"kaL" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"kaU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"kbb" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 1 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"kbd" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"kbl" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"kbE" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/cafeteria) +"kci" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"kcL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12; + pixel_x = 7 + }, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/office) +"kcU" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"kcW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kdv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/port) +"kdC" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"keo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"keC" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"keN" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"keT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/meeting_hall) +"kfq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"kfD" = ( +/obj/structure/machinery/door_control{ + id = "cargo_shutter_1"; + pixel_y = -28; + name = "Cargo Shutter" + }, +/turf/open/floor/prison/darkbrowncorners2, +/area/navalis/indoors/logistic/primary_storage) +"kfG" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"kgx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/port) +"kgD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 6; + pixel_y = -7 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/logistic/lower_deck/port) +"kgI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"khd" = ( +/obj/structure/prop/hybrisa/airport/refuelinghose{ + pixel_x = -12; + pixel_y = -15; + dir = 1; + layer = 3.1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"kho" = ( +/obj/effect/decal/cleanable/vomit{ + pixel_x = -7; + pixel_y = -6 + }, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/med_sci/upper_level/morgue) +"khB" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis/dig, +/area/navalis/oob/powered) +"khX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"kie" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 1 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"kim" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/command/office) +"kis" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/storage) +"kiA" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"kiZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/entrance) +"kjf" = ( +/obj/structure/sign/poster/hunk{ + pixel_x = 4; + pixel_y = 32 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/navalis/indoors/logistic/mech_bay) +"kjl" = ( +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"kjA" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"kke" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"kkk" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kkB" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/item/trash/waffles, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/port) +"kkC" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 15; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + pixel_y = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"kkG" = ( +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"kkQ" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/port) +"kkR" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/head/surgery/blue, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2; + pixel_y = -32 + }, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/surg_one) +"kli" = ( +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/med_sci/upper_level/sec) +"klk" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"kll" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"klF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/prop/alien/hugger, +/turf/open/floor/darkred2/east, +/area/navalis/indoors/residential/port) +"klG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_y = -10; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"klN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"klX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"kmc" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"kmr" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" + }, +/area/navalis/oob/powered) +"kmW" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/starboard) +"kmY" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"knd" = ( +/turf/open/floor/darkblue2/west, +/area/navalis/indoors/residential/accessway) +"kns" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"knD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -7; + pixel_y = 12; + layer = 3.6 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/med_sci/lower_level/records) +"knI" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"knM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"koM" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/machinery/light, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"koS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"kpo" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"kpt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"kpw" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"kpy" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = -1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/conduit) +"kpL" = ( +/obj/structure/platform/metal/strata/north{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"kpY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"kqq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/prison/cell_stripe, +/area/navalis/indoors/xeno_growth/residential) +"kqt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"kqG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"kqW" = ( +/obj/structure/filtration/machine_64x96/filtration_machine_a/alt, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"krp" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2, +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"kru" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 1; + pixel_y = -6 + }, +/obj/item/tool/warning_cone{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/chemical_store) +"krK" = ( +/obj/structure/machinery/big_computers/messaging_server/brown{ + dir = 1 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"krP" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ksj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"kso" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kst" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/walkway) +"ksD" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 22; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"ksM" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"ksR" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"ksZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"ktq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 10; + pixel_y = -2 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"ktx" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/plating, +/area/navalis/indoors/charon/below_deck/front) +"kuk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/main_floor) +"kut" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"kuu" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"kuy" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"kuC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"kve" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/north, +/area/navalis/indoors/residential/cafeteria) +"kvm" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege, +/area/navalis/indoors/residential/accessway) +"kvq" = ( +/obj/item/stack/sheet/wood{ + pixel_x = 1; + pixel_y = 6 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/port_hallway) +"kvy" = ( +/obj/item/tool/surgery/scalpel{ + pixel_x = 8; + pixel_y = -9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/upper_level/morgue) +"kvJ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"kvK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"kwe" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16; + layer = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"kwy" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"kwC" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"kwF" = ( +/turf/open/floor/hybrisa/metal/bluemetalcorner/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"kwH" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"kwZ" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"kxV" = ( +/obj/structure/bed/chair{ + pixel_y = -1; + dir = 8; + pixel_x = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"kyt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"kyu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"kyA" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner, +/area/navalis/indoors/industrial/power) +"kyZ" = ( +/obj/structure/cargo_container/uscm/right, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"kzc" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/flight) +"kzg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"kzp" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/residential/accessway) +"kzv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/landing_zone_2) +"kzw" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"kzx" = ( +/obj/structure/bed/chair, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"kzA" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/item/tool/warning_cone{ + pixel_x = -16; + pixel_y = 17 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"kzN" = ( +/obj/item/stack/rods{ + pixel_y = -15; + pixel_x = 2 + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/port_hallway) +"kAa" = ( +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"kAA" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"kAC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkpurple2, +/area/navalis/indoors/residential/cafeteria) +"kAE" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/command_kitchen) +"kAL" = ( +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"kAP" = ( +/obj/structure/stairs/multiz/down, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"kAU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble12{ + dir = 1; + pixel_x = -30; + pixel_y = 18; + layer = 4.2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"kBh" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/turf/open/floor/corsat/sterileplate, +/area/navalis/indoors/industrial/mining) +"kBq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 13; + pixel_x = -6 + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"kBr" = ( +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"kBt" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"kBw" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"kBz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"kBD" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"kBI" = ( +/obj/structure/coatrack{ + pixel_y = 17; + pixel_x = -9; + layer = 3.1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"kBN" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"kBY" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"kCg" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/machinery/vending/coffee, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"kCD" = ( +/turf/open/floor/prison/whitered/northwest, +/area/navalis/indoors/med_sci/storage) +"kCS" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 6; + layer = 2.1 + }, +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#0b687f"; + pixel_y = -8; + pixel_x = 3; + name = "rubber mat" + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"kDb" = ( +/obj/structure/platform_decoration/metal, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"kDB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/main_floor) +"kDK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"kDP" = ( +/obj/structure/largecrate/random/barrel/medical{ + pixel_y = 12 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"kDS" = ( +/obj/effect/decal/hybrisa/trash{ + dir = 8; + icon_state = "trash_11" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"kDZ" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"kEf" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"kEg" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty2, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"kEm" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -10; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"kEy" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4 + }, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"kEL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"kFG" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"kFI" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"kGi" = ( +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/starboard) +"kGt" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"kGI" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"kGR" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + alpha = 220; + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"kGT" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"kGY" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"kHe" = ( +/obj/structure/reagent_dispensers/water_cooler/stacks{ + density = 0; + pixel_y = 4; + pixel_x = -12; + layer = 4 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"kHg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4; + pixel_x = -6; + pixel_y = 6 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/chemical_store) +"kHP" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/wrench, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/logistic/workshop) +"kHU" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"kIa" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"kIe" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"kIk" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"kIl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"kIp" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"kIv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kIy" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"kIz" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 2.6 + }, +/obj/structure/platform/metal/strata{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"kIF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10; + pixel_x = 18 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"kIK" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"kIQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/logistic/lower_deck/port) +"kJb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"kJe" = ( +/obj/effect/decal/remains/robot, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"kJj" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"kJs" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"kJE" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyleft, +/obj/structure/cargo_container/hybrisa/containersextended/greywyleft, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"kJF" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"kJL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"kKj" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"kKq" = ( +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/refinery) +"kKQ" = ( +/obj/structure/prop/hybrisa/airport/dropshipenginedamage{ + light_on = 1; + light_power = 5; + light_range = 6; + pixel_y = -13; + pixel_x = -24 + }, +/turf/closed/shuttle/ert{ + icon_state = "wy8" + }, +/area/navalis/oob/water) +"kKR" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/indoors/industrial/power) +"kLU" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floorscorched2, +/area/navalis/indoors/command/tertiary_comms) +"kLV" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -9 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"kLW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"kMm" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"kMQ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"kNc" = ( +/obj/structure/prop/hybrisa/misc/elevator_button{ + pixel_y = 3; + pixel_x = -2 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/primary_storage) +"kNl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"kNu" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"kNG" = ( +/obj/structure/stairs/multiz/up, +/obj/structure/platform/metal/strata/west, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"kNL" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"kOj" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"kOx" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/east, +/area/navalis/indoors/residential/starboard) +"kOz" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/structure/machinery/door/firedoor/border_only/almayer, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"kOF" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + dir = 4 + }, +/turf/closed/wall/solaris/reinforced/hull, +/area/navalis/oob/powered) +"kOV" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/circular_saw{ + pixel_y = 20 + }, +/obj/item/tool/surgery/surgical_line{ + pixel_x = 4; + pixel_y = -7 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/surg_two) +"kPb" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/outdoors/landing_zone_2/under) +"kPv" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"kQa" = ( +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"kQk" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/residential/accessway) +"kQl" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"kQt" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"kQv" = ( +/obj/structure/platform/metal/stair_cut/strata_right, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"kQW" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"kRf" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/foyer) +"kRG" = ( +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/command/lower_deck/starboard) +"kRI" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"kRP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + pixel_y = -3; + pixel_x = 1 + }, +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + pixel_x = 32; + alpha = 220 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"kRQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/logistic/upper_deck/workshop) +"kSh" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/space/basic, +/area/navalis/oob/water) +"kSA" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"kSZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/tanright, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/command/lower_deck/starboard) +"kTd" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/power) +"kTq" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/navalis/indoors/command/tertiary_comms) +"kTr" = ( +/obj/structure/cargo_container/uscm/chinook/mid, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"kTN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/med_sci/lower_level/records) +"kTQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/empty/case/double{ + layer = 2.9 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"kUt" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"kUw" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"kUH" = ( +/obj/structure/prop/server_equipment/laptop/closed, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/command/cent_com) +"kVs" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + icon_state = "flammable_pipe_3"; + pixel_y = 6; + pixel_x = 20 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12; + layer = 7 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis/dig, +/area/navalis/oob/powered) +"kVu" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"kVA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/corridor) +"kVB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/navalis/indoors/med_sci/lower_level/port) +"kVD" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kVP" = ( +/turf/open/floor/darkbrown2/southwest, +/area/navalis/indoors/residential/starboard) +"kVV" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"kWf" = ( +/obj/structure/bed/chair/comfy{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"kWk" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/navalis/indoors/residential/port) +"kWl" = ( +/obj/structure/surface/table/woodentable, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 8; + pixel_x = -6 + }, +/obj/item/paper{ + pixel_x = 9; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = -5; + pixel_y = -6 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/oft_duty_room) +"kWF" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"kWK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"kWL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"kXg" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fuel) +"kXI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"kXU" = ( +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"kYe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"kYD" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"kYK" = ( +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/aft_hallway) +"kYL" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kYQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/stairs/perspective{ + dir = 9; + icon_state = "p_stair_full"; + color = "#b8b8b0" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/cent_com) +"kYT" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/oob/powered) +"kYY" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_2" + }, +/obj/item/circuitboard/machine/rdserver, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/darkpurplecorners2/west, +/area/navalis/indoors/command/upper_deck/server) +"kZm" = ( +/obj/item/trash/eat{ + pixel_x = 12; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"kZo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/greenleft, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"kZI" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"kZL" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/store) +"kZO" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"kZQ" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/port) +"lam" = ( +/obj/structure/largecrate/random/case/small, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"lay" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_22"; + layer = 4; + pixel_y = 16; + pixel_x = 7 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/structure/sign/catclock{ + pixel_y = 32 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/command/director_office) +"laz" = ( +/turf/open/floor/darkpurple2, +/area/navalis/indoors/residential/cafeteria) +"laA" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"laX" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"lbg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"lbz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"lbF" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/prison/blue/east, +/area/navalis/outdoors/landing_zone_1) +"lbQ" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkgreen2/southeast, +/area/navalis/indoors/residential/accessway) +"lck" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege, +/area/navalis/indoors/residential/cafeteria) +"lcr" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/research_upgrades/credits, +/obj/item/folder/white{ + pixel_x = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"lcK" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/aft_hallway) +"lcM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"lcN" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"lcO" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyright, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"lcR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/command_kitchen) +"ldC" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/east, +/area/navalis/indoors/residential/cafeteria) +"ldH" = ( +/turf/open/floor/darkgreen2/northeast, +/area/navalis/indoors/residential/accessway) +"ldK" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"ldP" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -12; + pixel_y = 25 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/med_ext/upper) +"ldU" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ldV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/snacks/donut{ + pixel_x = 6; + pixel_y = 6 + }, +/obj/effect/spawner/random/gun/shotgun/highchance, +/turf/open/floor/prison/red/southwest, +/area/navalis/indoors/command/security) +"leh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/port_hallway) +"lei" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/oob/powered) +"leQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/obj/effect/alien/resin/sticky, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"lfp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"lfy" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/server_room) +"lfB" = ( +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"lfM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege, +/area/navalis/indoors/residential/cafeteria) +"lgz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/bluecorner, +/area/navalis/indoors/logistic/workshop) +"lgF" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"lgU" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"lgZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"lhz" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"lhU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/main_floor) +"lie" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"lij" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/port) +"liM" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/starboard) +"liR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"liV" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/item/trash/plate, +/obj/item/trash/plate, +/obj/item/trash/plate{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 6 + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"ljz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/primary_storage) +"ljO" = ( +/obj/structure/prop/oilrig/support_beam/red, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty, +/area/navalis/oob/water) +"ljU" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"lkd" = ( +/obj/structure/cargo_container/hybrisa/containersextended/redright, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"lki" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"lkn" = ( +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"lko" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"lkA" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/clipboard{ + pixel_x = -6; + pixel_y = -2 + }, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"llk" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"llH" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 8 + }, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"llL" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/indoors/logistic/primary_storage) +"llU" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"lmb" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"lmm" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"lmD" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"lmR" = ( +/obj/structure/prop/resin_prop{ + icon_state = "case" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"lnb" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_off{ + pixel_x = 33 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/server_room) +"lns" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"lny" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/break_room) +"lnF" = ( +/obj/effect/decal/hybrisa/wy_huge_logo/lines, +/turf/open/floor/prison/greenfull/northwest, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"lnI" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/office) +"lnM" = ( +/turf/open/floor/hybrisa/carpet/carpetpatternbrown, +/area/navalis/indoors/residential/starboard) +"low" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/supply/supplies/mre, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"loI" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/logistic/upper_deck/workshop) +"loJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"lpl" = ( +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyleft, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"lpI" = ( +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketpears{ + pixel_x = 2; + density = 0 + }, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"lpM" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"lpP" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/aicard{ + pixel_x = 5; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"lpX" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/exterior/log_ext) +"lqf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/logistic/Port_hallway) +"lqi" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"lqy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb2, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"lqL" = ( +/obj/effect/landmark/objective_landmark/science, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + pixel_x = -1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"lqM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/navalis/indoors/command/lower_deck/port) +"lqS" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_half_br"; + pixel_x = 7; + pixel_y = 2 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/command/office) +"lrf" = ( +/obj/structure/window/framed/hybrisa/research/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"lrF" = ( +/obj/structure/surface/rack, +/obj/item/reagent_container/blood/OPlus, +/obj/effect/decal/cleanable/cobweb, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkish, +/area/navalis/indoors/med_sci/upper_level/store) +"lrM" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"lsl" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop{ + desc = "It's the heavy-duty black polymer kind. Time to take out the trash!"; + icon = 'icons/obj/janitor.dmi'; + icon_state = "trashbag_full"; + name = "trash bag"; + pixel_x = -4; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"lsv" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob/powered) +"lsF" = ( +/obj/structure/machinery/light, +/obj/structure/machinery/iv_drip{ + pixel_x = 9 + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"lsV" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"lsY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/command/lower_deck/starboard) +"ltn" = ( +/obj/structure/bed/chair/comfy{ + dir = 5 + }, +/turf/open/floor/prison/bluefull, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"lto" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"ltq" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 2.6 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"ltF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/landing_zone_2) +"ltH" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/primary_storage) +"ltI" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"ltR" = ( +/obj/structure/barricade/handrail/wire, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"lum" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"luq" = ( +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/cafeteria) +"lux" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/dark, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"luA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = 11 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/meeting_hall) +"luN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/industrial/refinery) +"luV" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"luW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/med_sci/lower_level/starboard) +"lvl" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"lvn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/obj/structure/machinery/disposal, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"lvD" = ( +/obj/structure/machinery/door_control/navalis_industrial_lockdown{ + explo_proof = 1; + needs_power = 0; + name = "Sector C: Internal Access Lockdown"; + id = "sector_three"; + pixel_y = 31 + }, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/refinery) +"lvI" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"lvP" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"lvW" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"lvX" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"lvZ" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/lower) +"lwc" = ( +/obj/structure/prop/static_tank/fuel, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"lwh" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = 8; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/med_ext/upper) +"lwk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/machinery/medical_pod/bodyscanner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"lwl" = ( +/obj/structure/platform/metal/almayer/west, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"lwq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/med_sci/lower_level/starboard) +"lwr" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"lww" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior/com_ext) +"lwA" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open_space, +/area/navalis/oob/empty_space) +"lwM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"lxu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"lxz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"lxA" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"lxY" = ( +/obj/structure/largecrate/empty/case, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/corridor) +"lyk" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"lyn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -5; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"lyI" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"lyT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob) +"lzb" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"lzd" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/industrial/mining) +"lze" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"lzl" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"lzu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/lower_deck/fore) +"lzZ" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"lAc" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"lAW" = ( +/obj/structure/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"lAY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 10; + pixel_y = 6 + }, +/obj/effect/spawner/random/powercell, +/obj/effect/spawner/random/powercell, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/logistic/lower_deck/maint) +"lBr" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"lBL" = ( +/obj/structure/stairs/multiz/up, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/prison/ramptop/north, +/area/navalis/outdoors/landing_zone_2) +"lBM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8 + }, +/obj/structure/platform_decoration/metal/strata/east, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/aft_hallway) +"lBR" = ( +/obj/structure/window/framed/hybrisa/research/reinforced, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"lBV" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/alien/weeds, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob/powered) +"lCo" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/foyer) +"lCu" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cans/souto, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"lCQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"lDA" = ( +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"lDE" = ( +/obj/effect/spawner/random/gun/rifle/lowchance, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"lDI" = ( +/obj/structure/mirror{ + pixel_y = 32; + pixel_x = 4 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"lDY" = ( +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"lEa" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"lEA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"lEF" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"lER" = ( +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"lFl" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"lFm" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"lGk" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"lGD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"lGW" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -2 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/break_room) +"lHA" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"lHL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1; + pixel_x = 3 + }, +/obj/structure/prop/server_equipment/laptop/on{ + pixel_x = -3; + pixel_y = -8 + }, +/turf/open/floor/prison/ramptop/east, +/area/navalis/indoors/industrial/power) +"lIc" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"lIC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"lIL" = ( +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"lIO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"lJa" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/med_sci/lower_level/port) +"lJe" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/structure/machinery/computer/cameras{ + dir = 4; + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"lJH" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"lJQ" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12 + }, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/starboard_hallway) +"lJR" = ( +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/accessway) +"lKg" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/mech_bay) +"lKu" = ( +/obj/structure/platform/metal/strata, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"lKy" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sec) +"lKD" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"lKH" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/office) +"lKS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"lLh" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/office) +"lLu" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"lLy" = ( +/obj/item/clothing/suit/storage/marine/light/vest/fire_light, +/obj/item/clothing/suit/storage/marine/light/vest/fire_light, +/obj/item/clothing/head/helmet/hybrisa/firefighter, +/obj/item/clothing/head/helmet/hybrisa/firefighter, +/obj/structure/surface/rack, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"lMz" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"lMJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wet_sign{ + pixel_x = -3; + pixel_y = 21 + }, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"lNh" = ( +/obj/item/tool/weldingtool/empty, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/mech_bay) +"lNo" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/port) +"lNs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/oob/powered) +"lNE" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = -3; + pixel_x = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"lOv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southwest, +/area/navalis/indoors/command/tertiary_comms) +"lOG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -7; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"lOK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"lPf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"lPj" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/metal/bluemetalcorner/north, +/area/navalis/indoors/command/oft_duty_room) +"lPk" = ( +/turf/open/floor/plating/kutjevo/platingdmg1, +/area/navalis/outdoors/landing_zone_1) +"lPn" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"lPZ" = ( +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/upper_level/entrance) +"lQa" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"lQd" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/corsat, +/area/navalis/indoors/xeno_growth/residential) +"lQh" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/log_ext/lower) +"lQi" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 3 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"lQm" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/effect/spawner/random/goggles/highchance, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"lQI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"lQK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"lQX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 21; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"lRf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/southwest, +/area/navalis/indoors/command/lower_deck/sub_pen) +"lRA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2"; + pixel_x = -9 + }, +/turf/open/floor/plating/platingdmg2, +/area/navalis/indoors/command/lower_deck/starboard) +"lRL" = ( +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"lRO" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/tertiary_comms) +"lRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini/chest/b, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"lSf" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_y = 16; + pixel_x = -6 + }, +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/outdoors/exterior/com_ext/upper) +"lSo" = ( +/obj/effect/decal/hybrisa/road/road_stop, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"lSv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/empty/secure, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/workshop) +"lSR" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"lSX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"lSZ" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"lTC" = ( +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/upper_deck/entrance) +"lTL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/entrance) +"lTT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"lUe" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/log_ext/lower) +"lUh" = ( +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata{ + layer = 2.5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"lUr" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"lUx" = ( +/obj/structure/sign/safety/refridgeration{ + pixel_y = 32 + }, +/obj/structure/sign/safety/restrictedarea{ + pixel_x = 14; + pixel_y = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 2 + }, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/med_sci/upper_level/corridor) +"lUM" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = -13; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"lVg" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"lVp" = ( +/obj/item/prop/colony/usedbandage{ + pixel_x = -7 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"lVr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/cabinet/hybrisa/metal, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/logistic/lower_deck/maint) +"lVH" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 1 + }, +/turf/open/floor/half_plate/dark_yellow/north, +/area/navalis/indoors/industrial/mining) +"lVZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/foyer) +"lWc" = ( +/obj/structure/prop/resin_prop{ + icon_state = "barrel_yellow" + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"lWd" = ( +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"lWf" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"lWl" = ( +/obj/structure/sign/poster/art{ + pixel_y = 32; + layer = 3.1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10" + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"lWv" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/defenses/handheld/tesla_coil{ + pixel_x = 3; + pixel_y = 3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"lWE" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/starboard) +"lXx" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/conduit) +"lXz" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"lXN" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"lXO" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/outdoors/landing_zone_2/under) +"lXX" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/emails{ + dir = 8; + pixel_y = 5 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"lYd" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"lYF" = ( +/obj/structure/surface/table/woodentable, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"lYQ" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/darkpurplecorners2/west, +/area/navalis/indoors/residential/cafeteria) +"lZg" = ( +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"lZl" = ( +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"lZC" = ( +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"lZD" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/entrance) +"lZR" = ( +/obj/item/prop/colony/canister{ + pixel_y = 23; + pixel_x = 6 + }, +/obj/item/prop/colony/canister{ + pixel_y = 16 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"maa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"mab" = ( +/turf/open/floor/corsat/brown/northwest, +/area/navalis/indoors/industrial/mining) +"mag" = ( +/obj/structure/filtration/collector_pipes{ + pixel_y = 26; + pixel_x = -16 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"mas" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"maz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"maM" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"mbl" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = -4; + pixel_y = 7 + }, +/obj/item/paper{ + pixel_x = 12; + pixel_y = 5 + }, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/break_room) +"mbp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"mbQ" = ( +/obj/structure/sign/poster/kellandmining{ + pixel_y = 32 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/aft_hallway) +"mcf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate2/indestructible, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"mck" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"mcJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1; + pixel_x = 3 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"mcM" = ( +/turf/open_space, +/area/navalis/outdoors/landing_zone_1) +"mcU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"mcY" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci) +"mdr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/floor_marked, +/area/navalis/outdoors/comm_one) +"mdx" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"mdC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/lower_level/records) +"mdW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -14; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = 8; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + pixel_y = 18; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"med" = ( +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/indoors/residential/cafeteria) +"mef" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/starboard) +"men" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/obj/effect/landmark/survivor_spawner, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"met" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/navalis/indoors/charon/below_deck/rear) +"meH" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/item/prop/colony/usedbandage{ + dir = 5; + pixel_y = 3; + pixel_x = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"mfg" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 1; + pixel_y = 3 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"mfj" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_x = -6; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, +/area/navalis/indoors/command/office) +"mfu" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"mfx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"mfH" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, +/area/navalis/indoors/residential/starboard) +"mfZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4; + pixel_x = -2 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"mgc" = ( +/obj/structure/platform_decoration/metal/kutjevo/west, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"mgp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"mgv" = ( +/turf/open/floor/hybrisa/metal/bluemetalcorner, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"mgH" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"mgL" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/lower) +"mgM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"mgN" = ( +/obj/item/device/flashlight/lamp/tripod, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"mhc" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/workshop) +"mhf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/maint) +"mhk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/port) +"mhs" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"mhH" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"mhU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"mhX" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + pixel_y = -20 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"mih" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"mim" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 2 + }, +/obj/structure/window/reinforced, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southwest, +/area/navalis/indoors/command/office) +"mir" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"miy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"miz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"mje" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case{ + pixel_y = 9 + }, +/obj/item/trash/crushed_cup{ + pixel_x = -1; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"mjf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"mjk" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"mjs" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"mjM" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"mkg" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/obj/structure/machinery/microwave{ + pixel_y = 7; + layer = 3.20; + pixel_x = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"mkl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"mkx" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 20; + health = 600; + name = "reinforced wooden barricade"; + pixel_x = 6 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/command/aft_hallway) +"mkL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/big_computers/computerbrown/computer2{ + pixel_x = 9 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"mkS" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/darkblue2/northeast, +/area/navalis/indoors/residential/accessway) +"mkU" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3, +/obj/structure/machinery/firealarm{ + pixel_y = 25; + name = "medical emergency alarm" + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"mkX" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic) +"mmN" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"mmQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/trash/crushed_cup, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"mmU" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + dir = 1; + autoname = 1; + name = "\improper Airlock"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/walkway) +"mmV" = ( +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"mno" = ( +/obj/structure/surface/table/woodentable, +/obj/item/ashtray/bronze, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"mnV" = ( +/obj/structure/prop/hybrisa/airport/refuelinghose2{ + layer = 1; + pixel_y = -40; + dir = 4; + pixel_x = 2 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"moz" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/corsat, +/area/navalis/outdoors/exterior/med_ext) +"moF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 18; + pixel_y = 10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"moJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/south, +/area/navalis/indoors/command/tertiary_comms) +"mpQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_x = -14; + pixel_y = -9 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"mpT" = ( +/turf/open/floor/prison/bluecorner/east, +/area/navalis/indoors/logistic/workshop) +"mqF" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/map_item, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"mqG" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = 4; + pixel_y = 14 + }, +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"mre" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"mro" = ( +/obj/structure/bed/chair/office/dark, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"mrG" = ( +/obj/item/tool/warning_cone{ + pixel_x = 5; + pixel_y = 13 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"mrS" = ( +/obj/structure/surface/table/almayer, +/obj/item/stack/sheet/cardboard/small_stack{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -8; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"msd" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/outdoors/comm_one) +"msj" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"msB" = ( +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"msF" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"msS" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"mtm" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/navalis/outdoors/exterior/med_ext/upper) +"mtv" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#712215" + }, +/obj/item/tool/kitchen/tray{ + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"mtI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/purewhite, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"mue" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"mui" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 7; + pixel_x = 7 + }, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"muo" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"muz" = ( +/turf/open/floor/prison/greenblue/southeast, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"muE" = ( +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"mvA" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/residential/kitchen) +"mvP" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"mvZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = -9 + }, +/turf/open/floor/hybrisa/tile/darkbrowncorner_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"mwe" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"mwj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/storage) +"mwH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"mwR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"mxb" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"mxt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"mxF" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/upper) +"mxL" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"myp" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + pixel_y = 31 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"myz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"myH" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"myT" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/recharger, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"mzR" = ( +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"mAc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"mAh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"mAm" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"mAz" = ( +/obj/effect/decal/hybrisa/road/corner{ + dir = 1 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"mAO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"mAQ" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/command) +"mBb" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"mBE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + icon_state = "grime4" + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/med_sci/lower_level/port) +"mBO" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/east, +/area/navalis/oob/powered) +"mCk" = ( +/obj/structure/sink{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/mirror{ + pixel_y = -30 + }, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/command/bathroom) +"mCt" = ( +/turf/open/floor/prison/greenblue, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"mCF" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"mCL" = ( +/obj/structure/platform/metal/strata/north, +/turf/open_space, +/area/navalis/outdoors/landing_zone_2/under) +"mDn" = ( +/turf/open/floor/prison/greenblue/west, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"mDG" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = -5; + pixel_y = 9 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/med_sci/upper_level/entrance) +"mEa" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/break_room) +"mEe" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 19; + layer = 3.8 + }, +/obj/structure/sign/nosmoking_1{ + pixel_y = 32; + pixel_x = 16 + }, +/obj/structure/bed/roller/hospital_empty/bigrollerbloodempty{ + layer = 4; + pixel_y = 7 + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/main_floor) +"mEh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/structure/machinery/disposal, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/foyer) +"mEm" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"mEy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade"; + layer = 2.98 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/starboard) +"mEJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"mEO" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"mEU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"mFF" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/obj/item/bedsheet/colorable{ + color = "#b54b3d"; + pixel_y = -2; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"mFQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"mGa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/chemical_store) +"mGl" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"mGo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/sign/poster/io{ + pixel_x = -29 + }, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/command/lower_deck/port) +"mGv" = ( +/obj/structure/surface/rack, +/obj/item/storage/belt/utility/full, +/obj/item/storage/belt/utility/full, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/green_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"mGC" = ( +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/upper_deck/entrance) +"mGE" = ( +/obj/effect/decal/hybrisa/warningstripes_angled_corner{ + dir = 4; + pixel_x = 1; + pixel_y = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"mGH" = ( +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"mHf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/prop/hybrisa/Factory/Robotic_arm{ + level = 5; + pixel_x = -15; + desc = "A robotic arm used to assist in operating and repairing the internal mining equipment." + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"mHt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/southwest, +/area/navalis/indoors/med_sci/lower_level/port) +"mHu" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"mHC" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/bed/chair/comfy/hybrisa/blue{ + dir = 8; + pixel_x = -9 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"mHF" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"mHN" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/lower_deck/starboard) +"mHP" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 22; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"mHT" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/sec) +"mHU" = ( +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/upper_level/entrance) +"mIe" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"mIp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/upper) +"mIE" = ( +/obj/structure/machinery/landinglight/ds1/delayone{ + dir = 4 + }, +/obj/effect/decal/medical_decals{ + dir = 4; + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"mIQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"mJe" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"mJh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/com_ext/upper) +"mJk" = ( +/obj/structure/machinery/big_computers/messaging_server/black{ + light_on = 1; + light_color = "#00f4ff"; + light_range = 1 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"mJI" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"mKr" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 1 + }, +/turf/open/floor/corsat/arrow_south, +/area/navalis/indoors/industrial/mining) +"mKt" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 1.1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/empty_space) +"mKL" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/server) +"mKV" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/weapon/gun/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/beret, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/red/north, +/area/navalis/indoors/med_sci/upper_level/sec) +"mKY" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"mLa" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/dark_sterile2, +/area/navalis/indoors/residential/landing_pad) +"mLF" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"mLK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = 4; + pixel_y = 9 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"mLO" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"mMd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"mMh" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyleft, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"mMq" = ( +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"mMu" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"mMw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 1; + pixel_x = 5 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"mMZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkred2/east, +/area/navalis/indoors/residential/cafeteria) +"mNp" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/red, +/area/navalis/indoors/med_sci/upper_level/sec) +"mNB" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"mNO" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"mNQ" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"mNU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"mPs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + layer = 3.2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"mPt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/charon/below_deck/front) +"mPK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"mPQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10; + pixel_x = -19 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"mPV" = ( +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/residential/cafeteria) +"mQa" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"mQi" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"mQs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"mQE" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6; + pixel_x = -9 + }, +/obj/structure/surface/table/almayer, +/obj/item/clothing/mask/rebreather, +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/industrial/mining) +"mRq" = ( +/turf/open/floor/corsat/sterileplate, +/area/navalis/indoors/industrial/mining) +"mRy" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/navalis/oob/water) +"mRL" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"mRZ" = ( +/obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark2{ + unacidable = 1; + pixel_y = 1; + pixel_x = 14; + density = 0; + explo_proof = 1 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"mSs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/com_ext/upper) +"mSw" = ( +/turf/open/floor/plating, +/area/navalis/outdoors/landing_zone_2) +"mSE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"mTy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"mTJ" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner/north, +/area/navalis/indoors/industrial/refinery) +"mTK" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = -4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"mTT" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy/black{ + dir = 4; + pixel_x = -4; + buckling_x = -4 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_on{ + pixel_y = 1; + pixel_x = -30 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"mTY" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/main_floor) +"mUk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/middle) +"mVj" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/starboard) +"mVt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/logistic/upper_deck/workshop) +"mVE" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"mVL" = ( +/obj/item/prop/colony/canister{ + pixel_x = -7; + pixel_y = -7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"mVU" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"mWe" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/tool/screwdriver, +/obj/item/device/assembly/timer{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"mWi" = ( +/obj/structure/stairs, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"mWG" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"mWH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"mWQ" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"mXs" = ( +/obj/structure/platform/metal/almayer, +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"mXy" = ( +/obj/structure/surface/table/almayer, +/obj/item/bodybag/cryobag{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/item/stack/medical/advanced/bruise_pack{ + pixel_x = -6 + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"mXD" = ( +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/port) +"mYB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"mYH" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer/northeast, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"mYL" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"mZj" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/emcloset, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/med_sci/upper_level/corridor) +"mZr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/crane/cargo{ + pixel_y = -12; + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"mZF" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/outdoors/exterior/med_ext/upper) +"mZH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/upper_deck/starboard) +"mZX" = ( +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_21"; + layer = 3.1; + name = "synthethic potted plant"; + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"nac" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketmelons, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"nay" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"naK" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"naO" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"naP" = ( +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/navalis/outdoors/exterior/com_ext/upper) +"nbx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/corridor) +"nbz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"nbP" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent3" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"nbT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"ncn" = ( +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/power) +"ncD" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/indoors/logistic/primary_storage) +"ncP" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/oob/empty_space) +"ndd" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"ndy" = ( +/turf/open/floor/corsat/brown, +/area/navalis/indoors/logistic/lower_deck/fore) +"neA" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/med_sci/records_room) +"neI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"neL" = ( +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2/under) +"neQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"nfK" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/newspaper{ + pixel_x = -8; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"nfQ" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"nfU" = ( +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"nfW" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"ngi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/crumpled, +/turf/open/floor/prison/darkpurple2/east, +/area/navalis/indoors/command/upper_deck/server) +"ngp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"ngr" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"ngz" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/landing_zone_2) +"nhq" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/tool/kitchen/utensil/spoon, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"nhF" = ( +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"nig" = ( +/obj/structure/machinery/door_control{ + id = "cargo_shutter_2"; + pixel_y = -28; + name = "Cargo Shutter" + }, +/turf/open/floor/prison/darkbrowncorners2, +/area/navalis/indoors/logistic/primary_storage) +"nij" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + pixel_y = -2 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"nio" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/accessory/storage/surg_vest/drop_green, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"niP" = ( +/turf/closed/wall/strata_outpost/reinforced, +/area/navalis/indoors/charon/below_deck/middle) +"niS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/lower_level/port) +"niU" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/north, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/med_ext/upper) +"njc" = ( +/obj/structure/machinery/big_computers/messaging_server/white{ + dir = 1 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"njj" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"njn" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/corridor) +"njy" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/defibrillator/synthetic/hyperdyne{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"njB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"njF" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"njP" = ( +/obj/effect/decal/navalis/plate_edge/darker, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/industrial/accessway) +"njV" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"nkk" = ( +/obj/structure/prop/power_transformer{ + pixel_x = -3; + density = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/conduit) +"nkp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"nkr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = -5; + pixel_y = 5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/foyer) +"nky" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/north, +/area/navalis/indoors/residential/cafeteria) +"nkz" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_y = 6 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"nlm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/open/floor/almayer/plating2/north, +/area/navalis/indoors/med_sci/lower_level/port) +"nlu" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"nlz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/prison/red/southeast, +/area/navalis/indoors/med_sci/upper_level/sec) +"nlT" = ( +/obj/structure/prop/resin_prop{ + icon_state = "densecrate" + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"nmp" = ( +/obj/structure/machinery/landinglight/ds2/delaythree{ + dir = 1 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"nmr" = ( +/obj/structure/largecrate/supply/explosives/grenades, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"nmz" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"nmP" = ( +/turf/open/floor/darkblue2/southeast, +/area/navalis/indoors/residential/accessway) +"nmS" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/entrance) +"nnl" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"nnn" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"nnr" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/prison/darkyellow2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"nnx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = 7 + }, +/obj/structure/barricade/handrail/medical{ + dir = 8 + }, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/med_sci/upper_level/entrance) +"nnL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/on, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"nnR" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/flight) +"nnU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"noq" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"nor" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy17" + }, +/area/navalis/oob/water) +"noy" = ( +/obj/structure/surface/rack, +/obj/item/storage/pouch/autoinjector/full, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"noC" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2; + pixel_y = -32 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/surg_two) +"noO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/pipes/standard/simple/visible/purple, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"npi" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"npk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"npT" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"nqc" = ( +/obj/structure/prop/hybrisa/supermart/souto_can_stack, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"nqf" = ( +/obj/structure/prop/resin_prop{ + icon_state = "closed_oxygen" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"nqq" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"nqJ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"nqT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = -16 + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"nqU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"nrb" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_y = 5; + pixel_x = -6 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"nrc" = ( +/obj/structure/surface/rack, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/ammo_magazine/shotgun/buckshot, +/obj/item/weapon/gun/shotgun/combat, +/turf/open/floor/prison/red, +/area/navalis/indoors/med_sci/upper_level/sec) +"nro" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"nsd" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"nss" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"nsw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/obj/structure/platform/metal/strata/west, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"nsA" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + density = 0; + name = "pole signal" + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"nsF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/medicalleft, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"nsJ" = ( +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"nsU" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"nsW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/cafeteria) +"nti" = ( +/obj/structure/closet/bodybag, +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/main_floor) +"ntv" = ( +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/mining) +"num" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + pixel_y = 4; + pixel_x = 7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/flight) +"nuR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"nvk" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/upper_deck/starboard) +"nvr" = ( +/obj/structure/largecrate/supply/supplies/mre, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"nvw" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"nvx" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/logistic/mech_bay) +"nvA" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/morgue) +"nvZ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"nwh" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = -2; + pixel_y = 1 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/starboard_hallway) +"nwA" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/workshop) +"nwD" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"nwM" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"nwN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"nwO" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"nwQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"nwX" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"nxB" = ( +/obj/structure/platform_decoration/metal/strata/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"nyg" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/hull, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/accessway) +"nyk" = ( +/obj/structure/closet/secure_closet/security, +/obj/item/clothing/accessory/storage/black_vest, +/obj/item/weapon/gun/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/ammo_magazine/smg/p90, +/obj/item/clothing/suit/armor/vest, +/obj/item/clothing/head/beret, +/obj/structure/sign/safety/ammunition{ + pixel_x = 23; + pixel_y = 31 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/red/northwest, +/area/navalis/indoors/med_sci/upper_level/sec) +"nyx" = ( +/turf/open/floor/almayer/greenfull2, +/area/navalis/outdoors/landing_zone_1) +"nyA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open/floor/corsat/plate, +/area/navalis/oob/empty_space) +"nyR" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"nyX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluefull, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"nza" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"nzh" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"nzE" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced, +/area/navalis/outdoors/landing_zone_2/under) +"nzU" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/port) +"nAd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/aft_hallway) +"nAj" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"nAp" = ( +/obj/structure/machinery/smartfridge/chemistry, +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/pharmacy) +"nAu" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"nAE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"nBn" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"nBu" = ( +/obj/structure/machinery/big_computers/computerbrown/computer3{ + pixel_y = 1 + }, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/med_sci/upper_level/flight) +"nCb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"nCk" = ( +/turf/open/floor/prison/darkbrowncorners2, +/area/navalis/indoors/logistic/primary_storage) +"nCu" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/device/flashlight/lamp/on{ + pixel_y = -1; + pixel_x = -3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/cent_com) +"nCB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/bloodtrail{ + dir = 8 + }, +/obj/item/ammo_magazine/smg/p90, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"nCI" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#f7c85d"; + layer = 2.01; + dir = 8; + pixel_y = -41; + pixel_x = -8 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"nCP" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"nCY" = ( +/obj/structure/prop/vehicles/crawler{ + dir = 8; + icon_state = "crawler_fuel" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"nDe" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/starboard) +"nDg" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/landing_zone_2) +"nDs" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"nDv" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 32; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 30; + density = 0; + name = "pole signal" + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = 4; + density = 0; + name = "pole signal" + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"nDy" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"nDP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/reagent_dispensers/fueltank/spacecraft, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"nDR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"nEm" = ( +/obj/structure/bed, +/obj/item/bedsheet/colorable{ + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/accessway) +"nEy" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/med_sci/upper_level/sec) +"nFb" = ( +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/pharmacy) +"nFd" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"nFe" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/tilewhite, +/area/navalis/indoors/residential/kitchen) +"nFl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating_striped/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"nFO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/big_computers/messaging_server/brown, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"nGq" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy18" + }, +/area/navalis/oob/powered) +"nGA" = ( +/obj/structure/machinery/mech_bay_recharge_port{ + name = "Power Port" + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/navalis/indoors/logistic/mech_bay) +"nGH" = ( +/obj/structure/platform/metal/strata/west, +/turf/open_space, +/area/navalis/indoors/logistic/upper_deck/entrance) +"nGP" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/alien/weeds, +/turf/open/floor/almayer/dark_sterile2, +/area/navalis/oob) +"nGT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"nHl" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + pixel_y = -11; + pixel_x = 4 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/accessway) +"nHn" = ( +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"nHC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_fuel"; + pixel_x = -7 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"nId" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/lower_level/delivery) +"nIm" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "solarpanel1" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"nIC" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine/corporate{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"nII" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"nIP" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/port) +"nIZ" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty, +/area/navalis/oob/water) +"nJr" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"nJz" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"nJC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"nJG" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"nJK" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"nJL" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/lower) +"nJP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8; + layer = 2; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/maint) +"nKn" = ( +/obj/item/prop{ + desc = "A human incinerator. Works well on barbecue nights. This one is broken."; + icon = 'icons/obj/structures/morgue.dmi'; + icon_state = "crema2"; + name = "broken crematorium"; + pixel_y = 1; + layer = 2.8; + dir = 1; + pixel_x = -1 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/morgue) +"nKS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"nKV" = ( +/obj/item/prop/colony/canister{ + pixel_x = 4; + pixel_y = 16 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"nKY" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + dir = 1; + autoname = 1; + name = "\improper Airlock"; + req_one_access = null; + req_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/mech_bay) +"nLd" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"nLu" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"nLz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"nLC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/oob/empty_space) +"nLX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/east, +/area/navalis/indoors/command/lower_deck/port) +"nMU" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/tile/greencorner_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"nNc" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/walkway) +"nNw" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/pharmacy) +"nNC" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 8; + pixel_x = -32; + density = 0 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/upper_deck/starboard) +"nNQ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/spray/cleaner{ + pixel_x = -5; + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/item/storage/belt/medical/full/with_defib_and_analyzer, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"nNU" = ( +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/hybrisa/metal/bluemetalcorner, +/area/navalis/indoors/command/upper_deck/port) +"nOp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/machinery/light, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"nOQ" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 2.6 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"nPh" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"nPk" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"nPo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/northwest, +/area/navalis/indoors/med_sci/lower_level/port) +"nPx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"nPI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/port) +"nQu" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = 6; + pixel_y = 22 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"nQB" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/navalis/indoors/command/lower_deck/sub_pen) +"nQG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"nQV" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/sign/poster{ + icon_state = "poster67"; + pixel_y = 33 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/cent_com) +"nRe" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"nSd" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 1; + pixel_y = 11 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 11; + pixel_x = -27 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/break_room) +"nSh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"nSY" = ( +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/mid) +"nSZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/port) +"nTp" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"nTz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"nTB" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"nTH" = ( +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/aft_hallway) +"nTP" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -10; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"nUa" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/logistic/primary_storage) +"nUq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"nUy" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"nUG" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"nVc" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/office) +"nVu" = ( +/obj/structure/closet/secure_closet/medical2, +/obj/item/clothing/head/surgery/green, +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2; + pixel_y = -32 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/surg_two) +"nVv" = ( +/obj/structure/stairs/multiz/up, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"nVE" = ( +/turf/open/floor/corsat/brown/southwest, +/area/navalis/indoors/industrial/mining) +"nVI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/command/office) +"nVJ" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 6; + name = "broken attachment cable"; + color = "#353935" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"nVK" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"nWn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7; + pixel_x = 16 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 2 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"nWo" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/upper_level/entrance) +"nWA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/blocker/invisible_wall, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"nWJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/port) +"nWR" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"nWS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/logistic/lower_deck/maint) +"nWU" = ( +/obj/structure/prop/resin_prop{ + icon_state = "barrel_blue" + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"nXA" = ( +/turf/open/floor/hybrisa/metal/bluemetalcorner/north, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"nYr" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/cafeteria) +"nYx" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/command/lower_deck/sub_pen) +"nYD" = ( +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/navalis/indoors/command/lower_deck/sub_pen) +"nYL" = ( +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"nYS" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"nYX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/corridor) +"nZc" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pj/red, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"nZd" = ( +/obj/structure/bed/chair{ + can_buckle = 0; + dir = 4; + pixel_x = 6; + pixel_y = 1 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = -20; + pixel_x = 1 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/med_sci/records_room) +"nZj" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"nZp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"nZB" = ( +/obj/structure/prop/power_transformer{ + pixel_x = -11; + density = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/conduit) +"oaf" = ( +/turf/open/floor/prison/darkpurple2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"oar" = ( +/obj/item/trash/barcardine, +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/main_floor) +"oaz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating2/northeast, +/area/navalis/indoors/med_sci/lower_level/port) +"oaL" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/obj/structure/platform/stone/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"oaS" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/mech_bay) +"oaV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/prison/greenblue/north, +/area/navalis/indoors/charon/below_deck/front) +"obO" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3d3d3d"; + dir = 1; + pixel_y = -39; + pixel_x = -8; + name = "rubber mat" + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"obP" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"obT" = ( +/turf/open/floor/almayer/dark_sterile2, +/area/navalis/indoors/residential/landing_pad) +"obX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"ocd" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"ocr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/paper/crumpled{ + pixel_x = 10; + pixel_y = -1 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/command/upper_deck/server) +"ocx" = ( +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/foyer) +"ocV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"odb" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/navalis/indoors/industrial/refinery) +"odU" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"oeo" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/logistic/lower_deck/port) +"oeG" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname{ + locked = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/science_lower_entrance) +"oeN" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"oeU" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"ofJ" = ( +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"ofR" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ofU" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/starboard) +"ofW" = ( +/obj/structure/cable/heavyduty, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"ogg" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/jani) +"ogj" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"oho" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_x = 2; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/port) +"ohH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/supply/floodlights{ + pixel_y = -7; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"ohK" = ( +/obj/structure/prop/resin_prop{ + icon_state = "secure_crate" + }, +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"ohP" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/security{ + pixel_y = -32 + }, +/turf/open/floor/prison/red, +/area/navalis/indoors/command/security) +"ohR" = ( +/obj/structure/stairs/perspective{ + dir = 8; + icon_state = "p_stair_full"; + color = "#b8b8b0" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/cent_com) +"oif" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 8 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"oiu" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy25" + }, +/area/navalis/oob/powered) +"oiA" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_y = -1; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"ojb" = ( +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/command_kitchen) +"oje" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/supplies/water, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"ojm" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_x = -4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ojx" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_y = 24; + pixel_x = -7 + }, +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/com_ext/upper) +"ojG" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/office) +"ojJ" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"okh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/blackwyleft, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"okl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/cafeteria) +"okp" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/residential/port) +"okw" = ( +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"okA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/logistic/lower_deck/port) +"okQ" = ( +/turf/open_space, +/area/navalis/indoors/residential/landing_pad) +"okS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"olG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"omf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"omh" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/sub_pen) +"omm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"omn" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 12 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"omr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = 11; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/pharmacy) +"omw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"omL" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy9" + }, +/area/navalis/oob/water) +"omM" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"omW" = ( +/obj/structure/cargo_container/arious/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"ona" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -6; + pixel_y = 22 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"ont" = ( +/obj/item/bedsheet/green{ + pixel_x = 6; + pixel_y = 7 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"onz" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"onE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/port) +"ood" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"oog" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"oor" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/exterior_xeno_only/mining) +"ooz" = ( +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"ooG" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/meeting_hall) +"ooO" = ( +/obj/structure/closet/firecloset, +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/logistic/workshop) +"ooR" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/logistic/lower_deck/maint) +"ooV" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"ooX" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fuel) +"ooZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"opd" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/indoors/logistic/primary_storage) +"opg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 14 + }, +/obj/structure/sign/safety/fibre_optics{ + pixel_x = -18; + pixel_y = 6 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"opk" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"opr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/port) +"opu" = ( +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"opN" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"oqa" = ( +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/xeno_growth/residential) +"oqr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"oqy" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/flight) +"oqC" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/director_office) +"oqP" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"oqR" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/whitered/northwest, +/area/navalis/indoors/med_sci/main_floor) +"orf" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/tertiary_comms) +"orG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"orQ" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"orR" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"osa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"osv" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/generic/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fuel) +"osD" = ( +/obj/structure/sign/safety/coffee{ + pixel_x = -18 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"osE" = ( +/obj/structure/platform/metal/stair_cut/strata_right, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/corridor) +"otw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"ouc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"oux" = ( +/obj/item/tool/warning_cone{ + pixel_x = 9; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"ouX" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/foyer) +"ouZ" = ( +/obj/structure/platform_decoration/metal/strata/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"ovd" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"ovn" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"ovE" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/bed/chair/comfy/black{ + dir = 4; + pixel_x = -4; + buckling_x = -4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"ovX" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"ows" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"owH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras{ + dir = 1 + }, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/port) +"owN" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"owT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"owU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"oxh" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 10; + pixel_y = -4; + pixel_x = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 8; + pixel_x = -24; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"oxI" = ( +/obj/structure/prop/oilrig/support_beam/red, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty, +/area/navalis/oob/empty_space) +"oxX" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/assembly/signaller{ + pixel_x = 5 + }, +/obj/item/book/manual/evaguide{ + pixel_y = -1; + pixel_x = -6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"oyb" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"oyg" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/effect/spawner/random/attachment, +/obj/effect/spawner/random/attachment, +/obj/effect/spawner/random/attachment, +/turf/open/floor/prison/red/southeast, +/area/navalis/indoors/command/security) +"oyC" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 8; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"ozr" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + pixel_y = 15; + pixel_x = -6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/west, +/area/navalis/indoors/residential/port) +"ozC" = ( +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/port) +"ozH" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"ozN" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"oAn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"oAy" = ( +/obj/structure/cargo_container/trijent/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"oAS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"oBz" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"oBW" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northeast, +/area/navalis/indoors/residential/cafeteria) +"oCf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/med_sci/lower_level/starboard) +"oCj" = ( +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/obj/structure/sign/poster/wylogo{ + pixel_y = 32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/meeting_hall) +"oCw" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"oCA" = ( +/turf/open/floor/hybrisa/tile/green_bigtile/west, +/area/navalis/indoors/residential/cafeteria) +"oCD" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/command_kitchen) +"oCH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/upper_deck/workshop) +"oDe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/logistic/lower_deck/port) +"oDf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"oDx" = ( +/obj/structure/safe{ + spawnkey = 0 + }, +/obj/item/spacecash/c1000{ + worth = 10000; + name = "10000 dollars" + }, +/obj/item/spacecash/c1000{ + worth = 10000; + name = "10000 dollars" + }, +/obj/item/storage/belt/gun/m4a3/m1911, +/obj/effect/landmark/objective_landmark/close, +/obj/item/storage/fancy/cigar/tarbacks, +/obj/effect/landmark/objective_landmark/close, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"oDV" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/oob) +"oDZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/cargo/engine{ + dir = 2 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"oEl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_y = 16; + pixel_x = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"oEs" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 4; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/tripod{ + pixel_y = -3; + pixel_x = -5 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"oEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"oEM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/lower_level/port) +"oER" = ( +/obj/structure/stairs/perspective{ + dir = 4; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating, +/area/navalis/outdoors/landing_zone_1) +"oET" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"oFk" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/upper) +"oFm" = ( +/obj/effect/decal/navalis/plate_edge/darker, +/turf/open/floor/corsat/sterileplate, +/area/navalis/indoors/industrial/mining) +"oFq" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"oFr" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"oFu" = ( +/obj/structure/platform/metal/almayer/west, +/obj/structure/platform_decoration/metal/almayer, +/turf/open_space, +/area/navalis/oob/empty_space) +"oFE" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3f5b41"; + dir = 1; + name = "rubber mat"; + pixel_x = -8; + pixel_y = -33 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"oFY" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"oGi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"oGk" = ( +/obj/structure/largecrate/random/case/double, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"oGw" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"oGD" = ( +/turf/closed/wall/hybrisa/research, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"oGN" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"oGY" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = 3 + }, +/obj/item/stack/medical/splint{ + pixel_x = -14; + pixel_y = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/chemical_store) +"oHa" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"oHj" = ( +/turf/open/floor/corsat/browncorner/east, +/area/navalis/indoors/industrial/refinery) +"oHp" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/microwave, +/obj/structure/extinguisher_cabinet{ + pixel_x = 27 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/med_sci/break_room) +"oIb" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"oIh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/platform/metal/strata, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"oIi" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"oJj" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"oJl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"oJq" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/exterior/med_ext/upper) +"oJH" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"oJK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_12"; + pixel_y = 12 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/command/tertiary_comms) +"oKk" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/port) +"oKT" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/tray, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"oLd" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"oLe" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"oLu" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/exterior/ind_ext) +"oLC" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty, +/obj/item/bedsheet/medical, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"oMe" = ( +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/starboard_hallway) +"oMf" = ( +/obj/effect/hybrisa/misc/fake/pipes, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy3{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"oMm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"oMD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/black2, +/area/navalis/indoors/command/upper_deck/jani) +"oMG" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"oMM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty, +/area/navalis/oob/empty_space) +"oMS" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/effect/hybrisa/misc/fake/wire/blue, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"oNk" = ( +/obj/structure/prop/resin_prop{ + icon_state = "chest_white" + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 32 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"oNu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"oNK" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"oNY" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/command/lower_deck/starboard) +"oOj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_x = 26 + }, +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/tertiary_comms) +"oOp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/eat, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"oOt" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -14; + pixel_x = 8; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"oOx" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"oOy" = ( +/obj/structure/machinery/big_computers/computerblack/computer5, +/obj/item/trash/crushed_cup{ + pixel_x = 2; + pixel_y = 15 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"oOz" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/prison/ramptop, +/area/navalis/outdoors/landing_zone_2) +"oOE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"oOF" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"oOK" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/west, +/obj/structure/stairs, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"oPE" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco2/north, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"oPF" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/pipes, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + pixel_y = 23; + density = 0 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"oQh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = 15; + pixel_x = 15; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + pixel_y = -13; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"oQp" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"oQr" = ( +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"oQx" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"oQQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"oRk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"oRK" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/starboard) +"oRV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + layer = 4; + pixel_y = 13 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"oSk" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"oSQ" = ( +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"oSX" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"oTe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"oTo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 2; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + pixel_x = -1; + pixel_y = 1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"oTy" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"oTB" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"oTG" = ( +/obj/structure/machinery/door_control{ + id = "cargo_shutter_1"; + pixel_y = 28; + name = "Cargo Shutter" + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"oTL" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"oTR" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -11 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_x = -30 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/surg_one) +"oUq" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/white{ + icon_state = "1-2"; + level = 2; + pixel_y = 5; + pixel_x = -17 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"oUv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"oUK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"oUM" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"oUN" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 8; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"oUQ" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/foyer) +"oUW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/autoname{ + name = "\improper Airlock"; + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/maint) +"oVo" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"oVs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"oVG" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner/west, +/area/navalis/indoors/industrial/power) +"oVM" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/storage) +"oWh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines4, +/obj/vehicle/train/cargo/trolley, +/obj/structure/largecrate/random/barrel{ + pixel_y = 6; + layer = 4.2 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"oWj" = ( +/obj/structure/closet/secure_closet/freezer/fridge/full, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"oWm" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -13; + pixel_y = 13 + }, +/obj/item/trash/hotdog{ + pixel_x = 5; + pixel_y = 9 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/almayer/blackfull, +/area/navalis/indoors/med_sci/records_room) +"oWq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/platform/metal/almayer/north, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"oWv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitered/east, +/area/navalis/indoors/med_sci/storage) +"oWC" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"oWF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/fourway/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/port_hallway) +"oWS" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"oXd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/device/autopsy_scanner, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/upper_level/morgue) +"oXk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = -8; + pixel_y = -4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"oXn" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/effect/sentry_landmark/lz_1/top_right, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"oXJ" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -30 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"oXL" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/blue, +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"oXM" = ( +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/upper_deck/office) +"oYg" = ( +/obj/structure/sink{ + dir = 8; + pixel_x = -18; + pixel_y = -1 + }, +/obj/structure/machinery/optable, +/obj/item/prop/alien/hugger, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/upper_level/morgue) +"oYy" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"oYB" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy16"; + layer = 3.2 + }, +/area/navalis/oob/water) +"oYF" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"oYP" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"oYW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"oZC" = ( +/obj/structure/machinery/door_control{ + id = "cargo_shutter_3"; + pixel_y = -28; + name = "Cargo Shutter" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"oZK" = ( +/obj/structure/sign/poster/propaganda{ + pixel_y = 4; + pixel_x = 29 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"oZL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"oZP" = ( +/obj/structure/largecrate/random{ + pixel_y = 10; + layer = 4.1; + pixel_x = 5 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"oZR" = ( +/obj/structure/machinery/big_computers/messaging_server/black{ + dir = 4 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"paj" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/east, +/area/navalis/indoors/residential/cafeteria) +"pas" = ( +/obj/effect/decal/cleanable/dirt, +/obj/vehicle/train/cargo/trolley, +/obj/structure/largecrate/supply/generator{ + layer = 4.2; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 4; + pixel_y = -12; + layer = 5 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"paD" = ( +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/industrial/power) +"paV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/upper_level/entrance) +"paZ" = ( +/obj/item/stack/sheet/metal{ + pixel_x = -5; + pixel_y = 13 + }, +/obj/structure/platform/metal/strata/west{ + icon_state = "strata_metalplatform_broken"; + density = 0 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"pbk" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"pci" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"pcx" = ( +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"pcG" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/starboard) +"pcT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7; + pixel_x = 16 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11; + pixel_x = 16 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pcV" = ( +/obj/structure/machinery/power/apc, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/med_sci/records_room) +"pdb" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty, +/area/navalis/oob) +"pdl" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"pdD" = ( +/obj/structure/machinery/door/airlock/almayer/generic/glass, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/kitchen) +"pdI" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c"; + level = 2 + }, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"pdS" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "2"; + pixel_x = -9 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pdZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/landing_zone_2) +"pee" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"pep" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"peE" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/platform/metal/almayer, +/obj/structure/platform_decoration/metal/almayer/southeast, +/turf/open_space, +/area/navalis/oob/empty_space) +"peZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"pfi" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/residential/port) +"pfo" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/logistic/primary_storage) +"pfT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -9; + pixel_x = -10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"pfV" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -2 + }, +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/server) +"pgh" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"pgP" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/port) +"pha" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"phq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue_plate/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"phI" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/storage/firstaid/regular{ + pixel_x = 5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"phQ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open_space, +/area/navalis/oob/empty_space) +"pil" = ( +/obj/structure/cargo_container/hybrisa/containersextended/greywyright, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"piq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/paper{ + pixel_x = 2 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/cent_com) +"piA" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"piC" = ( +/turf/open/floor/prison/darkbrown2/northeast, +/area/navalis/indoors/logistic/primary_storage) +"piJ" = ( +/obj/structure/bed, +/obj/item/bedsheet/green, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"piM" = ( +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/closed/wall/mineral/bone_resin{ + opacity = 0 + }, +/area/navalis/oob/powered) +"piW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/med_sci/lower_level/port) +"pjr" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/meeting_hall) +"pjC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/secure, +/obj/effect/decal/cleanable/cobweb2, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"pjP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"pjR" = ( +/obj/structure/machinery/landinglight/ds2{ + dir = 8 + }, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"pjT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"pjV" = ( +/obj/structure/prop/hybrisa/Factory/Robotic_arm{ + dir = 4; + layer = 4.2; + pixel_y = 6; + level = 5; + pixel_x = -13 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"pjX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + pixel_x = -10 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"pjZ" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pks" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1; + layer = 3.33 + }, +/turf/open/floor/prison/floor_marked, +/area/navalis/outdoors/comm_one) +"pkG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/lower_level/starboard) +"pkR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 12 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/residential/cafeteria) +"pla" = ( +/obj/structure/largecrate/random/barrel/red, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"plk" = ( +/turf/open/floor/darkred2/southwest, +/area/navalis/indoors/residential/port) +"plC" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/records_room) +"plP" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/briefcase, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"pmc" = ( +/obj/structure/bed, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"pmm" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/exterior/ind_ext) +"pmX" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -10; + pixel_y = 10; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -10; + pixel_y = -14; + color = "#FFFF00" + }, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"pny" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"pnA" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/west, +/area/navalis/oob/powered) +"pnE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"pnH" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pnK" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/structure/largecrate/random/barrel/white{ + pixel_x = 5; + pixel_y = 13 + }, +/obj/structure/machinery/light/small{ + dir = 8; + pixel_x = -11; + pixel_y = 10 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"pnU" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"pnX" = ( +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob/water/far) +"pob" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair" + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"poo" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"poq" = ( +/obj/effect/decal/hybrisa/road/road_stop, +/obj/effect/decal/hybrisa/road/lines4, +/obj/vehicle/train/cargo/trolley{ + layer = 4.21 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"pox" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/chemical_store) +"poO" = ( +/obj/structure/lattice, +/turf/open_space, +/area/navalis/oob/empty_space) +"poP" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/corridor) +"poV" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"ppl" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/cent_com) +"pqg" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"pqx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/office) +"pqy" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/oob/powered) +"pqC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"pqT" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/command/office) +"pqV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"pre" = ( +/obj/structure/sink{ + pixel_x = 4; + pixel_y = 24 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/port) +"prk" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_x = -3; + pixel_y = 9 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"pro" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"prs" = ( +/obj/structure/bed/chair/office/light, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"prz" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/upper_deck/port) +"psc" = ( +/obj/structure/stairs/multiz/up, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"psl" = ( +/obj/structure/closet/firecloset/full, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/aft_hallway) +"psv" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"psy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/port) +"psN" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob/powered) +"psO" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"psU" = ( +/turf/open/floor/prison/ramptop/north, +/area/navalis/oob/water) +"pta" = ( +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"pth" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west{ + icon_state = "hybrisaplatform_broken"; + density = 0 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"ptl" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"pts" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ptR" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform_decoration/metal/kutjevo, +/turf/open_space, +/area/navalis/oob/empty_space) +"pus" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"puC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/aft_hallway) +"pvc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/indoors/logistic/primary_storage) +"pvA" = ( +/obj/structure/prop/resin_prop{ + icon_state = "coolanttank" + }, +/obj/structure/machinery/light/small, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"pvY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/charon/below_deck/front) +"pwg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/logistic/lower_deck/port) +"pwH" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/corridor) +"pxd" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/navalis/indoors/command/security) +"pxf" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy4{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"pxU" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/map_item, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"pxX" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"pyc" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"pyn" = ( +/turf/open/floor/corsat/browncorner, +/area/navalis/indoors/industrial/mining) +"pyy" = ( +/obj/structure/cargo_container/wy/mid, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"pyE" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"pyJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = 8; + pixel_x = -27 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/port) +"pyZ" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"pzd" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = -32 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/northwest, +/area/navalis/indoors/command/lower_deck/sub_pen) +"pzl" = ( +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 4; + name = "broken attachment cable"; + color = "#353935" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"pzy" = ( +/obj/structure/cargo_container/arious/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"pzO" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/item/tool/pen/red{ + pixel_x = 3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/office) +"pzV" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/darkgreen2/northwest, +/area/navalis/indoors/residential/accessway) +"pAi" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1/southeast, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"pAm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/darkred2/east, +/area/navalis/indoors/residential/cafeteria) +"pAq" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + dir = 4 + }, +/turf/closed/wall/strata_outpost/reinforced/hull{ + name = "PSV Charon" + }, +/area/navalis/oob/powered) +"pAy" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/navalis/indoors/residential/starboard) +"pAz" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"pAB" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 8 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pAF" = ( +/obj/structure/prop/resin_prop{ + icon_state = "closed_oxygen" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"pAO" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"pBd" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"pBj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"pBA" = ( +/obj/structure/prop/turbine{ + layer = 6; + explo_proof = 0 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"pBI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"pBL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"pCq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/machinery/floodlight, +/turf/open/floor/hybrisa/tile/green_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"pCO" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"pCX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"pDc" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"pDp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"pDO" = ( +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"pEq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"pEt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"pEQ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"pEU" = ( +/turf/open/floor/prison/greenblue/west, +/area/navalis/indoors/charon/below_deck/front) +"pEW" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/turf/open/floor/half_plate/green/east, +/area/navalis/outdoors/exterior/med_ext/upper) +"pFq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/supply/supplies/flares, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/workshop) +"pFL" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"pFT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/navalis/indoors/residential/cafeteria) +"pGi" = ( +/obj/item/tool/pen/blue{ + pixel_x = -1; + pixel_y = -4 + }, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"pGC" = ( +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 2; + id = "secret_access" + }, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"pGH" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/residential/cafeteria) +"pGZ" = ( +/obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark2{ + pixel_y = -3; + pixel_x = -6; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark2{ + unacidable = 1; + pixel_y = 17; + pixel_x = -14; + density = 0; + explo_proof = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob) +"pHj" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/indoors/logistic) +"pHl" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_y = 5; + pixel_x = -6 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"pHs" = ( +/obj/structure/stairs/multiz/up, +/obj/structure/platform_decoration/metal, +/turf/open/floor/prison/ramptop/north, +/area/navalis/outdoors/landing_zone_2) +"pHv" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/cafeteria) +"pHJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"pIb" = ( +/obj/structure/bed/chair/comfy, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"pIh" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/strata_outpost/reinforced/hull{ + name = "PSV Charon" + }, +/area/navalis/oob) +"pIk" = ( +/obj/item/tool/warning_cone{ + pixel_x = -2; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"pIv" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1 + }, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"pIL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/workshop) +"pIV" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"pIW" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/north, +/area/navalis/indoors/residential/starboard) +"pIZ" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 4; + icon_state = "bigrollerempty3_up"; + layer = 4 + }, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 21; + layer = 3.8 + }, +/obj/structure/machinery/firealarm{ + pixel_y = 25; + name = "medical emergency alarm" + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"pJb" = ( +/obj/structure/prop/almayer/computers/mission_planning_system{ + pixel_x = 9 + }, +/obj/structure/prop/hybrisa/misc/picture_oil{ + pixel_x = 6; + pixel_y = 28; + layer = 3.5 + }, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"pJA" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"pJC" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"pJK" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata, +/turf/open_space, +/area/navalis/indoors/logistic/upper_deck/workshop) +"pJY" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/obj/item/trash/candle, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"pKy" = ( +/obj/structure/largecrate/empty{ + layer = 2.99 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"pKH" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_29"; + pixel_y = 1; + pixel_x = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"pKI" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/item/prop/magazine/book/starshiptroopers{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"pKK" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"pKO" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"pKP" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"pLz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/north, +/area/navalis/indoors/command/upper_deck/server) +"pLP" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/item/clothing/mask/breath/medical{ + pixel_x = 5; + pixel_y = -4 + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = 9 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/surg_two) +"pLS" = ( +/obj/structure/machinery/cm_vending/sorted/tech/comp_storage, +/turf/open/floor/hybrisa/tile/green_bigtile/southeast, +/area/navalis/indoors/command/tertiary_comms) +"pLT" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"pMd" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"pMv" = ( +/obj/structure/surface/table/almayer, +/obj/effect/spawner/random/technology_scanner{ + pixel_x = -7; + pixel_y = 4 + }, +/obj/item/prop/almayer/handheld1{ + pixel_x = 5; + pixel_y = 4 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"pMC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"pNf" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitered/west, +/area/navalis/indoors/med_sci/storage) +"pNx" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/hull, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/power) +"pNy" = ( +/obj/structure/shuttle/engine/heater{ + dir = 8; + pixel_x = -4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat, +/area/navalis/oob/powered) +"pNL" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/xeno_growth/residential) +"pOh" = ( +/turf/open/floor/darkgreen2/southwest, +/area/navalis/indoors/residential/accessway) +"pOr" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"pOs" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"pOw" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/corpsespawner/colonist/burst, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"pOQ" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyleft, +/obj/structure/cargo_container/hybrisa/containersextended/whitewyleft{ + layer = 4.2 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"pOU" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"pPg" = ( +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"pPp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"pPt" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"pPB" = ( +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"pPD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"pPG" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pQb" = ( +/obj/structure/largecrate/empty/secure, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"pQp" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"pQM" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"pQT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + layer = 6 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"pRa" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + pixel_y = -20 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"pRd" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pSe" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"pSt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/indoors/command/maintenance_port) +"pSu" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"pSy" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"pSA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/residential/port) +"pSE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"pSJ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble12{ + dir = 1; + pixel_x = -29; + pixel_y = 1; + layer = 4.2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"pTo" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3, +/turf/open_space, +/area/navalis/oob/empty_space) +"pTA" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -9; + pixel_x = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"pTC" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"pTN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/pipedispenser, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"pTP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/device/flashlight/lamp/tripod{ + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/command/lower_deck/starboard) +"pTW" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 8; + pixel_y = 4 + }, +/obj/item/tool/pen/blue{ + pixel_x = -16; + pixel_y = 4 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"pTX" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"pUj" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + dir = 1; + autoname = 1; + name = "\improper Airlock"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/entrance) +"pUN" = ( +/obj/structure/closet/bodybag, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"pUV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"pVf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pVx" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/cafeteria) +"pVA" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/kitchen) +"pVI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 1.1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"pVT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/starboard) +"pWv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = -17; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"pWx" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/middle) +"pWC" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"pWK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"pWO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/teal{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"pWQ" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = 10; + pixel_y = 21 + }, +/obj/effect/decal/cleanable/blood/drip{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/oob/powered) +"pXa" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"pXf" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"pXn" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"pXu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -3; + pixel_y = -5; + dir = 8 + }, +/obj/item/reagent_container/food/drinks/ice{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -14; + pixel_y = -14 + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + pixel_y = 32 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"pXA" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"pXR" = ( +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"pYe" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open_space, +/area/navalis/oob/water) +"pYk" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"pYw" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/airport/deadpilot2{ + name = "decapitated platform Pilot"; + desc = "What remains of a offshore platform Pilot. Their entire head is missing. Where'd it roll off to?..." + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/oob/powered) +"pYN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#8B7B5B" + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/reagent_container/food/drinks/sillycup{ + pixel_x = -5; + pixel_y = 10 + }, +/obj/item/prop/magazine/book/bladerunner{ + pixel_x = 8 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"pYP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/server_room) +"pZb" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/port_hallway) +"pZd" = ( +/obj/structure/machinery/computer3/server/rack, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/bluegrid, +/area/navalis/indoors/industrial/power) +"pZn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"pZq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"pZu" = ( +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 8; + pixel_x = -32; + density = 0 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/upper_deck/starboard) +"pZw" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"pZH" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/prison/greenblue/north, +/area/navalis/indoors/charon/below_deck/front) +"pZS" = ( +/turf/open/floor/prison/whitegreencorner/east, +/area/navalis/indoors/med_sci/main_floor) +"qac" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"qaf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"qak" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"qaV" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/hybrisa/misc/picture_oil{ + pixel_x = 8; + pixel_y = 29; + layer = 3.5 + }, +/obj/item/paper_bin{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/item/device/flashlight/lamp/on{ + pixel_y = -2; + pixel_x = -11 + }, +/obj/structure/sign/poster/corporate{ + pixel_y = 33; + pixel_x = -8 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/command/director_office) +"qaX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/barrel/yellow, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"qbh" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"qbt" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/power) +"qbx" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 6; + pixel_x = -7 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"qbD" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"qbW" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"qch" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"qcA" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = -1; + layer = 3.8 + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/main_floor) +"qcC" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/east, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"qcI" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"qdm" = ( +/obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark1{ + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob) +"qdF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = 12; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"qdH" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/starboard) +"qdK" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/port) +"qdL" = ( +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob) +"qei" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"qew" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"qeB" = ( +/obj/structure/prop/resin_prop{ + icon_state = "pscrubber:0" + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"qeI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"qeL" = ( +/obj/structure/barricade/handrail/pizza{ + color = "#36454F"; + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"qfh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/oft_duty_room) +"qfo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble1{ + pixel_y = 19; + pixel_x = -4; + density = 0 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"qfu" = ( +/obj/structure/sign/safety/stairs{ + pixel_y = 33 + }, +/obj/structure/sign/safety/two{ + pixel_y = 33; + pixel_x = 15 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/corridor) +"qfw" = ( +/obj/structure/toilet{ + pixel_y = 8 + }, +/obj/structure/machinery/shower{ + pixel_y = -10; + dir = 8; + pixel_x = -2 + }, +/obj/structure/sink{ + dir = 1; + pixel_x = -4; + pixel_y = -19 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/starboard) +"qfy" = ( +/turf/open/floor/hybrisa/metal/orangeline, +/area/navalis/indoors/industrial/power) +"qfK" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/navalis/indoors/industrial/accessway) +"qfU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"qgx" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"qgR" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"qhd" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"qhh" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/misc/elevator_door{ + pixel_x = -15 + }, +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/med_sci/main_floor) +"qhl" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/mid) +"qho" = ( +/turf/open/floor/half_plate/dark_yellow/west, +/area/navalis/outdoors/landing_zone_2) +"qhR" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -2; + pixel_x = -6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"qiJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"qiM" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/port) +"qiN" = ( +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/east, +/area/navalis/oob/powered) +"qiV" = ( +/turf/open/floor/half_plate/dark_yellow/east, +/area/navalis/outdoors/landing_zone_2) +"qja" = ( +/obj/structure/platform/metal/kutjevo_smooth/north{ + layer = 2.9 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"qjn" = ( +/obj/effect/decal/navalis/plate_edge/darker, +/turf/open/floor/half_plate/dark_yellow, +/area/navalis/indoors/industrial/mining) +"qjH" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/west, +/area/navalis/oob/powered) +"qjL" = ( +/turf/open/floor/corsat/redcorner/east, +/area/navalis/indoors/industrial/refinery) +"qjQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"qjR" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = 11; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/port) +"qkc" = ( +/obj/item/device/flashlight/lamp/tripod{ + pixel_y = -3; + pixel_x = -5 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"qkm" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/item/tool/warning_cone{ + pixel_x = -13; + pixel_y = 20 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"qko" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_x = 8 + }, +/obj/item/reagent_container/food/drinks/coffeecup/wy{ + pixel_x = -8; + pixel_y = 3 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/command/cent_com) +"qkp" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"qkB" = ( +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"qla" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"qld" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"qlg" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"qlq" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"qmb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"qmK" = ( +/obj/structure/platform/metal/strata/north{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"qmP" = ( +/obj/structure/machinery/optable, +/obj/effect/landmark/corpsespawner/colonist/burst, +/obj/effect/decal/cleanable/blood, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_y = 1; + layer = 4; + pixel_x = -24 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/surg_two) +"qnr" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/outdoors/exterior/com_ext/upper) +"qnx" = ( +/obj/structure/machinery/chem_dispenser, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/pharmacy) +"qnE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"qnH" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"qnS" = ( +/turf/open_space, +/area/navalis/indoors/med_sci/chemical_store) +"qod" = ( +/obj/structure/machinery/recharge_station, +/turf/open/floor/hybrisa/tile/green_bigtile/northwest, +/area/navalis/indoors/command/tertiary_comms) +"qoi" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"qor" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 18; + pixel_y = 10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"qoC" = ( +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"qoH" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/west, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"qpb" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"qpe" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"qpj" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cans/sodawater, +/obj/item/reagent_container/food/drinks/cans/sodawater{ + pixel_y = -3; + pixel_x = -6 + }, +/obj/item/reagent_container/food/drinks/cans/sodawater{ + pixel_x = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"qpq" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"qpt" = ( +/turf/open/floor/half_plate/dark_yellow, +/area/navalis/outdoors/landing_zone_2) +"qqp" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"qqK" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 6; + pixel_y = 5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"qqT" = ( +/obj/structure/platform/metal/strata, +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 6 + }, +/obj/structure/sign/safety/stairs{ + pixel_x = 32 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"qqV" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"qrb" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -14 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"qrw" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"qrJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/logistic/lower_deck/maint) +"qsn" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/navalis/indoors/command/lower_deck/starboard) +"qsv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"qsM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = -17; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"qtx" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/logistic/upper_deck/maint) +"qtD" = ( +/obj/structure/machinery/cm_vending/sorted/medical/blood, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/storage) +"qtR" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/east, +/obj/structure/platform/stone/strata/west, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis, +/area/navalis/oob/water/far) +"qtT" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/cup{ + pixel_y = -12; + pixel_x = 6 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + pixel_y = 6; + pixel_x = -7 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_17"; + layer = 4; + pixel_x = 17; + pixel_y = -2 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/indoors/med_sci/break_room) +"quk" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"qus" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"qut" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/residential/cafeteria) +"quu" = ( +/obj/structure/machinery/floodlight, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"quv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2/northeast, +/area/navalis/indoors/residential/port) +"quO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/trash/plate{ + pixel_x = -4; + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"quP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"quT" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"qve" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"qvw" = ( +/obj/item/trash/cigbutt, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"qvQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/med_sci/lower_level/starboard) +"qwm" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/landing_zone_1/under) +"qwC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/greenright, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"qwV" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"qxb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"qxj" = ( +/obj/item/paper/crumpled{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"qxr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"qxs" = ( +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/starboard) +"qxz" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"qxT" = ( +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 6; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"qxU" = ( +/obj/structure/platform_decoration/metal/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"qxZ" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"qyb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/case, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"qyx" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/item/trash/ceramic_plate, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"qyR" = ( +/obj/structure/surface/rack, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/item/ore/diamond, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"qzf" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/west, +/area/navalis/indoors/residential/cafeteria) +"qzi" = ( +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/lower_level/port) +"qzv" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"qzx" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/lower) +"qzB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -10; + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"qzL" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy20" + }, +/area/navalis/oob/powered) +"qzT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"qzV" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/prop/almayer/CICmap/pmc{ + faction = "Survivor"; + name = "colony map table" + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"qzX" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_y = 3 + }, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"qAE" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/starboard) +"qAG" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"qAT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/foyer) +"qAW" = ( +/obj/structure/cargo_container/watatsumi/leftmid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"qBf" = ( +/obj/structure/stairs{ + dir = 1 + }, +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/corridor) +"qBq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/landing_zone_2) +"qBs" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"qBz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/southeast, +/area/navalis/indoors/med_sci/lower_level/port) +"qBB" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/platform/metal/strata/east{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"qCg" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"qCo" = ( +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/navalis/indoors/residential/starboard) +"qCx" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent2, +/turf/closed/wall/strata_outpost/reinforced{ + name = "PSV Charon" + }, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"qCE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"qCM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"qDY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -42; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 10; + pixel_x = -10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"qEC" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/starboard) +"qEE" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/navalis/outdoors/exterior/com_ext/lower) +"qEG" = ( +/obj/docking_port/stationary/marine_dropship/lz2{ + name = "LZ2: Engineering Landing Zone" + }, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/outdoors/landing_zone_2) +"qEJ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"qFn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + alpha = 220; + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/obj/structure/barricade/wooden, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"qFs" = ( +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/device/flashlight/lamp, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/almayer/black2/west, +/area/navalis/indoors/command/upper_deck/jani) +"qFA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 15; + pixel_x = 3 + }, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo/panelscorched, +/area/navalis/outdoors/landing_zone_1) +"qGf" = ( +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -9; + pixel_y = 10 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"qGh" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"qGi" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_2) +"qGy" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"qGL" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"qGP" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"qGS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/emcloset, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"qHa" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"qHJ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/cargo_container/hybrisa/containersextended/lightgreywyright, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"qHS" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"qIb" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"qIN" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"qIZ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"qJd" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"qJn" = ( +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"qJo" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname{ + dir = 8 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/starboard) +"qJR" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"qJT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/med_sci/upper_level/flight) +"qJU" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"qJZ" = ( +/turf/open/floor/hybrisa/metal/orangelinecorner/east, +/area/navalis/indoors/industrial/power) +"qKb" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"qKh" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext) +"qKz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/port) +"qKH" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"qKX" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"qLl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/main_floor) +"qLp" = ( +/turf/closed/wall/hybrisa/colony/engineering, +/area/navalis/indoors/industrial/power) +"qLq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = 11; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"qLA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"qLB" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/meter{ + pixel_y = 32 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"qLV" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"qMg" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"qMH" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"qNh" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"qNi" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/med_sci/lower_level/port) +"qNI" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"qNP" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/lower_level/starboard) +"qNZ" = ( +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"qOb" = ( +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue, +/area/navalis/indoors/residential/accessway) +"qOc" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"qOh" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 30 + }, +/obj/structure/bed/sofa/vert/white/bot, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"qOr" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/oob/powered) +"qOG" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12; + pixel_x = 7 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"qOO" = ( +/obj/structure/ore_box, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"qOR" = ( +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"qPE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/sink/kitchen{ + dir = 1; + pixel_y = -15 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_y = -9; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/med_sci/break_room) +"qPM" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/logistic/primary_storage) +"qPP" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"qPX" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"qPY" = ( +/obj/structure/platform/metal/stair_cut/strata_right, +/obj/structure/platform/metal/strata, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"qQI" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/med_sci/upper_level/store) +"qQO" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/cafeteria) +"qRK" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/computer/communications, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"qSa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"qSe" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"qSH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/upper_level/entrance) +"qTq" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"qTs" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"qTJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"qTM" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"qTP" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"qTQ" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"qTZ" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/blood, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"qUk" = ( +/turf/open/floor/prison/darkyellowcorners2/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"qUm" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"qUu" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -1; + pixel_y = 9; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/outdoors/landing_zone_1) +"qUD" = ( +/obj/structure/cargo_container/hd/left, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"qUE" = ( +/obj/structure/bed/chair/comfy/lime{ + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"qUP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/structure/machinery/disposal, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"qUT" = ( +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/port) +"qVf" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"qVq" = ( +/obj/structure/surface/table/almayer, +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_on{ + light_color = "#00f4ff"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -11; + pixel_y = 10 + }, +/obj/item/prop/almayer/flight_recorder{ + pixel_x = 9 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"qVQ" = ( +/obj/effect/alien/resin/sticky, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"qWF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"qWS" = ( +/obj/effect/decal/hybrisa/road/corner{ + dir = 4; + pixel_x = -1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"qWZ" = ( +/obj/structure/platform/metal/almayer/west, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"qXp" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"qXw" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 42; + pixel_x = 10 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 8; + pixel_y = 20; + layer = 3.20; + density = 0 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"qXE" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/starboard) +"qXJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 1; + pixel_y = 6; + buckling_y = 6 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/southeast, +/area/navalis/indoors/command/office) +"qXV" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"qXW" = ( +/obj/structure/filtration/machine_64x128/filtrationtank{ + pixel_y = -16; + density = 0 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/industrial/refinery) +"qYg" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"qYj" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"qYq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/case/small, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"qYs" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/drip{ + pixel_x = -15; + pixel_y = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"qYF" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"qYP" = ( +/turf/open/floor/prison/cell_stripe, +/area/navalis/outdoors/landing_zone_2) +"qZa" = ( +/obj/item/reagent_container/blood/empty{ + pixel_x = 10; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitered/west, +/area/navalis/indoors/med_sci/main_floor) +"qZp" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"qZs" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/closed/wall/mineral/bone_resin, +/area/navalis/oob) +"qZz" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/foyer) +"qZX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_5" + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/port) +"raw" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_x = 9; + pixel_y = -9; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"raz" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/structure/platform_decoration/metal/strata/west, +/obj/effect/landmark/crap_item, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"raF" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/south, +/area/navalis/indoors/residential/starboard) +"raM" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"raQ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33; + pixel_x = 2 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"raW" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -11; + pixel_y = -2; + dir = 8 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 2.5; + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"rbf" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/upper_deck/port) +"rbi" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"rbs" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"rbG" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/machinery/light, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"rbL" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_x = -16; + pixel_y = 15; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = 7; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/trash{ + pixel_x = -20; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"rci" = ( +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"rcF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"rcO" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/prop/invuln/catwalk_support{ + dir = 1; + pixel_y = -10 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"rdD" = ( +/obj/item/stack/sheet/wood{ + pixel_y = 7; + pixel_x = 5 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/starboard) +"rdF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"rdR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/arrow_west, +/area/navalis/indoors/med_sci/lower_level/port) +"rea" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4 + }, +/obj/structure/machinery/meter, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"reu" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/store) +"rew" = ( +/turf/open/floor/darkblue2/northwest, +/area/navalis/indoors/residential/accessway) +"rex" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/upper_deck/office) +"rfc" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"rfd" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rfo" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"rfD" = ( +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketcarrots, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"rfV" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"rfX" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/mech_bay) +"rgN" = ( +/turf/open/floor/corsat/darkgreen, +/area/navalis/indoors/logistic/lower_deck/fore) +"rgX" = ( +/turf/open/floor/prison/greenblue/southwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"rhh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison, +/area/navalis/indoors/command/meeting_hall) +"rhT" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"rie" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/spawner/random/gun/shotgun/midchance, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/sign/safety/ammunition{ + pixel_x = 23; + pixel_y = 31 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28 + }, +/turf/open/floor/prison/red/north, +/area/navalis/indoors/command/security) +"rim" = ( +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"rio" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"ris" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/oft_duty_room) +"rix" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"riA" = ( +/turf/open_space, +/area/navalis/indoors/logistic/upper_deck/maint) +"riK" = ( +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 7 + }, +/obj/structure/filingcabinet/filingcabinet{ + density = 0; + pixel_x = 7; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/morgue) +"riL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade"; + layer = 2.98 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/aft_hallway) +"rjb" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_x = 16; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3; + pixel_x = 16 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"rjk" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + color = "#d3d3d3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"rjp" = ( +/turf/open/floor/corsat/brown/northeast, +/area/navalis/indoors/industrial/mining) +"rjv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"rjI" = ( +/obj/structure/prop/ice_colony/ice_crystal{ + name = "deep sea crystal"; + desc = "A giant crystal brought up from the ocean floor during the excavation and mining operations of this rig. According to the inscryption on the table, this crystal was dragged up manually by the site director."; + pixel_y = 5 + }, +/obj/structure/surface/table/reinforced/cloth{ + color = "#712215" + }, +/obj/structure/sign/poster/wylogo{ + pixel_y = 32; + layer = 2.9 + }, +/obj/structure/displaycase/destroyed{ + pixel_y = 8; + layer = 2.9 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/command/director_office) +"rjN" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/reagent_analyzer, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + pixel_y = 31 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/pharmacy) +"rkb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/port) +"rks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"rky" = ( +/turf/closed/wall/mineral/bone_resin{ + opacity = 0 + }, +/area/navalis/oob/powered) +"rkF" = ( +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/accessway) +"rkG" = ( +/obj/structure/monorail{ + dir = 5; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 2 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"rkQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/almayer/plating2/north, +/area/navalis/indoors/med_sci/lower_level/port) +"rld" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/navalis/indoors/residential/starboard) +"rlx" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"rmm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/logistic/lower_deck/fore) +"rmx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/obj/structure/platform/metal/hybrisa/metalplatform4, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 3; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"rmY" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"rmZ" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/xeno_growth/residential) +"rnA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini/ammo{ + pixel_y = 12; + pixel_x = 5 + }, +/obj/structure/largecrate/random/mini/med{ + pixel_x = -4; + pixel_y = -3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/port) +"rnI" = ( +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/morgue) +"rnM" = ( +/obj/structure/stairs, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"rof" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"roq" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/navalis/indoors/med_sci/chemical_store) +"roE" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"roQ" = ( +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/mech_bay) +"rpg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"rpi" = ( +/turf/open/floor/almayer/redfull2, +/area/navalis/outdoors/exterior/med_ext/upper) +"rpj" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/reagent_container/food/drinks/jar{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"rpn" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"rqr" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"rqA" = ( +/obj/structure/bed/chair/comfy/hybrisa/blue{ + pixel_y = -1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"rqB" = ( +/turf/open/floor/prison/darkyellow2/east, +/area/navalis/indoors/command/lower_deck/sub_pen) +"rqH" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"rqQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"rqT" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"rrG" = ( +/obj/effect/decal/cleanable/vomit, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"rrK" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rrP" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"rsl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_x = 8; + pixel_y = 15 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"rsz" = ( +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/power) +"rsA" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/server_room) +"rsC" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12; + pixel_y = 19 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"rsG" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + color = "#343434" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/charon/below_deck/middle) +"rsO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/prison/floor_marked, +/area/navalis/outdoors/comm_one) +"rsV" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"rta" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"rtA" = ( +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"rtO" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_y = 5; + pixel_x = -6 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"ruj" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"ruu" = ( +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"ruO" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_y = 22; + pixel_x = 2 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"rvc" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty{ + pixel_y = 6 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"rvi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rvq" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"rvw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"rwn" = ( +/obj/structure/xenoautopsy/jar_shelf, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"rwC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"rwH" = ( +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"rwV" = ( +/obj/structure/machinery/photocopier, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"rwW" = ( +/obj/structure/closet, +/obj/item/storage/pouch/construction, +/obj/item/tool/weldpack/minitank, +/obj/effect/spawner/random/tech_supply, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"rxa" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"rxz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"rxG" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/primary_storage) +"rxO" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -8; + pixel_y = 28 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"ryb" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + pixel_y = 11; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = -16; + pixel_y = -14; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = 8; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"ryd" = ( +/obj/structure/machinery/power/port_gen/pacman, +/turf/open/floor/corsat/darkgreen/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"ryl" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"ryo" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2; + pixel_y = -32 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/surg_one) +"rys" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"ryw" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/starboard) +"ryB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/black/northwest, +/area/navalis/indoors/residential/cafeteria) +"ryK" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"ryM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/secure, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"ryZ" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"rza" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/command/lower_deck/port) +"rzk" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"rzr" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/med_sci/lower_level/port) +"rzu" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bluecorner/north, +/area/navalis/indoors/med_sci/lower_level/records) +"rzA" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"rzP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/darkbrown2/northeast, +/area/navalis/indoors/logistic/upper_deck/office) +"rAw" = ( +/obj/structure/surface/table/woodentable/fancy, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/starboard) +"rAP" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = 10; + pixel_x = 9 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"rAS" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"rAW" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire, +/obj/structure/largecrate/empty{ + layer = 2 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"rBp" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"rBz" = ( +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = -22 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"rBA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/logistic/lower_deck/maint) +"rBO" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/outdoors/exterior/com_ext/upper) +"rBQ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"rBR" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/command/lower_deck/port) +"rCg" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/blue/west, +/area/navalis/indoors/residential/accessway) +"rCh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"rCE" = ( +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/flight) +"rDh" = ( +/obj/effect/decal/hybrisa/road/lines2{ + color = "#5b9068" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"rDu" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"rDF" = ( +/obj/structure/bed/chair/comfy/hybrisa/red{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"rDG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/port) +"rEa" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rEg" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/structure/prop/resin_prop{ + dir = 1; + icon_state = "chair" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"rEr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -7; + pixel_y = 12; + layer = 3.1 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/logistic/lower_deck/maint) +"rFc" = ( +/obj/structure/window/framed/hybrisa/colony/hospital, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/upper_level/flight) +"rFy" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopright"; + color = "#d3d3d3" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"rFO" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/logistic/lower_deck/fore) +"rFP" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"rGw" = ( +/obj/structure/platform/metal/stair_cut/strata_right, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/upper_level/entrance) +"rGy" = ( +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"rGV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"rHi" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/entrance) +"rHq" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata, +/turf/open_space, +/area/navalis/outdoors/exterior/com_ext) +"rHA" = ( +/turf/open/floor/darkblue2/east, +/area/navalis/indoors/residential/accessway) +"rHC" = ( +/obj/structure/machinery/landinglight/ds2/delayone, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/stairs/multiz/down, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"rHP" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/plate, +/area/navalis/oob/water) +"rIk" = ( +/obj/structure/surface/table/almayer, +/obj/item/clothing/suit/bio_suit/virology{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/clothing/head/bio_hood/virology, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"rIs" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25; + pixel_x = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"rIA" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/upper) +"rIJ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2 + }, +/obj/structure/cable/white{ + icon_state = "2-4"; + level = 2; + pixel_x = -17; + pixel_y = 3 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/fore) +"rIY" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = 10; + pixel_x = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"rJy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/largecrate, +/obj/structure/largecrate/random/mini/small_case{ + pixel_x = -4; + pixel_y = 14 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"rJV" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/meeting_hall) +"rJX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/mini/chest/b, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"rKf" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"rKm" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 2; + pixel_y = 3 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/flight) +"rKs" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"rKE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/north, +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"rKU" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"rKZ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/trash/chunk, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/biege, +/area/navalis/indoors/residential/kitchen) +"rLj" = ( +/obj/structure/bed/sofa/south/white, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"rMe" = ( +/obj/structure/platform/metal/almayer/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_2) +"rMv" = ( +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"rMH" = ( +/obj/effect/decal/navalis/plate_edge/darker, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"rMI" = ( +/obj/structure/stairs/multiz/up, +/obj/structure/platform/metal/strata/east, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"rMK" = ( +/turf/open/floor/almayer_hull/outerhull_dir/east, +/area/navalis/indoors/industrial/accessway) +"rNg" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 4; + pixel_y = 14 + }, +/obj/item/device/radio{ + pixel_x = -4; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"rNF" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/landing_zone_2) +"rNU" = ( +/obj/structure/window/framed/solaris, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/lower_level/port) +"rOd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 8; + pixel_y = 11 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/conferance) +"rOe" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3"; + pixel_x = -10; + pixel_y = -2 + }, +/turf/open/floor/prison/red/west, +/area/navalis/indoors/med_sci/upper_level/sec) +"rOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"rOj" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_on{ + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/computerbrown/computer3, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/command/cent_com) +"rOk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2"; + layer = 2.1 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"rOw" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/residential/starboard) +"rOz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_10"; + pixel_x = 5; + pixel_y = 1 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/green/northeast, +/area/navalis/indoors/command/starboard_hallway) +"rON" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 21; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/lower_deck/port) +"rOU" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6" + }, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/primary_storage) +"rPG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/flight) +"rPJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"rPK" = ( +/turf/open/floor/prison/darkbrown2/southeast, +/area/navalis/indoors/logistic/primary_storage) +"rQq" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/foyer) +"rQy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/guns/russian{ + icon_state = "case_double" + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rQD" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"rQE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood/redwood, +/area/navalis/indoors/command/director_office) +"rQO" = ( +/obj/structure/largecrate/empty/case/double{ + layer = 2.9 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"rRg" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3, +/obj/structure/surface/table/almayer, +/obj/item/ashtray/plastic{ + pixel_y = -3; + pixel_x = -7; + name = "cup holder" + }, +/obj/item/reagent_container/food/drinks/cup{ + pixel_x = -6; + pixel_y = 5 + }, +/obj/item/phone{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"rRn" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/red/west, +/area/navalis/indoors/med_sci/upper_level/sec) +"rRt" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"rRx" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#3f5b41"; + pixel_y = -8; + pixel_x = 3; + name = "rubber mat" + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"rRT" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rRU" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"rSH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"rSN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/landing_zone_2) +"rSO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"rTb" = ( +/obj/structure/prop/hybrisa/xenobiology/small/cracked1, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"rTC" = ( +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/corridor) +"rTE" = ( +/obj/structure/lattice, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"rUh" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/entrance) +"rUm" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/item/tool/wet_sign{ + pixel_x = 8 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"rUr" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 14 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 14 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"rUF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/lower_level/records) +"rUQ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/southwest, +/area/navalis/indoors/med_sci/lower_level/starboard) +"rUU" = ( +/obj/structure/largecrate/empty{ + layer = 2.99 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"rVg" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"rVq" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"rVs" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/barrel/brown, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/workshop) +"rVx" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"rVC" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"rVL" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"rVO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/residential/cafeteria) +"rVR" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"rWd" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8" + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + id = "vessellockdown"; + name = "PSV Charon - Vehicle Accessway"; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"rWz" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"rWE" = ( +/obj/structure/platform/metal/almayer/east, +/obj/structure/machinery/power/smes/buildable{ + capacity = 1e+006; + dir = 1; + layer = 2.9 + }, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/indoors/industrial/power) +"rXf" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -14 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"rXj" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"rXp" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorbig_off{ + pixel_y = 33 + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_x = 2 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/server_room) +"rXv" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/stairs/multiz/up, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/science_lower_entrance) +"rXJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"rXN" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_y = 16 + }, +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/com_ext/upper) +"rXV" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"rYp" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + pixel_y = -19; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"rYu" = ( +/turf/open/floor/corsat/darkgreencorner/east, +/area/navalis/indoors/industrial/refinery) +"rYJ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"rYV" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"rZz" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/entrance) +"rZH" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/chem_dispenser/soda{ + pixel_y = 5 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"saa" = ( +/obj/structure/showcase{ + breakable = 1; + density = 0; + desc = null; + icon_state = "igniter0"; + name = "floor panel" + }, +/obj/structure/reagent_dispensers/fueltank/spacecraft, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"saj" = ( +/turf/open/floor/corsat/brown/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"sao" = ( +/obj/structure/barricade/handrail/pizza{ + color = "#36454F"; + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"sax" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty{ + icon_state = "bigrollerempty_up"; + layer = 4 + }, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 19; + layer = 3.8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"saD" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + pixel_x = -4 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"saG" = ( +/obj/structure/cargo_container/hd/right, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"saO" = ( +/obj/structure/platform/metal/almayer/north, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning_smooth" + }, +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"sbf" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"sbs" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"sbu" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/cargo_container/kelland/left{ + layer = 2.9 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"sbz" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1 + }, +/turf/open/floor/corsat/blue/west, +/area/navalis/indoors/charon/below_deck/middle) +"sbO" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/spawner/random/attachment, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"sbR" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/almayer/handheld1{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"sbS" = ( +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"scs" = ( +/obj/structure/machinery/big_computers/messaging_server/brown, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_off{ + pixel_x = 33 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/server_room) +"scu" = ( +/obj/structure/cargo_container/hybrisa/containersextended/whitewyleft, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"sdh" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/meeting_hall) +"sdm" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"sdY" = ( +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"sec" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/delivery) +"set" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"seA" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 20; + pixel_x = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"seC" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/southeast, +/area/navalis/indoors/residential/starboard) +"sfy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"sfQ" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/effect/spawner/random/gun/rifle/midchance, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/server_room) +"sfT" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = -2 + }, +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/jani) +"sga" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"sgE" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/primary_storage) +"sgO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/landing_zone_2) +"shC" = ( +/turf/open/floor/darkpurple2/northeast, +/area/navalis/indoors/residential/starboard) +"sid" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/port) +"siq" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"siu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"siU" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2/southeast, +/area/navalis/indoors/residential/port) +"sjh" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/mech_bay) +"sjr" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/delivery) +"sjw" = ( +/obj/structure/platform_decoration/metal/strata, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"sjy" = ( +/obj/structure/morgue, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/morgue) +"sjK" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/corsat/plate, +/area/navalis/oob) +"sjP" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"skC" = ( +/obj/structure/blocker/invisible_wall, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/oob/water) +"sll" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"slo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"slw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/med_sci/lower_level/port) +"slK" = ( +/obj/structure/closet, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"slR" = ( +/obj/structure/bed/chair{ + dir = 8; + pixel_x = -2; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/break_room) +"slU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10; + pixel_x = 18 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"smb" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/residential/landing_pad) +"smr" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow2"; + dir = 4; + pixel_x = -2 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/middle) +"sms" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + desc = "It is made of Fiberbush(tm). It contains asbestos. Studies say that greenery calms the mind due to some sort evolved mechanism in the brain. This plant is not calming."; + icon_state = "pottedplant_22"; + name = "synthetic potted plant"; + pixel_y = 8 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"smG" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"smH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/outdoors/landing_zone_1) +"smL" = ( +/obj/structure/closet/jcloset, +/obj/item/clothing/head/beret/jan, +/obj/item/clothing/shoes/galoshes, +/obj/item/clothing/under/rank/janitor, +/turf/open/floor/almayer/black2, +/area/navalis/indoors/command/upper_deck/jani) +"smS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"smY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"sna" = ( +/obj/structure/prop/hybrisa/vehicles/Colony_Crawlers/Crawler_Cargo{ + pixel_y = -7; + pixel_x = -13 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"snv" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/indoors/xeno_growth/residential) +"snD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"snY" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/navalis/indoors/command/lower_deck/sub_pen) +"sow" = ( +/obj/structure/closet/secure_closet/fridge, +/obj/structure/sign/safety/refridgeration{ + pixel_y = -30 + }, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/med_sci/break_room) +"soB" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_y = -1; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"soG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/port) +"soQ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"soU" = ( +/turf/open/floor/prison/green, +/area/navalis/indoors/command/aft_hallway) +"sph" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/walkway) +"spn" = ( +/obj/structure/window/framed/hybrisa/colony/engineering, +/turf/open/floor/plating, +/area/navalis/outdoors/landing_zone_2/under) +"spt" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/blue, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"spw" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate2/indestructible, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/plate, +/area/navalis/oob/water) +"spH" = ( +/turf/open/floor/prison/darkpurple2/north, +/area/navalis/indoors/command/upper_deck/server) +"sqh" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"sqk" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/northwest, +/area/navalis/indoors/residential/cafeteria) +"sqq" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"sqx" = ( +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/front) +"sqC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"sqN" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = -2; + pixel_y = 2 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"sro" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"srr" = ( +/obj/structure/machinery/big_computers/computerblack/computer4, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_on{ + dir = 1; + light_color = "#00da64"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"srB" = ( +/obj/structure/bed/chair{ + buckling_y = 5; + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"srE" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"ssg" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact"; + pixel_y = 3; + pixel_x = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"ssr" = ( +/obj/structure/prop/ice_colony/soil_net/navalis_indestructible{ + layer = 2 + }, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"ssv" = ( +/turf/open/floor/darkgreen2/west, +/area/navalis/indoors/residential/accessway) +"ssM" = ( +/obj/structure/window_frame/solaris, +/obj/item/shard{ + icon_state = "medium" + }, +/turf/open/floor/plating/platingdmg3, +/area/navalis/indoors/logistic/lower_deck/port) +"ssS" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_x = 31 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"stz" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"sud" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 1; + pixel_y = -3; + pixel_x = -5 + }, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 10; + pixel_y = 6 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/morgue) +"suf" = ( +/obj/structure/window/framed/hybrisa/colony/office, +/turf/open/floor/plating, +/area/navalis/indoors/command/tertiary_comms) +"suh" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"suq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/port) +"sur" = ( +/obj/structure/window/framed/hybrisa/colony/engineering/hull, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/refinery) +"suv" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_2/under) +"suG" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/mech_bay) +"svf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"swb" = ( +/turf/open/floor/hybrisa/metal/orangeline/west, +/area/navalis/indoors/industrial/refinery) +"swd" = ( +/obj/item/tool/warning_cone{ + pixel_x = -11; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/chemical_store) +"swv" = ( +/obj/structure/platform/stone/strata/west, +/turf/open_space, +/area/navalis/indoors/xeno_growth/residential) +"swz" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/industrial/refinery) +"swC" = ( +/obj/structure/prop/hybrisa/Factory/Robotic_arm/Flipped{ + dir = 8; + pixel_y = 3; + pixel_x = -7; + desc = "A robotic arm used to assist in operating and repairing the internal mining equipment." + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"swG" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"sxk" = ( +/turf/open/floor/half_plate/green/west, +/area/navalis/outdoors/landing_zone_1) +"sxo" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/server_room) +"sxy" = ( +/obj/structure/prop/server_equipment/broken, +/obj/structure/machinery/light, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"sxA" = ( +/obj/vehicle/train/cargo/trolley, +/obj/structure/largecrate/random/barrel/blue{ + layer = 4.2; + pixel_y = 5 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"sxP" = ( +/obj/structure/flag/plantable/ua, +/turf/closed/wall/strata_outpost/reinforced{ + name = "PSV Charon" + }, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"sxT" = ( +/obj/structure/platform/metal/strata/west, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"syj" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"syq" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"syv" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/mid) +"syB" = ( +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 6; + name = "broken attachment cable"; + color = "#353935" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"syS" = ( +/turf/open/floor/prison/darkyellow2/west, +/area/navalis/indoors/logistic/mech_bay) +"syW" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/command/lower_deck/port) +"szk" = ( +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/storage) +"szt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/industrial/refinery) +"szy" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/taperecorder{ + pixel_y = -5; + pixel_x = -5 + }, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/office) +"szS" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"sAg" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"sAj" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"sAw" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"sAx" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"sAU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"sAX" = ( +/obj/structure/prop/invuln/lattice_prop{ + icon_state = "lattice12"; + pixel_y = 2 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"sBi" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"sBJ" = ( +/obj/structure/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"sBY" = ( +/turf/open/floor/corsat/darkgreen/west, +/area/navalis/indoors/industrial/refinery) +"sBZ" = ( +/obj/structure/filtration/machine_64x96/sedementation, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"sCu" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"sCv" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2/north, +/area/navalis/indoors/residential/port) +"sCx" = ( +/obj/structure/prop/hybrisa/xenobiology/small/empty, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"sCA" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/middle) +"sDa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"sDb" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"sDf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"sDr" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/turf/open/floor/prison/darkbrowncorners3/north, +/area/navalis/indoors/med_sci/lower_level/port) +"sDt" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"sDw" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname{ + dir = 1 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/storage) +"sDy" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/microwave, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"sDP" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"sEC" = ( +/obj/structure/closet/crate, +/obj/item/tool/crowbar/tactical, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"sED" = ( +/obj/structure/prop/hybrisa/Factory/Robotic_arm/Flipped{ + pixel_y = 5; + pixel_x = -24 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"sEF" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/accessway) +"sEW" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/port) +"sFg" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/obj/structure/machinery/colony_floodlight, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"sFj" = ( +/obj/structure/platform/metal/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"sFl" = ( +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/middle) +"sFJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + pixel_x = -1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"sFM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"sFW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"sFZ" = ( +/obj/structure/largecrate/random/barrel{ + pixel_x = -2; + pixel_y = 20; + layer = 4.2 + }, +/obj/structure/largecrate/random/barrel{ + layer = 4.3; + pixel_x = 2; + pixel_y = 2 + }, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"sGj" = ( +/obj/structure/largecrate/random, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"sGo" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty2, +/obj/structure/machinery/firealarm{ + pixel_y = -30; + name = "medical emergency alarm" + }, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"sGq" = ( +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/effect/decal/hybrisa/trash{ + dir = 1; + icon_state = "trash_11" + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"sGu" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"sGW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/red/northeast, +/area/navalis/indoors/med_sci/upper_level/sec) +"sGY" = ( +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/entrance) +"sHa" = ( +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster/safety{ + pixel_x = 5; + pixel_y = 32; + layer = 2.9 + }, +/obj/item/storage/belt/utility/full{ + pixel_x = 6; + pixel_y = 7 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"sHk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"sHu" = ( +/obj/structure/machinery/camera/autoname, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/residential/port) +"sHK" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/east, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"sId" = ( +/obj/structure/prop/resin_prop{ + icon_state = "sheater0" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/accessway) +"sIi" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"sIn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"sIF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/comfy/teal{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/corridor) +"sIH" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"sIL" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty3{ + dir = 4; + icon_state = "bigrollerempty3_up"; + layer = 4 + }, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 15; + layer = 3.8 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/upper_level/entrance) +"sIN" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 8; + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"sIO" = ( +/obj/structure/platform/metal/strata/north{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"sIP" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/med_sci/upper_level/corridor) +"sIQ" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"sIY" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/flight) +"sJe" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/cameras{ + dir = 1; + pixel_x = 8 + }, +/obj/structure/machinery/computer/communications/simple{ + dir = 1; + pixel_x = -10 + }, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/med_sci/upper_level/flight) +"sJt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"sJx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"sJB" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/dry_ramen{ + pixel_x = 9; + pixel_y = 10 + }, +/obj/item/trash/snack_bowl{ + pixel_x = -4; + pixel_y = 2 + }, +/obj/effect/spawner/random/gun/smg/midchance, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/command_kitchen) +"sJD" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/closed/wall/hybrisa/colony/office, +/area/navalis/indoors/command/tertiary_comms) +"sJO" = ( +/obj/structure/closet/crate, +/obj/item/stack/sheet/plasteel/small_stack, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"sJQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"sKf" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/oob/empty_space) +"sKk" = ( +/obj/structure/surface/rack, +/obj/item/stack/sheet/metal/medium_stack, +/turf/open/floor/prison/blue, +/area/navalis/indoors/logistic/workshop) +"sKx" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + dir = 1; + pixel_y = 1 + }, +/turf/open/floor/prison/whitered/north, +/area/navalis/indoors/med_sci/main_floor) +"sKT" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + layer = 1.9 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "test_warning" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/foyer) +"sKU" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/navalis/outdoors/exterior/log_ext/upper) +"sKX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 14 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"sKY" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/prison/ramptop, +/area/navalis/outdoors/landing_zone_2) +"sLj" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"sLl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"sLn" = ( +/obj/structure/prop/hybrisa/fakeplatforms/platform4{ + dir = 8 + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"sLx" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"sLz" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"sLD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/largecrate/random/barrel{ + layer = 2.9; + pixel_x = 6; + pixel_y = -16 + }, +/obj/structure/largecrate/random/barrel/red{ + layer = 2.8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"sLT" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/damaged2/southwest, +/area/navalis/indoors/logistic/primary_storage) +"sMa" = ( +/turf/open/floor/plating/platingdmg3/west, +/area/navalis/outdoors/landing_zone_2) +"sMl" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"sMm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/starboard) +"sMx" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"sMM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"sMN" = ( +/obj/structure/surface/table/almayer, +/obj/item/storage/box/cups{ + pixel_x = -8; + pixel_y = 4 + }, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/item/tool/pen, +/obj/effect/landmark/map_item, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"sMY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/item/stack/rods{ + pixel_x = -12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"sNb" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"sNe" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 1 + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"sNg" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"sNm" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/landing_zone_2) +"sNn" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/kitchen/knife, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"sNr" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/starboard) +"sNt" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"sNz" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaltopleft"; + color = "#d3d3d3" + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"sNH" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"sNV" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"sOp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/north, +/area/navalis/indoors/logistic/lower_deck/port) +"sOA" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"sOL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"sPc" = ( +/obj/structure/machinery/door/airlock/almayer/security/glass/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sec) +"sPl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/tertiary_comms) +"sPu" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/med_sci/lower_level/delivery) +"sPx" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"sPE" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"sPI" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy1" + }, +/area/navalis/oob/water) +"sPQ" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6, +/obj/effect/hybrisa/misc/fake/wire/blue{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + pixel_y = 1; + layer = 2.5 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"sPU" = ( +/turf/open/floor/prison/blue/southeast, +/area/navalis/outdoors/landing_zone_1) +"sQb" = ( +/obj/structure/machinery/big_computers/messaging_server/white{ + icon_state = "comm_server_o_off" + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"sQm" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"sQo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"sQv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_y = 7 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"sQw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/port) +"sQI" = ( +/obj/structure/machinery/door/airlock/almayer/generic, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/residential/kitchen) +"sQT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"sQV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"sRM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/log_ext/upper) +"sRX" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"sSq" = ( +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 13; + pixel_y = 16; + density = 0; + name = "pole signal"; + layer = 3 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 16; + density = 0; + name = "pole signal"; + layer = 3 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 16; + density = 0; + name = "pole signal"; + layer = 3 + }, +/obj/structure/sign/safety/west{ + pixel_x = 7; + pixel_y = 26 + }, +/obj/structure/sign/safety/hvac{ + pixel_x = 7; + pixel_y = 11; + name = "Creature Hazard Warning"; + desc = "A warning that aquatic creatures have climbed on to this platform via the lattice support." + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/almayer/mono, +/area/navalis/outdoors/landing_zone_2) +"sSs" = ( +/obj/structure/prop/hybrisa/supermart/freezer/supermartfreezer1{ + density = 0 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"sSx" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/obj/effect/spawner/random/gun/pistol/midchance, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"sSD" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"sSH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/med_sci/upper_level/corridor) +"sSM" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#a57451" + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"sST" = ( +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"sTc" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -5; + pixel_y = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"sTd" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"sTG" = ( +/obj/item/reagent_container/food/drinks/coffee{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/structure/machinery/big_computers/messaging_server/black, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/cent_com) +"sUl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/obj/item/ammo_magazine/smg/p90{ + pixel_x = 10; + pixel_y = 9 + }, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"sUE" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"sUN" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/maint) +"sVb" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"sVe" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_off{ + pixel_y = 28 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer, +/area/navalis/indoors/med_sci/records_room) +"sVG" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/flashlight/lamp/on{ + pixel_y = 3; + pixel_x = -1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/port) +"sVH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/chemical_store) +"sVT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/effect/hybrisa/misc/fake/pipes{ + pixel_y = 19 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"sWp" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, +/area/navalis/indoors/residential/starboard) +"sWt" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/mining) +"sXb" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"sXe" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/west, +/area/navalis/indoors/residential/cafeteria) +"sXo" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"sXp" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/ashtray/bronze{ + icon_state = "ashtray_full_bl"; + pixel_x = 2; + pixel_y = 1 + }, +/obj/item/trash/cigbutt{ + pixel_x = -2; + pixel_y = 3 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/effect/spawner/random/gun/shotgun/midchance, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"sXG" = ( +/obj/item/stack/rods{ + pixel_y = 14 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/effect/landmark/crap_item, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"sXK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"sYz" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/logistic/lower_deck/fore) +"sYW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"sYZ" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"sZk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/tile/green_bigtile/east, +/area/navalis/indoors/residential/cafeteria) +"sZs" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/almayer_hull/outerhull_dir/north, +/area/navalis/outdoors/exterior/med_ext/upper) +"tae" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southeast, +/area/navalis/indoors/med_sci/lower_level/records) +"tag" = ( +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"tak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"tal" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"tat" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"tav" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"tay" = ( +/turf/open/floor/darkpurple2/east, +/area/navalis/indoors/residential/starboard) +"taO" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"taR" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"taW" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"taX" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/command_kitchen) +"tbB" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"tbG" = ( +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor/plating/burnt_platingdmg3/west, +/area/navalis/indoors/med_sci/chemical_store) +"tbP" = ( +/obj/structure/machinery/door/poddoor/hybrisa/secure_red_door{ + dir = 4; + unacidable = 1; + explo_proof = 1; + name = "Sector Two Blastdoors"; + id = "sector_two"; + needs_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/power) +"tcf" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/structure/bed/chair{ + pixel_y = 2; + pixel_x = 8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"tct" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"tcF" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 1; + pixel_y = -6 + }, +/obj/item/tool/warning_cone{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/chemical_store) +"tcG" = ( +/turf/open/floor/prison/greenblue, +/area/navalis/indoors/charon/below_deck/front) +"tcK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"tcZ" = ( +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"tdh" = ( +/turf/open/floor/prison/darkyellowfull2/east, +/area/navalis/indoors/industrial/mining) +"tdk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe4{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"tdn" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Brown{ + dir = 1; + pixel_y = 5 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"tdL" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/plating/kutjevo/panelscorched, +/area/navalis/outdoors/landing_zone_1) +"tdM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"teb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/logistic/lower_deck/port) +"tec" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/upper_level/entrance) +"tel" = ( +/obj/structure/surface/rack, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -5; + pixel_y = 2; + layer = 2.8 + }, +/obj/item/prop{ + desc = "A blood bag with a hole in it. The rats must have gotten to it first."; + icon = 'icons/obj/items/bloodpack.dmi'; + icon_state = "bloodpack"; + name = "blood bag"; + pixel_x = -2; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/darkish, +/area/navalis/indoors/med_sci/upper_level/store) +"ter" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"teC" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"teE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"teI" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"teJ" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreencorner/east, +/area/navalis/indoors/med_sci/pharmacy) +"teL" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/tool/hand_labeler, +/obj/effect/landmark/objective_landmark/medium, +/obj/item/device/defibrillator/synthetic/hyperdyne{ + pixel_x = 4; + pixel_y = 7 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"teN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/chemical_store) +"teT" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"tfw" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"tfA" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"tfC" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/structure/machinery/botany/extractor{ + pixel_x = -1; + pixel_y = 6 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"tfI" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/industrial/accessway) +"tfV" = ( +/obj/structure/prop/hybrisa/airport/refuelinghose2{ + pixel_x = -33; + pixel_y = -12; + dir = 1; + layer = 3.2 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"tgs" = ( +/obj/structure/cargo_container/hybrisa/containersextended/kelland_left, +/turf/open/floor/corsat/box, +/area/navalis/indoors/charon/below_deck/rear) +"thj" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced/hull, +/area/navalis/indoors/command/cent_com) +"thk" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"thC" = ( +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"thJ" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"thW" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy22" + }, +/area/navalis/oob/powered) +"tif" = ( +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"tir" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"tiQ" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"tjb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + pixel_y = 12 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/chemical_store) +"tjn" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 1 + }, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"tjz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4; + pixel_x = -4; + buckling_x = -4 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"tjI" = ( +/obj/structure/largecrate/empty, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"tkb" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 3.33 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"tkI" = ( +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 16 + }, +/turf/open/floor/prison/green, +/area/navalis/indoors/med_sci/upper_level/corridor) +"tkK" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 9 + }, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/meeting_hall) +"tlo" = ( +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"tlC" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/wood_clock{ + pixel_y = 32 + }, +/obj/structure/machinery/big_computers/computerbrown/computer2{ + pixel_x = -6 + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = 9; + pixel_y = -8 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/command/cent_com) +"tlD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7" + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"tlV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3/west, +/area/navalis/indoors/logistic/lower_deck/port) +"tlY" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/flashlight/lamp/on{ + pixel_x = 2; + pixel_y = -2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"tmo" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"tmJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/command/cent_com) +"tmR" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"tmX" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"tmY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"tny" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/faxmachine{ + pixel_x = -1; + pixel_y = 3 + }, +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/command/cent_com) +"tnE" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"tnN" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"tnV" = ( +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"tnY" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/landing_zone_2) +"tom" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/logistic/primary_storage) +"tov" = ( +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/command/starboard_hallway) +"tpb" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"tpe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"tpr" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"tpJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/port) +"tqc" = ( +/turf/closed/wall/hybrisa/colony/hospital, +/area/navalis/indoors/med_sci/upper_level/entrance) +"tqw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"tqK" = ( +/obj/structure/platform/stone/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"tqV" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/gun/rifle/highchance, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/server_room) +"trg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/obj/structure/barricade/handrail{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"tsq" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/under/pj/blue, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"tst" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"tsG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/sigma, +/area/navalis/indoors/industrial/refinery) +"ttc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"tty" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"ttA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/structure/machinery/computer/cameras{ + dir = 8; + layer = 3.1 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/prison/red/east, +/area/navalis/indoors/med_sci/upper_level/sec) +"ttN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"ttQ" = ( +/obj/structure/surface/rack, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/adv/empty, +/obj/item/storage/firstaid/fire/empty, +/obj/item/storage/firstaid/fire/empty, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"tuf" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = 5; + pixel_x = -5 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"tuv" = ( +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/science_lower_entrance) +"tuy" = ( +/obj/structure/prop/resin_prop{ + icon_state = "barrel_yellow" + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"tuU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = -19; + pixel_x = -11 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"tuZ" = ( +/turf/open/floor/prison/rampbottom/north, +/area/navalis/outdoors/comm_one) +"tvo" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/port) +"tvY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/structure/machinery/door_control/navalis_command_lockdown{ + pixel_x = 30; + pixel_y = -23; + explo_proof = 1; + id = "comacc"; + name = "Command-Logistic Bridge Access"; + light_on = 1; + light_power = 2; + light_range = 3; + light_color = "#FFEFD2"; + needs_power = 0; + use_power = 0 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"twi" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"twr" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/starboard) +"tww" = ( +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"txw" = ( +/obj/structure/bed/sofa/south/grey/left, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"txI" = ( +/obj/structure/window/framed/hybrisa/colony, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/mech_bay) +"txQ" = ( +/obj/structure/largecrate/random/secure, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/command/lower_deck/sub_pen) +"txX" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"tya" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"tyb" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -7 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"tyf" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"tyk" = ( +/obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark3{ + pixel_x = -2; + pixel_y = -6; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/alien/weeds, +/obj/structure/blocker/invisible_wall, +/obj/structure/prop/hybrisa/boulders/smallboulderdark/boulder_dark3{ + pixel_x = 10; + pixel_y = 15; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob) +"tyB" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -25; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"tyW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/med_sci/lower_level/records) +"tzs" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"tAe" = ( +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"tAt" = ( +/turf/open_space, +/area/navalis/oob/empty_space) +"tAy" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/lower_level/port) +"tAA" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/oob) +"tAM" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/west, +/area/navalis/indoors/command/office) +"tAO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"tAW" = ( +/obj/structure/machinery/big_computers/computerbrown/computer2{ + pixel_x = 9 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/command/cent_com) +"tBk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_y = 12 + }, +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_27"; + layer = 3.1; + pixel_x = -2; + pixel_y = 10 + }, +/obj/structure/sign/safety/bathunisex{ + pixel_x = 32 + }, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/port_hallway) +"tBn" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"tCs" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"tCu" = ( +/turf/open/floor/corsat/plate, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"tCF" = ( +/turf/open/floor/corsat/darkgreen/east, +/area/navalis/indoors/industrial/refinery) +"tCN" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4, +/obj/structure/stairs{ + dir = 8; + icon_state = "ramptop" + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"tCR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"tDd" = ( +/obj/docking_port/stationary/marine_dropship/lz1{ + name = "LZ1: Medical Emergency Landing Zone" + }, +/turf/open/floor/almayer/redfull2, +/area/navalis/outdoors/landing_zone_1) +"tDi" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 8 + }, +/turf/open/floor/corsat/sterileplate, +/area/navalis/indoors/industrial/mining) +"tDl" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"tDz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 7; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"tDM" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/starboard) +"tEc" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/obj/item/device/radio{ + pixel_x = -8; + pixel_y = 7 + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = 9; + pixel_y = -3 + }, +/obj/structure/machinery/recharger, +/turf/open/floor/prison/red/east, +/area/navalis/indoors/med_sci/upper_level/sec) +"tEh" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/radio/headset{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/device/taperecorder{ + pixel_y = -5; + pixel_x = -5 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"tEk" = ( +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/starboard) +"tEz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/upper_deck/workshop) +"tEA" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/landing_zone_2) +"tEB" = ( +/obj/effect/decal/navalis/plate_edge/darker, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"tED" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"tEH" = ( +/obj/structure/surface/table/almayer, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/med_sci/upper_level/flight) +"tEK" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"tEN" = ( +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/industrial/power) +"tGf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/meeting_hall) +"tGt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/west, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/item/paper/crumpled{ + pixel_x = 20 + }, +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"tGE" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/conduit) +"tGS" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/lower_deck/maint) +"tHe" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11"; + pixel_y = 5; + pixel_x = -6 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"tHs" = ( +/turf/open/floor/darkredcorners2, +/area/navalis/indoors/residential/cafeteria) +"tHw" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"tHP" = ( +/turf/closed/wall/hybrisa/colony/engineering/reinforced/hull, +/area/navalis/oob/empty_space) +"tHU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/mech_bay) +"tHZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/starboard) +"tIn" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southwest, +/area/navalis/outdoors/exterior/com_ext/upper) +"tIB" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"tIJ" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/com_ext/upper) +"tIQ" = ( +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/obj/structure/platform/metal/strata, +/obj/structure/machinery/door/poddoor{ + explo_proof = 1; + needs_power = 0; + unacidable = 1; + name = "\improper Lockdown"; + emp_proof = 1; + dir = 4; + pixel_x = 32; + density = 0 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/med_sci/science_lower_entrance) +"tJc" = ( +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = 4; + name = "broken attachment cable"; + color = "#353935" + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8; + pixel_y = -11; + name = "broken attachment cable"; + color = "#353935"; + pixel_x = 15 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"tJE" = ( +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/corridor) +"tJO" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/comm_one) +"tJP" = ( +/turf/open/floor/almayer_hull/outerhull_dir, +/area/navalis/outdoors/exterior/log_ext/upper) +"tJZ" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer{ + dir = 2; + color = "#343434" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/lower_deck/starboard) +"tKh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + pixel_y = -21; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"tKj" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/outdoors/landing_zone_1) +"tKp" = ( +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/outdoors/exterior/com_ext/upper) +"tKr" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines4, +/obj/vehicle/train/cargo/engine, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"tKw" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/whitered/southwest, +/area/navalis/indoors/med_sci/storage) +"tKR" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5; + pixel_y = 1; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"tLf" = ( +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/obj/structure/platform/metal/strata{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"tLz" = ( +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/obj/structure/window/framed/hybrisa/colony/hospital/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/science_lower_entrance) +"tLN" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"tMi" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"tMy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/supply/medicine/iv, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"tMz" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"tMC" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/mid) +"tMU" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/indoors/med_sci/lower_level/starboard) +"tMZ" = ( +/obj/structure/machinery/iv_drip, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/surg_two) +"tNa" = ( +/obj/structure/window/framed/hybrisa/colony, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/upper_deck/entrance) +"tNb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/port) +"tNj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"tNB" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"tNH" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = -30 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/server_room) +"tNL" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"tNM" = ( +/turf/open/floor/almayer_hull/outerhull_dir/southeast, +/area/navalis/outdoors/exterior/log_ext/upper) +"tNO" = ( +/obj/structure/platform/metal/almayer/west{ + pixel_x = -3 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"tOG" = ( +/obj/effect/landmark/static_comms/net_two, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1; + layer = 3.33 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"tOO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/charon/below_deck/middle) +"tOZ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"tPh" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6; + pixel_x = -12 + }, +/obj/structure/prop/invuln/minecart_tracks{ + desc = "A pipe."; + dir = 4; + icon = 'icons/obj/pipes/pipes.dmi'; + icon_state = "intact"; + name = "Pipe"; + pixel_y = -12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/west, +/area/navalis/oob/powered) +"tPn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/barrel, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"tPA" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + locked = 1; + req_one_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/maintenance_starboard) +"tQj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/turf/open/floor/corsat/brown/north, +/area/navalis/indoors/industrial/mining) +"tQt" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SE-out"; + pixel_x = 1; + pixel_y = -1 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + pixel_y = -1 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"tQB" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/item/trash/cigbutt{ + pixel_x = 1; + pixel_y = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"tQI" = ( +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/cafeteria) +"tQL" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/obj/structure/pipes/standard/manifold/hidden/dark{ + dir = 1 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"tQM" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#6d6558"; + layer = 2.01; + dir = 8; + pixel_y = -39; + pixel_x = -8 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/accessway) +"tQP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkpurple2/east, +/area/navalis/indoors/command/upper_deck/server) +"tQR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/port_hallway) +"tRc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"tRj" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/darkpurple2/north, +/area/navalis/indoors/residential/starboard) +"tRx" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob) +"tRT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"tSo" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/starboard_hallway) +"tSs" = ( +/obj/structure/surface/table/almayer, +/obj/item/reagent_container/food/drinks/coffee{ + pixel_y = -2; + pixel_x = -6 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"tSv" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/west, +/area/navalis/indoors/residential/starboard) +"tSH" = ( +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"tSU" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/east, +/obj/structure/stairs/perspective{ + dir = 10; + icon_state = "p_stair_full"; + color = "#b8b8b0" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/cent_com) +"tTo" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clothing/shoes/brown{ + pixel_x = 5; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"tTp" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"tTq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/computer/cameras{ + dir = 4 + }, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/records) +"tTK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7"; + pixel_y = -10; + pixel_x = 12 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"tTY" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"tUe" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"tUr" = ( +/obj/effect/decal/hybrisa/colorable_rug{ + color = "#6e272e"; + layer = 2.01; + pixel_y = -8; + pixel_x = 6 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"tUE" = ( +/obj/structure/stairs, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"tUO" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/ramptop, +/area/navalis/oob/water) +"tUS" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/landing_zone_2) +"tVl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate/supply, +/obj/item/toy/plush/runner, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"tVG" = ( +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/structure/surface/rack, +/obj/item/ammo_magazine/flamer_tank, +/obj/item/ammo_magazine/flamer_tank, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"tWd" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"tWv" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/ash, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/med_sci/lower_level/port) +"tWB" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketpears{ + pixel_x = -3; + density = 0 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"tWQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"tWS" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo{ + dir = 4 + }, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"tXj" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"tXp" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/port) +"tXv" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"tXJ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"tXK" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/workshop) +"tXO" = ( +/obj/structure/prop/hybrisa/misc/floorprops/floorglass3, +/turf/open_space, +/area/navalis/outdoors/exterior/log_ext/upper) +"tYn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"tYo" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"tYA" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_y = 10 + }, +/obj/effect/landmark/map_item, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"tYG" = ( +/obj/structure/stairs{ + dir = 8 + }, +/obj/structure/platform/metal/strata/north, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/command/upper_deck/starboard) +"tYW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/logistic/lower_deck/maint) +"tYZ" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/lower_level/port) +"tZi" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/curtain/colorable_transparent{ + color = "#5a5a5a"; + alpha = 220; + layer = 3.2; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/item/trash/candle, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"tZy" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 9 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/aft_hallway) +"tZM" = ( +/obj/structure/machinery/space_heater/radiator/red{ + dir = 4; + pixel_y = 7 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4; + pixel_y = 8 + }, +/obj/item/trash/cigbutt{ + pixel_x = 7 + }, +/obj/item/trash/eat{ + pixel_x = 6; + pixel_y = -3 + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/command/conferance) +"uah" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/closet/emcloset, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"uak" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"uav" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/green/west, +/area/navalis/indoors/med_sci/upper_level/entrance) +"uaB" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/obj/structure/machinery/meter, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"uaG" = ( +/obj/item/lightstick/red/spoke/planted{ + pixel_x = -10; + pixel_y = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/med_ext/upper) +"uaH" = ( +/obj/structure/machinery/door/airlock/almayer/maint/colony/autoname{ + dir = 1; + req_one_access = null + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"uaU" = ( +/obj/structure/lattice, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + color = "#9c97a3"; + explo_proof = 1; + unacidable = 1; + unslashable = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/spawner/random/tool, +/turf/open/hybrisa/street/underground_unweedable, +/area/navalis/indoors/med_sci/main_floor) +"ubd" = ( +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"ubg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"ubm" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_port) +"ubw" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"ubD" = ( +/obj/structure/bed/chair/office/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/office) +"ubK" = ( +/turf/open/floor/darkblue2/southwest, +/area/navalis/indoors/residential/accessway) +"ubV" = ( +/obj/effect/alien/resin/sticky, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/cafeteria) +"ucd" = ( +/obj/structure/machinery/squeezer, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"ucg" = ( +/obj/structure/platform/metal/strata, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/kitchen) +"uco" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"ucq" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname{ + dir = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"ucK" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/workshop) +"ucR" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"udB" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/exterior/log_ext/upper) +"udR" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"udU" = ( +/obj/structure/barricade/handrail/wire, +/obj/effect/decal/cleanable/ash, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"udV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/green/southeast, +/area/navalis/indoors/command/port_hallway) +"udW" = ( +/obj/structure/shuttle/engine/heater{ + dir = 1 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat, +/area/navalis/oob/powered) +"ueK" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"ueN" = ( +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"ufa" = ( +/obj/structure/largecrate/empty{ + pixel_y = 6 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"ufj" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"ufE" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/upper_level/flight) +"ufJ" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"ufT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/office) +"ugd" = ( +/obj/structure/machinery/light, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northeast, +/area/navalis/indoors/residential/starboard) +"ugz" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"ugH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/turf/open/floor/prison/whitegreen/southeast, +/area/navalis/indoors/med_sci/upper_level/morgue) +"ugI" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"ugN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"uhe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/landing_zone_2) +"uid" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"uiq" = ( +/turf/open/floor/hybrisa/metal/orangeline/east, +/area/navalis/indoors/industrial/accessway) +"uiu" = ( +/obj/structure/prop/hybrisa/misc/buildinggreeblies/greeble10{ + pixel_x = 3 + }, +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/rear) +"uiG" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"uiI" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/platform/metal/stair_cut/strata_left, +/turf/open_space, +/area/navalis/indoors/command/upper_deck/port) +"uiN" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"ujm" = ( +/turf/open/floor/prison/darkpurple2/southeast, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"ujw" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"ujX" = ( +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_covered_bed"; + dir = 8 + }, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"ukC" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 8; + pixel_x = -27 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/walkway) +"ukE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/roadlines4, +/area/navalis/indoors/logistic/lower_deck/fore) +"ukF" = ( +/obj/structure/machinery/computer/crew, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"ulJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/workshop) +"ulS" = ( +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/port) +"ulU" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3" + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/aft_hallway) +"umc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/vehicles/Small_Truck/Mining, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"umo" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"umt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"umH" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/storage/box/bodybags, +/obj/structure/machinery/computer/med_data/laptop{ + dir = 8 + }, +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/med_sci/upper_level/morgue) +"umW" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/obj/structure/monorail{ + dir = 6; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 4; + pixel_y = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"unv" = ( +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"unM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/north, +/area/navalis/oob/powered) +"unN" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/hybrisa/misc/fake/wire/blue, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"unR" = ( +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/obj/structure/platform/metal/stair_cut/strata_left, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/port) +"unX" = ( +/obj/structure/platform/metal/strata/east, +/obj/structure/platform/metal/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"uor" = ( +/obj/structure/machinery/landinglight/ds1, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"uox" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"uoC" = ( +/obj/structure/largecrate/random/barrel/blue, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"uoF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 11; + pixel_x = -3 + }, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"uoG" = ( +/obj/structure/prop/resin_prop{ + icon_state = "barrel_blue" + }, +/turf/open/floor/almayer/plate, +/area/navalis/indoors/residential/port) +"uoQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"uoV" = ( +/turf/open/floor/hybrisa/tile/greencorner_bigtile/west, +/area/navalis/indoors/residential/cafeteria) +"upG" = ( +/turf/open/floor/corsat/marked, +/area/navalis/indoors/landing_zone_2) +"uqK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"uqN" = ( +/obj/structure/cargo_container/wy/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"urs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/ammo_casing/bullet, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"urt" = ( +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"urO" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"urW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = 1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"urX" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northwest, +/area/navalis/outdoors/exterior/com_ext/upper) +"usc" = ( +/obj/structure/prop/oilrig/support_beam/red, +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty, +/area/navalis/oob) +"usd" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/platform/stone/strata, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/xeno_growth/residential) +"usj" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"usD" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/map_item, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"usZ" = ( +/obj/item/device/defibrillator{ + pixel_x = 11; + pixel_y = -7 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitered/west, +/area/navalis/indoors/med_sci/main_floor) +"utx" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"utC" = ( +/obj/structure/prop/hybrisa/vehicles/Small_Truck/White{ + dir = 1; + pixel_y = 4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"utE" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"uun" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"uuH" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/outdoors/comm_one) +"uuQ" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"uve" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_14"; + pixel_y = 15 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"uvk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"uvu" = ( +/obj/structure/cargo_container/kelland/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"uvz" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/prison/blue, +/area/navalis/outdoors/landing_zone_1) +"uvF" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco6/north, +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 1 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"uvN" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 5 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"uvV" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"uvY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/red/west, +/area/navalis/indoors/med_sci/upper_level/sec) +"uwi" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = 10 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"uwl" = ( +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = 32 + }, +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/east, +/turf/open_space, +/area/navalis/indoors/command/tertiary_comms) +"uwJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"uwT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"uwV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"uxb" = ( +/obj/structure/closet/cabinet, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/accessway) +"uxd" = ( +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full" + }, +/turf/open/floor/almayer/plating, +/area/navalis/outdoors/landing_zone_1) +"uxh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"uxt" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5" + }, +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + id = "vessellockdown"; + name = "PSV Charon - Vehicle Accessway"; + needs_power = 0; + unacidable = 1; + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"uxH" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6; + pixel_x = -26 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"uxK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"uxP" = ( +/obj/structure/platform/metal/almayer/east{ + pixel_x = 4 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior/med_ext) +"uxQ" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/port) +"uya" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"uyd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_x = -5 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"uyn" = ( +/obj/structure/bed/chair/office/light, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown2/east, +/area/navalis/indoors/logistic/upper_deck/office) +"uyB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"uyD" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"uyV" = ( +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"uzd" = ( +/turf/open/floor/plating/platingdmg2/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uzp" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2/northwest, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uzC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool{ + pixel_x = 5 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/spawner/random/tool, +/turf/open/floor/almayer/plating2/north, +/area/navalis/indoors/med_sci/lower_level/port) +"uzO" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uzP" = ( +/obj/structure/machinery/constructable_frame{ + icon_state = "box_1" + }, +/obj/item/circuitboard/machine/rdserver, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/command/upper_deck/server) +"uzZ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/log_ext/lower) +"uAe" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uAh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/cleanable/blood/oil/streak, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"uAA" = ( +/turf/open_space, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"uAE" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/storage/briefcase{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/device/flashlight/lamp/green{ + pixel_y = 17; + pixel_x = 16 + }, +/obj/item/reagent_container/food/drinks/drinkingglass{ + icon_state = "shotglass"; + pixel_x = 11; + pixel_y = 3 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"uAM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -1; + layer = 3.33 + }, +/obj/structure/platform_decoration/metal/almayer/north, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"uBg" = ( +/obj/structure/bed/roller/hospital, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"uBD" = ( +/obj/structure/surface/table/almayer, +/obj/item/tool/screwdriver, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"uBF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/aft_hallway) +"uBJ" = ( +/obj/structure/machinery/meter{ + pixel_x = 29 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/corridor) +"uBL" = ( +/obj/structure/machinery/door/poddoor/hybrisa/ultra_reinforced_door{ + explo_proof = 1; + id = "industriallockdown"; + name = "Industrial Rig: Entrance Blastdoor"; + needs_power = 0; + unacidable = 1; + dir = 2; + desc = "This is shut tight. You will have to go to this rig's Command Centre, to the North, to lift this." + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/accessway) +"uBT" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"uCm" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -14 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"uCn" = ( +/obj/structure/machinery/big_computers/computerblack/computer4, +/obj/structure/prop/hybrisa/misc/machinery/screens/multimonitorsmall_off{ + pixel_y = 32 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"uCz" = ( +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2/under) +"uCE" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_y = -7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"uCI" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"uCR" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"uDj" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/logistic/lower_deck/maint) +"uDz" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + pixel_x = 32; + alpha = 220 + }, +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 8; + pixel_y = 7 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -7; + pixel_y = 11 + }, +/obj/item/reagent_container/food/drinks/coffeecup{ + pixel_x = -5 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"uDE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"uDI" = ( +/turf/open/floor/plating/plating_catwalk/aicore/white, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"uEa" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = 3 + }, +/turf/open/floor/hybrisa/metal/bluemetalcorner, +/area/navalis/indoors/command/oft_duty_room) +"uEk" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 8 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"uEm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"uEx" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/mech_bay) +"uET" = ( +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/prison/darkpurple2/north, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"uEV" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"uFg" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5/west, +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"uFm" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/records) +"uFs" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/meeting_hall) +"uFy" = ( +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellowfull2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uFG" = ( +/turf/open/floor/prison/darkyellowcorners2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uFN" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/ramptop/east, +/area/navalis/oob/water) +"uFP" = ( +/obj/structure/bed/chair/office/light{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"uFV" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 7; + pixel_y = 7 + }, +/obj/effect/spawner/random/gun/smg/highchance, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"uGi" = ( +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/mech_bay) +"uGt" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"uGw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"uGy" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_y = 4 + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/green, +/area/navalis/indoors/command/aft_hallway) +"uGE" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"uGH" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"uGW" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/mining) +"uHB" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"uHG" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"uIh" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"uIn" = ( +/obj/structure/platform_decoration/metal/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"uIu" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/cafeteria) +"uIC" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/obj/effect/spawner/random/gun/pistol/highchance, +/turf/open/floor/hybrisa/carpet/carpetbeigedeco, +/area/navalis/indoors/command/oft_duty_room) +"uID" = ( +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/accessway) +"uIF" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/com_ext/upper) +"uIG" = ( +/obj/structure/surface/table/woodentable/fancy, +/obj/item/folder/blue{ + pixel_x = 5 + }, +/obj/effect/landmark/item_pool_spawner/survivor_ammo/buckshot, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"uIX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "1-2-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"uJa" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light"; + layer = 2 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"uJp" = ( +/obj/structure/cargo_container/wy/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"uJD" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/item/tool/warning_cone{ + pixel_x = -29; + pixel_y = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"uJK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/corsat/brown/east, +/area/navalis/indoors/industrial/mining) +"uJN" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"uJZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"uKg" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/turf/open/hybrisa/street/sidewalkcenter/east, +/area/navalis/indoors/med_sci/lower_level/delivery) +"uKm" = ( +/obj/structure/prop/resin_prop{ + icon_state = "closed_oxygen" + }, +/turf/open/floor/almayer, +/area/navalis/indoors/residential/kitchen) +"uKr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/indoors/residential/cafeteria) +"uKv" = ( +/obj/structure/bed/chair/comfy/teal{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"uKC" = ( +/obj/structure/bed{ + icon_state = "psychbed" + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"uKY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/item/stack/sheet/metal/med_small_stack, +/obj/item/stack/sheet/plasteel/medium_stack, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"uLa" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/upper_deck/workshop) +"uLc" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate3{ + dir = 4 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"uLk" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_10"; + pixel_x = -8; + pixel_y = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"uLq" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"uLH" = ( +/obj/structure/surface/table/almayer, +/obj/item/prop/flower_vase/redwhiteflowers{ + pixel_x = 8; + pixel_y = 9 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/metal/bluemetalfull, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"uLK" = ( +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "armor_blood" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 21; + pixel_y = 10 + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/effect/decal/cleanable/blood{ + icon_state = "gib6"; + pixel_y = 12 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"uMi" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + pixel_y = -14 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"uMs" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalertblank{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_y = 32 + }, +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/obj/structure/platform/metal/strata, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"uMy" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = -1; + pixel_y = 1 + }, +/obj/item/tool/pen/blue{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"uME" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"uML" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/obj/structure/window/reinforced, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue, +/area/navalis/indoors/command/office) +"uMN" = ( +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"uMR" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/structure/platform_decoration/metal/almayer/north, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"uNg" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/upper_deck/port) +"uNn" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"uNq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -11 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"uNL" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_y = 2; + pixel_x = 8 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"uNM" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"uNP" = ( +/obj/effect/decal/hybrisa/trash{ + pixel_y = -3; + pixel_x = 1 + }, +/obj/effect/spawner/random/pills/highchance, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/pharmacy) +"uNY" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/command/office) +"uOh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/remains/robot, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/port) +"uOw" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/obj/structure/machinery/light{ + dir = 4; + invisibility = 101; + needs_power = 0 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"uOW" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uPn" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 8 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"uPq" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"uPv" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = 22; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"uPU" = ( +/obj/item/stack/rods{ + amount = 25 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"uQj" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"uQt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"uQz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"uQD" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/office) +"uRf" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/platform_decoration/metal/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"uRl" = ( +/obj/structure/largecrate/empty/secure, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"uRm" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"uRG" = ( +/obj/vehicle/train/cargo/engine, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/north, +/area/navalis/indoors/command/lower_deck/sub_pen) +"uRI" = ( +/obj/structure/surface/rack, +/obj/item/hybrisa/misc/trash_bag_full_prop{ + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"uRL" = ( +/obj/structure/machinery/meter{ + pixel_y = 32; + pixel_x = 29 + }, +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/maintenance_port) +"uRO" = ( +/obj/effect/decal/hybrisa/dirt, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"uRZ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_y = -5; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"uSP" = ( +/obj/item/trash/cigbutt{ + pixel_x = -9; + pixel_y = -6 + }, +/turf/open/floor/prison, +/area/navalis/outdoors/landing_zone_1) +"uSZ" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/foyer) +"uTb" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = -9; + pixel_x = -10; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 8; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/refinery) +"uTk" = ( +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"uTs" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/lower_level/starboard) +"uTF" = ( +/obj/structure/machinery/cm_vending/sorted/boozeomat, +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"uTJ" = ( +/turf/open/floor/prison/bright_clean2, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"uTP" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2; + pixel_x = 3 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + pixel_x = 3 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"uUq" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/greenblue/northwest, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"uUE" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"uVe" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"uVg" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/main_floor) +"uVi" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/logistic/lower_deck/maint) +"uVv" = ( +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/upper_level/store) +"uVH" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/darkbrown2, +/area/navalis/indoors/logistic/upper_deck/office) +"uWu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 7 + }, +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"uWv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"uWC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"uXu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/logistic/primary_storage) +"uXS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/item/stack/sheet/cardboard/small_stack, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/port) +"uXX" = ( +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/fore) +"uYy" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/logistic/lower_deck/port) +"uYQ" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/bluemultimonitorsmall_off{ + pixel_y = 32 + }, +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/command/upper_deck/server) +"uZe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + pixel_x = 1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"uZk" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/prop/hybrisa/misc/redmeter{ + pixel_y = -32 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"uZA" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"vah" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"vaw" = ( +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100 + }, +/obj/effect/alien/resin/sticky, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"vaA" = ( +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"vaN" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_13" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/upper_deck/starboard) +"vaQ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_7"; + pixel_x = -8; + pixel_y = 12 + }, +/turf/open/floor/hybrisa/tile/green_bigtile, +/area/navalis/indoors/residential/cafeteria) +"vaX" = ( +/obj/item/stool{ + pixel_x = -11; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = -1; + pixel_x = 3 + }, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/ramptop/east, +/area/navalis/indoors/industrial/power) +"vbw" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vbA" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"vbI" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/structure/machinery/sensortower{ + layer = 3.1 + }, +/obj/structure/machinery/light{ + dir = 1; + invisibility = 101; + pixel_x = 15 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"vbO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/med_sci/lower_level/starboard) +"vce" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 2; + pixel_y = 4 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"vcD" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/starboard) +"vcH" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/med_sci/upper_level/entrance) +"vcL" = ( +/obj/structure/reagent_dispensers/fueltank/custom, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/pharmacy) +"vcU" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/upper_level/morgue) +"vdn" = ( +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/upper_deck/port) +"vdv" = ( +/turf/open/floor/almayer/greenfull2, +/area/navalis/outdoors/exterior/med_ext/upper) +"vdF" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/navalis/indoors/residential/starboard) +"veg" = ( +/obj/structure/machinery/landinglight/ds2/delaytwo, +/obj/structure/stairs/multiz/down{ + dir = 1 + }, +/obj/structure/stairs/multiz/down, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"vej" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext) +"vet" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/prop/almayer/flight_recorder/colony{ + pixel_x = -6; + pixel_y = -2 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"veC" = ( +/obj/structure/barricade/handrail/medical{ + dir = 4 + }, +/obj/structure/noticeboard{ + pixel_y = 30 + }, +/obj/structure/noticeboard{ + pixel_y = 31; + icon_state = "notices_4"; + name = "sticky notes"; + pixel_x = -2 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"veD" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/darkbrown2/northwest, +/area/navalis/indoors/residential/port) +"vfl" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"vfx" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/server) +"vfH" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/residential/cafeteria) +"vfS" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"vgg" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/trash/tray{ + pixel_x = -1; + pixel_y = 11 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"vgm" = ( +/obj/item/shard, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/chemical_store) +"vgx" = ( +/obj/structure/blocker/invisible_wall, +/obj/effect/alien/weeds, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"vgM" = ( +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"vgQ" = ( +/obj/structure/largecrate/random/barrel/white, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/chemical_store) +"vhb" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/outdoors/landing_zone_1) +"vhJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"vhK" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6" + }, +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"vhR" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_x = -10; + pixel_y = -9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"vig" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vih" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"vil" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/logistic/lower_deck/fore) +"viE" = ( +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/residential/cafeteria) +"viX" = ( +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/plating/kutjevo, +/area/navalis/outdoors/landing_zone_1) +"vjq" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"vjO" = ( +/obj/effect/alien/resin/sticky, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"vkh" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"vkr" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"vkz" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy4{ + dir = 8 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"vlf" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -7; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"vlu" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"vlF" = ( +/obj/structure/prop/broken_ladder, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"vlV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/barrel/purewhite, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"vmr" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"vmB" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/chemical_store) +"vmD" = ( +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"vmH" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/platform_decoration/metal/almayer/east, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"vmL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/upper_deck/port) +"vmM" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/whitered/southeast, +/area/navalis/indoors/med_sci/main_floor) +"vmX" = ( +/obj/structure/machinery/disposal, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"vnj" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/north, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"vnG" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 8; + icon_state = "stop_decal5"; + pixel_x = -3; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"voa" = ( +/obj/structure/machinery/big_computers/computerblack/computer2{ + pixel_x = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = -11 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue_plate/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"vpv" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"vpB" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + light_color = "#FF0000"; + light_on = 1; + light_power = 3; + light_range = 5; + pixel_x = 32 + }, +/obj/effect/decal/cleanable/generic, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 1 + }, +/turf/open/floor/prison/darkyellow2/northeast, +/area/navalis/indoors/command/lower_deck/sub_pen) +"vpC" = ( +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"vpV" = ( +/obj/structure/surface/table/reinforced/cloth, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"vpZ" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"vqa" = ( +/obj/structure/stairs{ + color = "#a6aeab"; + dir = 8 + }, +/obj/structure/sign/poster/wylogo{ + pixel_y = -32 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 5 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/meeting_hall) +"vqb" = ( +/obj/structure/prop/resin_prop{ + icon_state = "bed" + }, +/turf/open/floor/hybrisa/wood/greywood, +/area/navalis/indoors/residential/starboard) +"vqe" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"vqh" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"vqi" = ( +/obj/vehicle/powerloader/jd{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"vqv" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/effect/decal/hybrisa/road/lines3, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"vqU" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/upper) +"vrh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8" + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vrt" = ( +/turf/open/floor/corsat/darkgreen, +/area/navalis/indoors/industrial/refinery) +"vrG" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"vrW" = ( +/obj/structure/largecrate/random/barrel/brown, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/turf/open/floor/kutjevo/grey/plate, +/area/navalis/outdoors/landing_zone_2) +"vse" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"vtc" = ( +/obj/structure/platform/metal/stair_cut/strata_right, +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/upper_deck/workshop) +"vtq" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"vtz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/extinguisher_cabinet{ + pixel_y = -32 + }, +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/main_floor) +"vtB" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"vtP" = ( +/obj/structure/monorail{ + dir = 9; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + unacidable = 1; + explo_proof = 1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"vtT" = ( +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"vur" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/item/tool/wirecutters{ + pixel_x = 5 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/mech_bay) +"vuB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/logistic/primary_storage) +"vuK" = ( +/turf/open/floor/prison/whitegreencorner, +/area/navalis/indoors/med_sci/chemical_store) +"vuP" = ( +/obj/structure/sign/poster/music{ + pixel_x = -29; + pixel_y = 11 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/break_room) +"vvf" = ( +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/upper_level/flight) +"vvg" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/obj/structure/bed/chair/comfy/orange{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/upper_deck/entrance) +"vvo" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"vvq" = ( +/obj/structure/surface/table/reinforced/cloth, +/obj/item/reagent_container/food/condiment/peppermill{ + pixel_x = -10; + pixel_y = 11 + }, +/obj/item/reagent_container/food/condiment/saltshaker{ + pixel_x = -3; + pixel_y = 3 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"vvu" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"vvx" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/structure/machinery/light{ + dir = 1; + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vvI" = ( +/turf/closed/wall/solaris/reinforced/hull, +/area/navalis/indoors/logistic/lower_deck/maint) +"vwH" = ( +/obj/structure/machinery/chem_master, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/pharmacy) +"vwN" = ( +/obj/structure/machinery/door/airlock/hybrisa/personal_solid/autoname{ + req_one_access = null + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/starboard) +"vwR" = ( +/obj/item/tool/warning_cone{ + pixel_x = 1; + pixel_y = 10 + }, +/obj/item/stack/sheet/wood{ + layer = 2.7; + pixel_y = -9 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/command/port_hallway) +"vwS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 1; + layer = 3.33 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"vxj" = ( +/obj/structure/prop/oilrig/support_beam/brown{ + layer = 1.1 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"vxz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"vxG" = ( +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"vxJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 12; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 8; + pixel_x = 14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/barricade/handrail/kutjevo{ + dir = 4; + pixel_x = -14; + pixel_y = 21; + density = 0; + name = "pole signal"; + layer = 3.0 + }, +/obj/structure/prop/invuln/catwalk_support{ + dir = 1; + pixel_y = -10 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"vxT" = ( +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = 21; + pixel_y = 10 + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/logistic/lower_deck/port) +"vym" = ( +/obj/structure/prop/hybrisa/Factory/Robotic_arm{ + layer = 4.2; + pixel_y = 5; + level = 5; + pixel_x = -14 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"vyv" = ( +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"vyC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = -17; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"vyD" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/carpet/carpetblue, +/area/navalis/indoors/command/meeting_hall) +"vyJ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal5"; + pixel_y = -3; + color = "#FFFF00" + }, +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"vyK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown2/northwest, +/area/navalis/indoors/logistic/primary_storage) +"vyT" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/corsat/spiralplate, +/area/navalis/indoors/charon/below_deck/front) +"vzV" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"vzW" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_y = -5; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"vAU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe3{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"vAV" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 3 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/command/director_office) +"vAW" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/colony{ + dir = 1; + autoname = 1; + req_one_access = null + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/workshop) +"vBf" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/turf/open/floor/plating/catwalk, +/area/navalis/outdoors/landing_zone_2/under) +"vBq" = ( +/obj/structure/machinery/door/poddoor/shutters/almayer{ + id = "cargo_shutter_2" + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/primary_storage) +"vBJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"vBS" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/delivery) +"vCa" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"vCg" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/reagent_container/food/drinks/cans/souto{ + icon_state = "blank_can_crushed"; + pixel_x = -11; + pixel_y = 6 + }, +/obj/item/reagent_container/food/drinks/cans/bodaplus{ + pixel_x = 4 + }, +/turf/open/floor/hybrisa/carpet/carpetgreendeco, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"vCh" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vCj" = ( +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/floor/plating/platingdmg2, +/area/navalis/indoors/logistic/lower_deck/port) +"vCk" = ( +/obj/effect/decal/hybrisa/road/lines1, +/obj/item/trash/cigbutt{ + pixel_x = -1; + pixel_y = 17 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"vCp" = ( +/obj/structure/cargo_container/lockmart/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"vCD" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_21"; + layer = 3.1; + pixel_y = -1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/meeting_hall) +"vCF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/toolbox{ + pixel_x = 4; + pixel_y = 6 + }, +/turf/open/floor/corsat/arrow_east, +/area/navalis/indoors/med_sci/lower_level/port) +"vCM" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"vCO" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/com_ext/lower) +"vCX" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/west, +/turf/closed/wall/mineral/bone_resin, +/area/navalis/indoors/residential/landing_pad) +"vCZ" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vDc" = ( +/turf/open/floor/corsat/darkgreencorner/north, +/area/navalis/indoors/industrial/refinery) +"vDH" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"vDZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_x = -1; + pixel_y = 2 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/industrial/refinery) +"vEh" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"vEp" = ( +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/item/device/binoculars/range/designator{ + pixel_x = 7; + pixel_y = 7 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"vEL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"vEQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/navalis/indoors/command/tertiary_comms) +"vEV" = ( +/obj/structure/disposalpipe/junction{ + dir = 2; + icon_state = "pipe-y" + }, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 10 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"vFi" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/med_sci/lower_level/starboard) +"vFs" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"vFu" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/lower_deck/port) +"vFz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrowncorners3, +/area/navalis/indoors/logistic/lower_deck/port) +"vFB" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = 5; + pixel_y = 21; + layer = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"vFS" = ( +/obj/structure/prop/ice_colony/soil_net/navalis_indestructible{ + layer = 2 + }, +/obj/item/lightstick/red/planted{ + pixel_y = -10; + pixel_x = 13; + layer = 4.11 + }, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"vGh" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = 7; + pixel_y = 12; + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/upper_deck/office) +"vGp" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/item/trash/cigbutt, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"vGq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/command/lower_deck/sub_pen) +"vGK" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/gibs/body, +/obj/effect/decal/cleanable/blood{ + pixel_x = 4; + pixel_y = -4 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vHk" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_starboard) +"vHm" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W" + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"vHp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"vIh" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"vIi" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/log_ext/upper) +"vIG" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 1 + }, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"vII" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/obj/item/trash/ceramic_plate{ + pixel_x = -2; + pixel_y = -4 + }, +/obj/item/trash/ceramic_plate{ + pixel_y = 5 + }, +/turf/open/floor/freezerfloor, +/area/navalis/indoors/residential/kitchen) +"vIV" = ( +/obj/structure/platform_decoration/metal/kutjevo_smooth/east, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"vIX" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/frame{ + pixel_y = 31 + }, +/obj/item/trash/eat{ + pixel_x = 10; + pixel_y = 13 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/black2/east, +/area/navalis/indoors/med_sci/records_room) +"vJe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/command/tertiary_comms) +"vJx" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = -32; + pixel_x = 16 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/foyer) +"vKb" = ( +/obj/structure/bed, +/obj/item/bedsheet/orange, +/obj/effect/landmark/crap_item, +/turf/open/floor/hybrisa/carpet/carpetblackdeco, +/area/navalis/indoors/residential/port) +"vKk" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_x = 9; + pixel_y = 10; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"vKt" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal6"; + pixel_y = 15; + pixel_x = 15; + color = "#FFFF00" + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + pixel_y = -13; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"vKO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"vLu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/port) +"vLA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/liquid_fuel, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"vLB" = ( +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = 12 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"vMo" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/gm/empty/navalis/dig, +/area/navalis/oob/water/far) +"vNf" = ( +/obj/structure/platform/metal/strata/north, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northeast, +/area/navalis/indoors/command/tertiary_comms) +"vNq" = ( +/turf/open/floor/prison/darkpurple2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"vNA" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2/under) +"vOr" = ( +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"vOw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/largecrate/random/case/double, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"vOX" = ( +/obj/structure/bed/sofa/vert/grey/top, +/obj/effect/landmark/survivor_spawner, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/oft_duty_room) +"vPb" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/command/lower_deck/starboard) +"vPd" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt" + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/fore) +"vPi" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/red{ + dir = 4; + pixel_y = -4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"vPA" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/pipes/pipe1, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"vPB" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_y = -4 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"vPK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/clipboard, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/item/paper, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/port) +"vPV" = ( +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"vQa" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"vQo" = ( +/obj/structure/prop/resin_prop{ + dir = 8; + icon_state = "chair" + }, +/turf/open/floor/hybrisa/carpet/carpetgreen, +/area/navalis/indoors/residential/starboard) +"vQv" = ( +/obj/structure/prop/resin_prop{ + icon_state = "case" + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"vQz" = ( +/obj/structure/platform/metal/almayer/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"vQF" = ( +/turf/open/floor/half_plate/green, +/area/navalis/outdoors/landing_zone_1) +"vQI" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications/simple{ + dir = 1; + pixel_x = -6 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/command/cent_com) +"vQY" = ( +/turf/open/floor/corsat/browncorner/west, +/area/navalis/indoors/industrial/refinery) +"vRG" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 4 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"vRQ" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1; + color = "#b54b3d" + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1; + color = "#b54b3d" + }, +/turf/open/floor/hybrisa/carpet/carpetreddeco, +/area/navalis/indoors/residential/starboard) +"vSb" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/southeast, +/area/navalis/indoors/command/tertiary_comms) +"vSh" = ( +/obj/structure/prop/turbine, +/obj/structure/prop/turbine_extras/border, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"vSy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4, +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/darkbrown3/southwest, +/area/navalis/indoors/med_sci/lower_level/port) +"vSN" = ( +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"vTk" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 1; + pixel_x = -6 + }, +/obj/structure/pipes/vents/pump, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = 32 + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/command/aft_hallway) +"vTx" = ( +/turf/open/floor/hybrisa/tile/green_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"vTC" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"vTG" = ( +/obj/structure/surface/table/almayer{ + color = "#848484" + }, +/obj/item/storage/donut_box/empty, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"vTJ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + layer = 2.5 + }, +/turf/closed/wall/hybrisa/colony, +/area/navalis/indoors/industrial/refinery) +"vTT" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/obj/structure/monorail{ + dir = 8; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"vTU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8; + layer = 2; + pixel_y = 6 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"vUv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/landing_zone_2) +"vUx" = ( +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/cafeteria) +"vUE" = ( +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/accessway) +"vUO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"vVp" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"vVu" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"vVA" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/power) +"vVB" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12"; + pixel_x = 6; + pixel_y = 5 + }, +/obj/effect/decal/hybrisa/road/corner{ + dir = 8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"vVC" = ( +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"vVE" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/logistic/lower_deck/port) +"vVQ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/com_ext) +"vVS" = ( +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"vVW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"vVY" = ( +/obj/structure/bed/sofa/vert/grey/top, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/cent_com) +"vWb" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north, +/obj/structure/stairs{ + dir = 4 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"vWA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 24; + pixel_x = 4 + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"vXh" = ( +/obj/structure/platform/metal/strata{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"vXG" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 9; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"vXY" = ( +/obj/structure/platform/metal/strata/north, +/obj/item/lightstick/red/planted{ + pixel_y = 15; + pixel_x = 16; + layer = 4.11 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"vZa" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/platform/metal/strata/west, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"vZe" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/outdoors/landing_zone_2/under) +"vZk" = ( +/obj/structure/machinery/landinglight/ds2/delayone{ + dir = 4 + }, +/obj/structure/stairs/multiz/down{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"vZl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/corridor) +"vZx" = ( +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"vZA" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"vZG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating2/east, +/area/navalis/indoors/med_sci/lower_level/port) +"vZH" = ( +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor, +/turf/open/floor/plating, +/area/navalis/indoors/industrial/accessway) +"vZO" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/indoors/med_sci/lower_level/records) +"vZQ" = ( +/turf/open/floor/prison/darkpurple2/northeast, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"waw" = ( +/obj/effect/decal/medical_decals{ + icon_state = "docstripingdir"; + color = "#d3d3d3"; + dir = 8 + }, +/obj/structure/sign/safety/medical{ + pixel_x = 40; + pixel_y = 32 + }, +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/open/floor/prison/whitegreen/northeast, +/area/navalis/indoors/med_sci/foyer) +"waE" = ( +/turf/open/floor/prison/cell_stripe/east, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"waP" = ( +/obj/structure/stairs/multiz/up, +/turf/open/floor/prison/ramptop/north, +/area/navalis/outdoors/landing_zone_2) +"waU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/greencorner_bigtile, +/area/navalis/indoors/residential/cafeteria) +"waV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/twohanded/folded_metal_chair{ + pixel_x = 6; + pixel_y = 9 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"wbf" = ( +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/bed/bedroll{ + dir = 8 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"wbk" = ( +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/middle) +"wbp" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/communications{ + dir = 1; + pixel_y = -4; + pixel_x = 2 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/cent_com) +"wbq" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = -6; + pixel_y = 8 + }, +/obj/item/tool/kitchen/utensil/fork{ + pixel_x = 10; + pixel_y = 1 + }, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/med_sci/break_room) +"wbB" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/west, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"wbQ" = ( +/obj/effect/hybrisa/misc/fake/pipes/pipe2, +/turf/open/floor/corsat, +/area/navalis/indoors/industrial/mining) +"wbT" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/structure/bed/bedroll{ + dir = 1; + layer = 6; + pixel_y = 16 + }, +/turf/open/floor/hybrisa/carpet/carpetblack, +/area/navalis/indoors/command/conferance) +"wbZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/power/apc, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/maint_store) +"wcs" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 1; + icon_state = "stop_decal5"; + pixel_y = 2; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/accessway) +"wcw" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/med_sci/records_room) +"wcP" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal10" + }, +/obj/item/ammo_casing/bullet, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"wcW" = ( +/obj/structure/cargo_container/lockmart/right, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"wdt" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/corridor) +"wey" = ( +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"weH" = ( +/obj/item/tool/surgery/retractor, +/obj/structure/surface/table/reinforced/prison, +/obj/item/tool/surgery/synthgraft{ + pixel_x = -8; + pixel_y = 11 + }, +/obj/structure/machinery/meter{ + pixel_y = 3; + pixel_x = 30 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/surg_one) +"weK" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"weN" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/pipes/pipe1{ + dir = 4; + layer = 2.1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"weR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"weX" = ( +/obj/structure/platform/metal/strata, +/obj/structure/platform/metal/strata/west{ + layer = 2.5 + }, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"wfg" = ( +/obj/structure/bed/roller, +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = 18; + dir = 1 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/indoors/med_sci/foyer) +"wfi" = ( +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/outdoors/landing_zone_2/under) +"wfq" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"wfC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + pixel_y = 12 + }, +/turf/open/floor/prison, +/area/navalis/indoors/med_sci/lower_level/port) +"wfG" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"wfK" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal5"; + pixel_y = -7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"wfQ" = ( +/obj/structure/machinery/light, +/turf/open/floor/darkpurple2, +/area/navalis/indoors/residential/cafeteria) +"wgC" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"wgE" = ( +/turf/closed/wall/solaris/reinforced, +/area/navalis/oob/empty_space) +"wgF" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/residential/cafeteria) +"wgP" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/storage/firstaid/adv{ + pixel_y = -2; + pixel_x = -2 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"whg" = ( +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"whj" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"whI" = ( +/obj/structure/closet/crate/science, +/obj/item/storage/pouch/chem, +/obj/item/storage/pouch/pressurized_reagent_canister/revival_tricord, +/obj/effect/landmark/objective_landmark/science, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wib" = ( +/obj/effect/decal/cleanable/generic, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fore) +"wik" = ( +/obj/structure/surface/table/almayer, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_2"; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"wiV" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"wiY" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod, +/area/navalis/oob/powered) +"wjJ" = ( +/obj/structure/stairs/multiz/down{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/cafeteria) +"wjM" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/south, +/area/navalis/indoors/residential/port) +"wjO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/upper_deck/port) +"wjT" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/cent_com) +"wkk" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/structure/cable/white{ + icon_state = "1-10"; + level = 2; + pixel_x = 15; + pixel_y = 5 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wkl" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/stairs/perspective{ + dir = 6; + icon_state = "p_stair_full"; + pixel_y = 13 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"wkm" = ( +/turf/open/floor/prison/darkbrowncorners2/east, +/area/navalis/indoors/logistic/primary_storage) +"wkp" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/northwest, +/area/navalis/indoors/residential/port) +"wks" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/med_sci/lower_level/records) +"wkD" = ( +/obj/effect/hybrisa/misc/fake/wire/yellow, +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"wkL" = ( +/obj/structure/machinery/door/airlock/almayer/generic/autoname/rusted_wite, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/bathroom) +"wkU" = ( +/turf/open/floor/corsat/red, +/area/navalis/indoors/industrial/refinery) +"wkW" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wlA" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#98a3ab" + }, +/obj/item/tool/surgery/cautery{ + pixel_x = 5; + pixel_y = 7 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/upper_level/morgue) +"wlJ" = ( +/obj/structure/barricade/handrail/wire, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"wmc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/lower_level/port) +"wmy" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"wmM" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/structure/machinery/door_control/navalis_charon_lockdown{ + explo_proof = 1; + use_power = 0; + name = "PSV Charon - Vehicle Accessway"; + id = "vessellockdown"; + pixel_x = -27; + light_on = 1; + light_range = 3; + light_color = "#FFEFD2"; + light_power = 2; + needs_power = 0 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"wmN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/logistic/lower_deck/fore) +"wmU" = ( +/obj/effect/decal/hybrisa/tiretrack{ + dir = 6; + pixel_x = -14 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"wmZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"wnl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkpurplecorners2/north, +/area/navalis/indoors/residential/cafeteria) +"wnw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"wnA" = ( +/obj/effect/decal/medical_decals{ + dir = 1; + icon_state = "triagedecaldir"; + layer = 2; + color = "#d3d3d3" + }, +/obj/structure/barricade/handrail/medical{ + dir = 1 + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/foyer) +"wnE" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/toolbox, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"wnM" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/southwest, +/area/navalis/indoors/command/upper_deck/port) +"wnO" = ( +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/west, +/area/navalis/indoors/residential/cafeteria) +"wnZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown2/west, +/area/navalis/indoors/logistic/primary_storage) +"woi" = ( +/obj/structure/cargo_container/hd/right, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"wom" = ( +/obj/structure/cargo_container/kelland/left, +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"won" = ( +/obj/structure/prop/resin_prop{ + icon_state = "densecrate" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"woo" = ( +/obj/structure/machinery/photocopier/wyphotocopier{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"woE" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -2; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"woT" = ( +/obj/effect/decal/navalis/plate_edge/darker{ + dir = 1 + }, +/turf/open/floor/corsat/sterileplate, +/area/navalis/indoors/industrial/mining) +"wpu" = ( +/obj/structure/closet/firecloset, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"wpF" = ( +/obj/structure/prop/resin_prop{ + icon_state = "barrel_yellow" + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/residential/accessway) +"wqb" = ( +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/starboard) +"wql" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy15" + }, +/area/navalis/oob/powered) +"wqt" = ( +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"wqz" = ( +/obj/structure/closet/bodybag{ + icon_state = "bodybag_open" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"wqO" = ( +/obj/structure/surface/table/almayer, +/obj/item/device/healthanalyzer, +/obj/item/device/healthanalyzer, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison/whitered/southeast, +/area/navalis/indoors/med_sci/storage) +"wqX" = ( +/obj/structure/bed/hybrisa/hospital/hospitaldivider{ + pixel_y = -1; + layer = 3.8 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"wrc" = ( +/obj/structure/machinery/microwave, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"wrw" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/red, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"wrA" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/indoors/industrial/mining) +"wrT" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1 + }, +/obj/structure/prop/hybrisa/fakeplatforms/platform4{ + dir = 8 + }, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"wso" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + dir = 4; + icon_state = "stop_decal5"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -7; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"wst" = ( +/obj/effect/alien/weeds, +/obj/structure/machinery/light{ + invisibility = 101; + light_color = "#680b62"; + needs_power = 0; + dir = 8 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/oob/powered) +"wsA" = ( +/obj/structure/stairs/multiz/up{ + dir = 1 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/charon/below_deck/front) +"wsE" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + pixel_y = 12; + pixel_x = 11 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"wsJ" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/turf/open_space, +/area/navalis/oob/empty_space) +"wsK" = ( +/turf/open/floor/hybrisa/tile/greencorner_bigtile/north, +/area/navalis/indoors/residential/cafeteria) +"wsY" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"wtp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/port) +"wtv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/structure/platform/metal/almayer, +/obj/structure/machinery/colony_floodlight/navalis_wall_light{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"wtF" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/hybrisa/misc/detonator, +/obj/structure/cable/white{ + icon_state = "1-2"; + level = 2; + pixel_y = 7 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wtJ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"wtW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"wud" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"wuf" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4{ + icon_state = "hybrisaplatform_broken"; + density = 0 + }, +/obj/structure/platform/metal/hybrisa/metalplatform4/west{ + icon_state = "hybrisaplatform_broken"; + density = 0 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"wus" = ( +/obj/structure/machinery/door/poddoor/hybrisa/secure_red_door{ + dir = 4; + unacidable = 1; + explo_proof = 1; + name = "Sector Three Blastdoors"; + id = "sector_three"; + needs_power = 0 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/refinery) +"wuS" = ( +/obj/effect/acid_hole{ + explo_proof = 1 + }, +/turf/closed/shuttle/dropship2/WY/StarGlider{ + icon_state = "79"; + opacity = 0; + name = "\improper Submersile Door" + }, +/area/navalis/oob/water) +"wuT" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + pixel_x = -8 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/port) +"wuV" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"wve" = ( +/obj/structure/machinery/camera/autoname{ + dir = 1; + network = list("interrogation") + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/port) +"wvu" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"wvv" = ( +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/charon/surface_deck/forecastle_deck) +"wvz" = ( +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 4; + pixel_x = -14 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 8 + }, +/obj/structure/prop/invuln/overhead_pipe{ + color = "#a6aeab"; + dir = 8; + pixel_x = 14 + }, +/obj/structure/prop/invuln/overhead_pipe{ + icon_state = "intact"; + color = "#a6aeab"; + pixel_x = 12 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_3"; + layer = 3.2; + pixel_x = -6; + pixel_y = -4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"wvA" = ( +/obj/structure/platform_decoration/metal/almayer, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"wvQ" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 8 + }, +/obj/structure/barricade/wooden{ + dir = 8; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wvT" = ( +/obj/structure/closet/emcloset, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/east, +/area/navalis/indoors/logistic/workshop) +"wwG" = ( +/obj/structure/filingcabinet{ + density = 0; + pixel_x = -8; + pixel_y = 20 + }, +/obj/structure/filingcabinet{ + density = 0; + pixel_x = 8; + pixel_y = 20 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_6"; + pixel_x = -3 + }, +/obj/structure/machinery/power/apc{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/northeast, +/area/navalis/indoors/command/cent_com) +"wwM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"wwT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/requests_console{ + pixel_y = 28 + }, +/obj/structure/surface/table/almayer{ + color = "#EBD9B7" + }, +/obj/structure/machinery/prop/almayer/computer/PC{ + pixel_y = 3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/logistic/lower_deck/maint) +"wxd" = ( +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/turf/closed/wall/strata_outpost/reinforced/hull{ + name = "PSV Charon" + }, +/area/navalis/oob) +"wxu" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/command/lower_deck/starboard) +"wxI" = ( +/obj/structure/bed/chair{ + pixel_y = -1; + dir = 8; + pixel_x = 9 + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/on_duty) +"wxU" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_door, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth) +"wyf" = ( +/obj/structure/sign/poster/safety{ + pixel_y = 3; + pixel_x = -27 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"wyg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow"; + dir = 4 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"wyn" = ( +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"wyt" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"wyF" = ( +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"wyV" = ( +/obj/effect/decal/cleanable/blood/gibs/xeno/body{ + pixel_y = 6; + pixel_x = -10 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/darkbrowncorners2/north, +/area/navalis/indoors/logistic/primary_storage) +"wza" = ( +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/ind_ext) +"wzY" = ( +/obj/structure/platform/metal/strata/north, +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"wzZ" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + pixel_x = -1 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"wAj" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#8bafa4"; + layer = 3.2 + }, +/turf/open/floor/prison/whitered/northeast, +/area/navalis/indoors/med_sci/main_floor) +"wAn" = ( +/turf/open/floor/prison/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"wAM" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4"; + pixel_y = -10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"wAO" = ( +/obj/structure/bed/chair/comfy/black, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"wAT" = ( +/obj/structure/prop/turbine{ + layer = 6; + explo_proof = 0 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + icon_state = "flammable_pipe_3"; + pixel_x = 5; + pixel_y = -6; + layer = 4 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 1; + icon_state = "flammable_pipe_3"; + pixel_x = 5; + pixel_y = 6 + }, +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6; + pixel_x = -26 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/mining) +"wBd" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + icon_state = "grime3" + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/med_sci/upper_level/corridor) +"wBh" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/starboard) +"wBW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -4; + pixel_x = -4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/fuel) +"wCa" = ( +/obj/structure/prop/almayer/computers/mapping_computer, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"wCn" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8" + }, +/turf/open/floor/prison/green/northwest, +/area/navalis/indoors/med_sci/upper_level/corridor) +"wCC" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_smooth" + }, +/obj/structure/machinery/body_scanconsole, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3" + }, +/obj/structure/pipes/standard/manifold/hidden/cyan{ + dir = 1 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"wCD" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open_space, +/area/navalis/oob/empty_space) +"wDq" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_y = 6 + }, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/starboard) +"wDw" = ( +/obj/structure/machinery/light, +/turf/open/floor/prison/redfull, +/area/navalis/indoors/med_sci/main_floor) +"wDL" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/starboard) +"wDQ" = ( +/obj/structure/platform/stone/strata/north, +/obj/structure/platform/stone/strata/west, +/obj/structure/platform/stone/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"wDY" = ( +/obj/structure/surface/table/reinforced/black, +/obj/item/ammo_magazine/rifle/l42a/heap, +/obj/item/ammo_magazine/rifle/l42a/heap, +/obj/item/ammo_magazine/rifle/l42a/heap, +/obj/item/ammo_magazine/rifle/l42a/heap, +/obj/item/weapon/gun/rifle/l42a, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"wEe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod/north, +/area/navalis/oob/powered) +"wEk" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical_solid/autoname{ + dir = 1; + locked = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/science_lower_entrance) +"wEn" = ( +/obj/effect/decal/hybrisa/road/corner{ + dir = 1 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"wEu" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/prison/whitegreen/southwest, +/area/navalis/indoors/med_sci/upper_level/entrance) +"wEH" = ( +/obj/effect/decal/hybrisa/road/lines1{ + pixel_x = -1 + }, +/obj/effect/decal/hybrisa/road/lines4{ + pixel_x = 1 + }, +/obj/structure/bed/chair{ + dir = 8; + pixel_y = 6; + pixel_x = -7 + }, +/obj/structure/machinery/light/small{ + dir = 1 + }, +/obj/structure/sign/banners/united_americas_flag_worn{ + pixel_y = 27; + pixel_x = 9 + }, +/turf/open/floor/hybrisa/wood, +/area/navalis/indoors/residential/accessway) +"wEJ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/darkgreen/north, +/area/navalis/indoors/logistic/lower_deck/fore) +"wFn" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"wFw" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + pixel_y = 6; + pixel_x = 16 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.5; + level = 3; + pixel_y = 19; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_1{ + pixel_y = -5; + pixel_x = 16 + }, +/obj/structure/prop/ice_colony/dense/planter_box{ + pixel_y = -5; + name = "surface support"; + layer = 1.5; + pixel_x = 16 + }, +/obj/structure/prop/hybrisa/signs/high_voltage/small{ + layer = 4.2; + pixel_y = 10; + pixel_x = 16 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + pixel_y = 19; + pixel_x = 16 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"wFA" = ( +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 4 + }, +/obj/structure/sign/safety/maint{ + pixel_x = -17 + }, +/turf/open/floor/prison/green/southwest, +/area/navalis/indoors/command/starboard_hallway) +"wFN" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/open/floor/prison/darkyellow2/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"wFS" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"wGq" = ( +/obj/structure/platform/metal/kutjevo_smooth/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"wGz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/portable_atmospherics/canister/empty, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"wHk" = ( +/turf/closed/wall/r_wall/prison_unmeltable, +/area/navalis/oob/water) +"wHp" = ( +/obj/structure/closet/secure_closet/personal/patient{ + name = "morgue closet" + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/morgue) +"wHx" = ( +/turf/open/floor/half_plate/green/north, +/area/navalis/outdoors/landing_zone_1) +"wHU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/rack, +/obj/effect/spawner/random/toy, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/port) +"wHW" = ( +/obj/structure/machinery/door/airlock/hybrisa/generic_solid/autoname{ + dir = 1 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/command/upper_deck/starboard) +"wIw" = ( +/obj/effect/landmark/lv624/fog_blocker/infinite, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water/far) +"wIx" = ( +/turf/open/floor/almayer_hull/outerhull_dir/northeast, +/area/navalis/indoors/industrial/accessway) +"wIJ" = ( +/obj/item/paper/crumpled{ + pixel_x = -6; + pixel_y = 9 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/med_sci/upper_level/flight) +"wJg" = ( +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/logistic/upper_deck/entrance) +"wJv" = ( +/obj/structure/surface/table/almayer, +/obj/item/trash/plate{ + pixel_x = 11; + pixel_y = 3 + }, +/obj/effect/landmark/crap_item, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/workshop) +"wJw" = ( +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/oob/empty_space) +"wJI" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + pixel_x = 32; + alpha = 220 + }, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/hybrisa/coffee_machine{ + pixel_x = -4; + layer = 3.3; + pixel_y = 4 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"wJJ" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/computer/card{ + dir = 4 + }, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/command/cent_com) +"wJR" = ( +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = -7 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"wKn" = ( +/obj/structure/prop/resin_prop{ + icon_state = "chair" + }, +/turf/open/floor/hybrisa/carpet/carpetbeige, +/area/navalis/indoors/residential/port) +"wKz" = ( +/obj/structure/surface/table/reinforced/black, +/obj/structure/machinery/prop/almayer/CICmap/pmc, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"wLc" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2"; + pixel_x = -1; + pixel_y = 5 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/lower_deck/fore) +"wLh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/vehicles/crawler{ + icon_state = "crawler_crate" + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"wMa" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"wMb" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_2" + }, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/port) +"wMl" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"wMn" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/largecrate/random/barrel/green, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/primary_storage) +"wMw" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"wMB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/landing_zone_2) +"wMI" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent5" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"wMV" = ( +/obj/item/stack/rods{ + pixel_x = -12 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"wNb" = ( +/obj/structure/coatrack{ + pixel_y = 5; + pixel_x = -5 + }, +/obj/item/clothing/suit/storage/CMB/trenchcoat{ + pixel_x = -7; + pixel_y = 7 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_11" + }, +/turf/open/floor/prison/whitegreen/west, +/area/navalis/indoors/med_sci/chemical_store) +"wNe" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_y = 1 + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"wNo" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"wNA" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/barricade/wooden{ + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wOD" = ( +/obj/structure/machinery/door_control{ + id = "secret_access"; + name = "Submarine Dock"; + pixel_y = 28; + pixel_x = -23; + req_access = list(213); + explo_proof = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"wOL" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/microwave, +/turf/open/floor/hybrisa/tile/tilelightbeige, +/area/navalis/indoors/command/command_kitchen) +"wOS" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy14" + }, +/area/navalis/oob/powered) +"wPg" = ( +/turf/open/floor/half_plate/green/east, +/area/navalis/outdoors/landing_zone_1) +"wPh" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/northeast, +/area/navalis/indoors/residential/cafeteria) +"wPk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"wPp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/obj/structure/stairs/multiz/up{ + dir = 8 + }, +/turf/open/floor/almayer_hull, +/area/navalis/indoors/residential/port) +"wPK" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + pixel_y = 2 + }, +/turf/open/floor/prison/bright_clean2/southwest, +/area/navalis/indoors/med_sci/science_lower_entrance) +"wPM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/hybrisa/misc/fake/pipes/pipe4{ + dir = 1 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"wPY" = ( +/obj/structure/prop/hybrisa/supermart/supermartfruitbasketapples, +/obj/structure/surface/table/reinforced/prison{ + color = "#b7b8b2" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/kitchen) +"wQe" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north, +/obj/item/card/id/captains_spare{ + access = list(213); + name = "Site Director's Spare Access Card"; + desc = "The spare ID of NP-13's Site Director. They must have dropped it during the evacuation."; + unacidable = 1; + explo_proof = 1 + }, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"wQL" = ( +/obj/structure/machinery/iv_drip{ + pixel_y = 1; + layer = 4; + pixel_x = -5 + }, +/obj/structure/sign/safety/maint{ + pixel_x = 8; + pixel_y = -32 + }, +/turf/open/floor/prison/whitered, +/area/navalis/indoors/med_sci/storage) +"wQV" = ( +/obj/structure/closet/secure_closet/security, +/obj/effect/spawner/random/gun/smg/highchance, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/red/northeast, +/area/navalis/indoors/command/security) +"wQY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/trash/cigbutt{ + pixel_x = -10; + pixel_y = 13 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"wRq" = ( +/turf/open/floor/corsat/redcorner, +/area/navalis/indoors/industrial/refinery) +"wSm" = ( +/obj/structure/bed/chair, +/obj/structure/machinery/vending/snack{ + density = 0; + pixel_y = 18; + pixel_x = 1 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/break_room) +"wSF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table{ + color = "#8B7B5B" + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/obj/effect/spawner/random/powercell, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/port) +"wSK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime4{ + dir = 1; + pixel_y = 12 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/aft_hallway) +"wSX" = ( +/turf/open/floor/prison/darkyellow2/northwest, +/area/navalis/indoors/command/lower_deck/sub_pen) +"wTo" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/item/device/flashlight/lamp/tripod{ + pixel_y = -3; + pixel_x = -5 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"wTv" = ( +/obj/structure/closet/firecloset/full, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"wTy" = ( +/obj/structure/largecrate/random/barrel/white, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"wTK" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"wTU" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-4" + }, +/obj/structure/pipes/standard/manifold/hidden/dark, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/power) +"wUz" = ( +/turf/open/floor/prison/darkyellow2/southwest, +/area/navalis/indoors/command/lower_deck/sub_pen) +"wUF" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/obj/item/stack/sheet/metal{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"wVD" = ( +/obj/structure/sign/nosmoking_1{ + layer = 2.8; + pixel_x = 33 + }, +/obj/structure/machinery/camera/autoname{ + dir = 8 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/break_room) +"wVU" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_y = 5; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"wWc" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"wWN" = ( +/obj/structure/machinery/light/small/blue{ + dir = 1; + pixel_y = 20 + }, +/turf/open/floor/almayer/black/west, +/area/navalis/indoors/med_sci/records_room) +"wWP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"wWR" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/west, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"wWX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/handrail{ + dir = 8; + layer = 4 + }, +/obj/structure/sign/poster/music{ + pixel_x = -5; + pixel_y = 32 + }, +/obj/structure/largecrate/random/mini, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/command/lower_deck/starboard) +"wXw" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/blocker/forcefield/human{ + dir = 4; + invisibility = 101 + }, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz1) +"wXy" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/structure/barricade/handrail/wire{ + dir = 8; + layer = 5 + }, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"wXC" = ( +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"wXG" = ( +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/command/office) +"wXL" = ( +/obj/item/stack/sheet/metal{ + pixel_x = 12; + pixel_y = 6 + }, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"wYb" = ( +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1; + layer = 1.9 + }, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only/lz2) +"wYn" = ( +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/lower) +"wYr" = ( +/obj/structure/window/framed/hybrisa/colony/office/reinforced, +/obj/structure/machinery/door/poddoor/hybrisa/open_shutters{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"wYZ" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/logistic/lower_deck/port) +"wZl" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"wZq" = ( +/obj/structure/machinery/optable, +/obj/item/tank/anesthetic, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/surg_one) +"wZt" = ( +/obj/structure/barricade/handrail/wire{ + dir = 4 + }, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/smallvent3{ + pixel_y = 28; + pixel_x = 20 + }, +/obj/structure/bed/stool{ + buckling_y = 14; + layer = 4; + pixel_y = 14; + pixel_x = 4 + }, +/obj/item/trash/cigbutt{ + pixel_x = -7; + pixel_y = 13 + }, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_port) +"wZv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "SW-out"; + layer = 2.5; + pixel_y = -1; + pixel_x = -2 + }, +/obj/structure/largecrate/empty/case/double, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/power) +"wZM" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/southwest, +/area/navalis/indoors/med_sci/lower_level/port) +"wZS" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"xax" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = 3; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"xaQ" = ( +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/main_floor) +"xaS" = ( +/obj/effect/landmark/monkey_spawn, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"xaU" = ( +/obj/structure/stairs/multiz/up{ + dir = 4 + }, +/obj/structure/platform_decoration/metal, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"xbb" = ( +/obj/structure/closet/secure_closet/freezer/kitchen{ + pixel_x = -4 + }, +/turf/open/floor/hybrisa/carpet/carpetfadedred, +/area/navalis/indoors/residential/port) +"xbl" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles, +/area/navalis/indoors/logistic/upper_deck/workshop) +"xbr" = ( +/obj/structure/prop/hybrisa/vehicles/Colony_Crawlers/Science_2{ + dir = 1 + }, +/turf/open/floor/prison/darkyellowcorners2/east, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xbF" = ( +/obj/structure/barricade/handrail/strata/navalis, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"xbJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/plating/catwalk/grate/net, +/area/navalis/outdoors/exterior/com_ext/lower) +"xbT" = ( +/turf/closed/wall/hybrisa/colony/reinforced/hull, +/area/navalis/indoors/logistic/upper_deck/workshop) +"xce" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3" + }, +/obj/structure/machinery/light{ + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xcl" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/item/stack/rods{ + pixel_y = 1; + pixel_x = -6 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"xcn" = ( +/obj/structure/machinery/fuelcell_recycler, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/power) +"xcx" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + pixel_x = 32; + alpha = 220 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 8; + pixel_y = 11 + }, +/obj/structure/barricade/wooden{ + dir = 4; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"xcN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/structure/platform_decoration/metal/strata/north, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/aft_hallway) +"xcP" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/southeast, +/area/navalis/indoors/med_sci/lower_level/starboard) +"xdg" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/med_sci/lower_level/starboard) +"xdl" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/cell_stripe/west, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xdp" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/starboard) +"xdq" = ( +/obj/structure/monorail{ + dir = 10; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + explo_proof = 1; + unacidable = 1 + }, +/obj/effect/decal/hybrisa/warningstripes_angled{ + dir = 8 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"xdL" = ( +/obj/structure/cargo_container/watatsumi/mid, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"xec" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/prison/cell_stripe, +/area/navalis/outdoors/comm_one) +"xeg" = ( +/obj/structure/platform/stone/strata/west, +/obj/structure/platform_decoration/stone/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"xep" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/effect/hybrisa/misc/fake/wire/red{ + pixel_x = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/maintenance_port) +"xeq" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_x = 18; + pixel_y = 10 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"xeD" = ( +/obj/structure/platform/metal/hybrisa/metalplatform3/north, +/turf/open_space, +/area/navalis/indoors/residential/landing_pad) +"xeH" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/floor/hybrisa/tile/darkbrown_bigtile/east, +/area/navalis/indoors/command/tertiary_comms) +"xeV" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xeX" = ( +/obj/structure/platform/metal/almayer, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"xfb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_25"; + pixel_x = 8; + pixel_y = 17 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1/northeast, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"xfp" = ( +/obj/structure/machinery/door_control{ + id = "cargo_shutter_2"; + pixel_y = 28; + name = "Cargo Shutter" + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"xfF" = ( +/obj/structure/platform/metal/hybrisa/metalplatform2/east, +/obj/structure/platform/metal/hybrisa/metalplatform2, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/comm_one) +"xge" = ( +/turf/open/floor/prison/ramptop/north, +/area/navalis/outdoors/landing_zone_2) +"xgg" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + layer = 3.33 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/industrial/refinery) +"xgX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/almayer/plating_striped, +/area/navalis/indoors/med_sci/lower_level/port) +"xhh" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_1/under) +"xhi" = ( +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"xhk" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 9; + pixel_x = 16 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xhm" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + color = "#d3d3d3" + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"xho" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xhx" = ( +/obj/structure/janitorialcart, +/obj/structure/machinery/light{ + dir = 1 + }, +/turf/open/floor/almayer/black2, +/area/navalis/indoors/command/upper_deck/jani) +"xhK" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/med_ext/lower) +"xic" = ( +/obj/item/stack/rods{ + pixel_y = 12; + pixel_x = 2 + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"xiC" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"xiS" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"xje" = ( +/obj/structure/surface/rack, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/obj/item/clothing/mask/gas/swat, +/turf/open/floor/prison/red/southwest, +/area/navalis/indoors/med_sci/upper_level/sec) +"xjq" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall/computer{ + pixel_y = 23; + density = 0 + }, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_starboard) +"xjt" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_8"; + pixel_y = 18 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/east, +/area/navalis/indoors/command/office) +"xjy" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "2-4" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xjC" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/med_sci/maintenance_starboard) +"xjH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/prop/dam/crane/damaged, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"xjJ" = ( +/obj/structure/platform/metal/strata/north, +/turf/open_space, +/area/navalis/indoors/med_sci/upper_level/entrance) +"xjO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "test_square" + }, +/obj/structure/machinery/floodlight, +/obj/structure/machinery/light/small, +/turf/open/floor/hybrisa/tile/green_bigtile/southwest, +/area/navalis/indoors/command/tertiary_comms) +"xjV" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/science_lower_entrance) +"xjZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb2, +/turf/closed/wall/hybrisa/colony/hospital/reinforced, +/area/navalis/indoors/med_sci/maintenance_port) +"xkd" = ( +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"xkt" = ( +/obj/structure/platform/stone/strata/north, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/indoors/xeno_growth/residential) +"xkz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"xkK" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = 12 + }, +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/entrance) +"xkN" = ( +/obj/structure/platform_decoration/metal/strata/east, +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_2) +"xkY" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"xli" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"xlA" = ( +/obj/effect/decal/hybrisa/workers_decal{ + dir = 4 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = -9; + pixel_x = -1; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2) +"xlF" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/east, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob) +"xlO" = ( +/obj/structure/platform/metal/kutjevo_smooth, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob) +"xlX" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_x = 6 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2"; + pixel_y = 11; + pixel_x = 6 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/com_ext/upper) +"xmC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/xenoautopsy/jar_shelf, +/turf/open/floor/corsat/cargo, +/area/navalis/indoors/med_sci/lower_level/port) +"xmF" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/largecrate/empty/case/double, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"xmI" = ( +/obj/structure/prop/resin_prop{ + icon_state = "rack" + }, +/turf/open/floor/hybrisa/carpet/carpetpatternblue, +/area/navalis/indoors/residential/starboard) +"xmK" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_wall, +/turf/open/floor/plating, +/area/navalis/indoors/residential/starboard) +"xnn" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/north, +/area/navalis/indoors/residential/starboard) +"xnq" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/northwest, +/area/navalis/indoors/command/command_kitchen) +"xns" = ( +/obj/effect/decal/hybrisa/road/corner, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal8"; + pixel_y = -5; + pixel_x = -6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xnz" = ( +/turf/open/floor/prison/ramptop, +/area/navalis/indoors/industrial/power) +"xnM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/spawner/random/toolbox{ + layer = 4; + pixel_y = 11; + pixel_x = 2 + }, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/port) +"xnU" = ( +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water/far) +"xnW" = ( +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/log_ext/upper) +"xog" = ( +/turf/open/floor/plating/plating_catwalk, +/area/navalis/outdoors/exterior/med_ext/upper) +"xor" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco4/north, +/obj/structure/pipes/vents/pump, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/starboard) +"xoQ" = ( +/obj/structure/shuttle/engine/heater{ + dir = 4; + pixel_x = 4 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat, +/area/navalis/oob/powered) +"xoZ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/obj/structure/machinery/power/apc, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"xpa" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/maintenance_starboard) +"xpj" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_4"; + pixel_y = -8; + pixel_x = -4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"xpp" = ( +/obj/structure/machinery/light/small{ + dir = 4 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xpL" = ( +/turf/open/floor/corsat/darkgreen/north, +/area/navalis/indoors/logistic/lower_deck/fore) +"xqc" = ( +/obj/structure/sign/poster{ + icon_state = "poster67"; + pixel_y = 33 + }, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_9"; + pixel_y = 11; + pixel_x = -3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"xqd" = ( +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/logistic/primary_storage) +"xqz" = ( +/obj/structure/machinery/door/airlock/multi_tile/hybrisa/medical/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/entrance) +"xqB" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/logistic/upper_deck/entrance) +"xqE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"xqG" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/pipes/standard/simple/visible/purple, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"xqJ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xqZ" = ( +/obj/structure/sign/poster/safety{ + pixel_x = -28; + pixel_y = 4 + }, +/obj/structure/machinery/light/small{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/logistic/maintenance_starboard) +"xri" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"xrG" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/blue/west, +/area/navalis/indoors/logistic/workshop) +"xrO" = ( +/obj/structure/prop/resin_prop{ + icon_state = "secure_crate_strapped" + }, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/industrial/mining) +"xrQ" = ( +/obj/structure/surface/table/almayer{ + dir = 1; + flipped = 1 + }, +/obj/item/alienjar, +/obj/effect/landmark/objective_landmark/science, +/obj/item/paper{ + pixel_x = -10; + pixel_y = 6 + }, +/turf/open/floor/prison/darkpurplefull2, +/area/navalis/indoors/med_sci/upper_level/sci_lab) +"xsd" = ( +/obj/structure/machinery/door_control{ + id = "cargo_shutter_3"; + pixel_y = 28; + name = "Cargo Shutter" + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/log_ext) +"xse" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/comm_one) +"xsw" = ( +/obj/structure/platform_decoration/metal/strata, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"xsM" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/shuttle/escapepod, +/area/navalis/oob/powered) +"xsQ" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/biege/west, +/area/navalis/indoors/residential/cafeteria) +"xtk" = ( +/obj/structure/surface/table/almayer, +/obj/effect/landmark/objective_landmark/medium, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"xua" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"xub" = ( +/obj/structure/machinery/chem_simulator, +/turf/open/floor/prison/blue/northwest, +/area/navalis/indoors/med_sci/upper_level/sci_scan) +"xut" = ( +/obj/structure/sign/safety/medical{ + pixel_x = 1; + pixel_y = 32 + }, +/obj/structure/sign/safety/hazard{ + pixel_y = 32; + pixel_x = 14 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 4 + }, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/main_floor) +"xux" = ( +/obj/structure/prop/hybrisa/misc/buildinggreebliessmall{ + pixel_x = -2; + pixel_y = 20 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_port) +"xuB" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/structure/machinery/camera/autoname, +/turf/open/floor/prison/whitegreen/northwest, +/area/navalis/indoors/med_sci/surg_two) +"xuM" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy8" + }, +/area/navalis/oob/powered) +"xuP" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate4{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"xuT" = ( +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines2, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xvh" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/obj/structure/tunnel/maint_tunnel/hybrisa{ + pixel_y = 7 + }, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/logistic/lower_deck/port) +"xwe" = ( +/turf/open/floor/prison/darkbrown2/north, +/area/navalis/indoors/logistic/primary_storage) +"xwh" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/east, +/turf/open/floor/corsat/plate, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"xwz" = ( +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/logistic/mech_bay) +"xwC" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1/north, +/obj/structure/pipes/standard/simple/visible/purple{ + dir = 4 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"xxr" = ( +/obj/structure/extinguisher_cabinet/alt{ + pixel_x = -6; + pixel_y = 28 + }, +/obj/structure/prop/almayer/computers/sensor_computer2, +/turf/open/floor/almayer_hull, +/area/navalis/oob/powered) +"xxz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/oil, +/turf/open/floor/prison/darkbrown3/north, +/area/navalis/indoors/med_sci/lower_level/port) +"xxH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + pixel_x = -10 + }, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/med_sci/lower_level/port) +"xxV" = ( +/obj/effect/decal/hybrisa/road/lines2{ + pixel_y = 2 + }, +/obj/effect/decal/hybrisa/road/lines3{ + pixel_y = -1 + }, +/turf/open/floor/hybrisa/wood/blackwood, +/area/navalis/indoors/residential/port) +"xyd" = ( +/obj/structure/surface/table/reinforced/prison{ + color = "#6b675e" + }, +/obj/item/storage/belt/utility/full, +/obj/item/tool/wrench{ + pixel_y = 10 + }, +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"xyE" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1, +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open_space, +/area/navalis/indoors/industrial/mining) +"xzb" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15"; + pixel_y = 14 + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/command/lower_deck/port) +"xzg" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"xzj" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"xzB" = ( +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/surg_one) +"xzN" = ( +/obj/structure/machinery/big_computers/messaging_server/white{ + icon_state = "comm_server" + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"xzO" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3"; + pixel_x = 13 + }, +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomleft"; + color = "#d3d3d3" + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = 30 + }, +/obj/structure/flora/pottedplant{ + icon_state = "pottedplant_12"; + pixel_x = 10; + pixel_y = 2; + layer = 3.6 + }, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/foyer) +"xzR" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/logistic/lower_deck/port) +"xzT" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/med_sci/upper_level/sec) +"xzX" = ( +/obj/structure/prop/resin_prop{ + icon_state = "case" + }, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"xAd" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecalbottomright"; + color = "#d3d3d3" + }, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/prison/whitegreenfull, +/area/navalis/outdoors/landing_zone_1) +"xAk" = ( +/obj/structure/surface/table/reinforced/cloth{ + color = "#712215" + }, +/obj/item/tool/kitchen/utensil/knife{ + pixel_x = -2 + }, +/obj/item/tool/kitchen/utensil/fork, +/turf/open/floor/plating, +/area/navalis/indoors/residential/cafeteria) +"xAm" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_nest, +/obj/effect/landmark/xeno_spawn, +/turf/open/floor/almayer/greenfull2, +/area/navalis/indoors/residential/landing_pad) +"xAz" = ( +/obj/structure/stairs/multiz/down, +/obj/structure/platform/metal/strata/east, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"xAK" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco5, +/turf/open/floor/plating/catwalk/grate/lattice, +/area/navalis/outdoors/exterior_xeno_only) +"xAN" = ( +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -2 + }, +/obj/item/tool/weldingtool/empty{ + pixel_x = 10 + }, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/command/port_hallway) +"xAW" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_16"; + pixel_y = 15 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"xAY" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/cleanable/blood/gibs/xeno, +/obj/effect/decal/cleanable/blood/xeno, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"xBJ" = ( +/obj/structure/surface/table/reinforced/almayer_B, +/obj/structure/machinery/computer/cameras{ + dir = 4; + pixel_y = 4; + pixel_x = 2 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/foyer) +"xBR" = ( +/turf/open/floor/prison/blue/northeast, +/area/navalis/outdoors/landing_zone_1) +"xBU" = ( +/turf/open/floor/hybrisa/tile/tilewhitecheckered/blue, +/area/navalis/indoors/residential/kitchen) +"xCd" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/ramptop/north, +/area/navalis/oob/water) +"xCk" = ( +/obj/structure/machinery/vending/coffee{ + density = 0; + pixel_y = 16; + layer = 4 + }, +/turf/open/floor/prison/green/north, +/area/navalis/indoors/command/port_hallway) +"xCz" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/obj/effect/decal/hybrisa/road/lines4, +/obj/structure/closet/crate/explosives, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xDb" = ( +/obj/effect/decal/cleanable/blood/xeno{ + pixel_y = 18; + pixel_x = -4 + }, +/turf/open/floor/prison/floorscorched2, +/area/navalis/indoors/logistic/primary_storage) +"xDk" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/west, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2, +/obj/effect/hybrisa/misc/fake/pipes/pipe2{ + dir = 4 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/med_sci/maintenance_port) +"xDC" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/residential/port) +"xDN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/closed/wall/solaris, +/area/navalis/indoors/logistic/lower_deck/maint) +"xDU" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6/east, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"xDV" = ( +/obj/structure/prop/resin_prop{ + dir = 4; + icon_state = "chair" + }, +/turf/open/floor/corsat/officesquares, +/area/navalis/indoors/residential/kitchen) +"xDX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/dark{ + dir = 4 + }, +/turf/open/floor/corsat/arrow_east, +/area/navalis/indoors/industrial/refinery) +"xEa" = ( +/turf/closed/shuttle/ert{ + icon_state = "wy27" + }, +/area/navalis/oob/powered) +"xEw" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/obj/structure/largecrate/random/barrel/medical, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xEC" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/turf/open_space, +/area/navalis/oob/empty_space) +"xED" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/north, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"xEF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/camera/autoname{ + dir = 4 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/port) +"xFa" = ( +/obj/effect/decal/cleanable/blood/gibs/robot{ + pixel_y = 4 + }, +/turf/open/floor/plating, +/area/navalis/indoors/residential/accessway) +"xFk" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/charon/below_deck/rear) +"xFw" = ( +/obj/structure/machinery/door/airlock/almayer/engineering/glass{ + dir = 1; + autoname = 1; + name = "\improper Airlock"; + req_one_access = null; + req_access = null + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/logistic/upper_deck/workshop) +"xFG" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/strata/multi_tiles/southwest, +/area/navalis/indoors/command/upper_deck/starboard) +"xFO" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/darkred2, +/area/navalis/indoors/residential/cafeteria) +"xFT" = ( +/obj/structure/curtain/colorable_transparent{ + color = "#788685"; + layer = 3.2; + pixel_x = 32; + alpha = 220 + }, +/turf/open/floor/prison/floor_plate, +/area/navalis/indoors/command/office) +"xFU" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal12" + }, +/turf/open/floor/prison/greenfull/east, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"xGv" = ( +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"xGN" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "S" + }, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/industrial/mining) +"xHe" = ( +/obj/structure/barricade/handrail/medical, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/prison/whitegreen/east, +/area/navalis/indoors/med_sci/main_floor) +"xHp" = ( +/obj/structure/prop/hybrisa/misc/cabinet{ + pixel_x = -7; + pixel_y = 12; + layer = 3.6 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 9; + pixel_y = 19; + density = 0 + }, +/obj/item/trash/crushed_cup{ + layer = 3.7; + pixel_x = 8; + pixel_y = 25 + }, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/almayer/blackfull2, +/area/navalis/indoors/med_sci/records_room) +"xHz" = ( +/obj/structure/window/framed/solaris/reinforced, +/turf/open/floor/plating, +/area/navalis/indoors/command/lower_deck/starboard) +"xHC" = ( +/obj/structure/prop/structure_lattice{ + dir = 4 + }, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 3.1; + level = 3; + pixel_y = 10 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xHE" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/prop/hybrisa/misc/fake/heavydutywire/heavy2{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -8 + }, +/obj/structure/prop/hybrisa/misc/metergreen{ + pixel_x = -2; + pixel_y = -23 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_starboard) +"xHJ" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/industrial/refinery) +"xHO" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4, +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/obj/item/lightstick/red/planted{ + pixel_y = 13 + }, +/obj/structure/monorail{ + dir = 1; + name = "support beam"; + desc = "Do you think the bugs are using these to move around this rig?"; + layer = 0.8 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"xHP" = ( +/turf/open/floor/plating/platingdmg1, +/area/navalis/indoors/med_sci/chemical_store) +"xHX" = ( +/obj/structure/surface/rack, +/obj/effect/spawner/random/tool, +/obj/effect/spawner/random/tool, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison/blue/north, +/area/navalis/indoors/logistic/workshop) +"xIn" = ( +/obj/item/circuitboard/machine/rdserver{ + pixel_x = 6; + pixel_y = 8 + }, +/turf/open/floor/almayer/tcomms, +/area/navalis/indoors/command/upper_deck/server) +"xIv" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/primary_storage) +"xIM" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/obj/item/stack/cable_coil/orange, +/obj/item/prop/almayer/handheld1{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/command/lower_deck/port) +"xIS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/starboard) +"xJw" = ( +/obj/structure/barricade/handrail/wire{ + dir = 1; + layer = 3.1; + pixel_y = 13 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/plating, +/area/navalis/indoors/command/maintenance_starboard) +"xKm" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/auto_turf/snow/brown_base/layer0/seabed, +/area/navalis/outdoors/exterior/ind_ext) +"xKv" = ( +/obj/structure/prop/invuln/lattice_prop{ + dir = 1; + icon_state = "lattice-simple"; + pixel_x = 16; + pixel_y = -15 + }, +/turf/closed/wall/strata_outpost, +/area/navalis/indoors/charon/below_deck/middle) +"xKK" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xKS" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal11" + }, +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"xKV" = ( +/turf/open/floor/prison/greenblue/southwest, +/area/navalis/indoors/charon/below_deck/front) +"xLq" = ( +/obj/structure/barricade/handrail{ + dir = 4 + }, +/turf/open/floor/prison, +/area/navalis/indoors/logistic/upper_deck/entrance) +"xLr" = ( +/obj/effect/decal/hybrisa/road/lines2, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal4" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/tiretrack{ + dir = 5; + pixel_y = -9 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"xLv" = ( +/obj/structure/largecrate/supply/medicine/blood, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xLH" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"xLI" = ( +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"xLL" = ( +/obj/item/stack/sheet/wood, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/command/tertiary_comms) +"xLS" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 8 + }, +/obj/structure/barricade/handrail/strata/navalis{ + dir = 1 + }, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"xLU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/hybrisa/misc/fake/wire/blue{ + pixel_x = -4 + }, +/obj/structure/disposalpipe/segment, +/turf/open/floor/plating/plating_catwalk/prison/dark, +/area/navalis/indoors/logistic/lower_deck/fuel) +"xMs" = ( +/obj/vehicle/powerloader, +/turf/open/floor/mech_bay_recharge_floor, +/area/navalis/indoors/logistic/mech_bay) +"xMJ" = ( +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_15" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light{ + dir = 8 + }, +/turf/open/floor/prison/darkbrown2/southwest, +/area/navalis/indoors/logistic/upper_deck/office) +"xMM" = ( +/obj/effect/decal/medical_decals{ + icon_state = "triagedecaldir"; + color = "#d3d3d3" + }, +/turf/open/floor/prison/whitegreen, +/area/navalis/indoors/med_sci/chemical_store) +"xMW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/tilewhitecheckered, +/area/navalis/indoors/residential/cafeteria) +"xNd" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/obj/structure/machinery/light{ + dir = 4 + }, +/turf/open_space, +/area/navalis/indoors/logistic/primary_storage) +"xNk" = ( +/obj/structure/platform/metal/strata/east, +/turf/open/gm/river/no_overlay/ocean, +/area/navalis/oob/water) +"xNo" = ( +/obj/effect/landmark/structure_spawner/setup/distress/xeno_weed_node, +/turf/open/floor/hybrisa/tile/darkgrey_bigtile, +/area/navalis/indoors/residential/cafeteria) +"xNp" = ( +/obj/structure/bed/chair/comfy{ + dir = 4 + }, +/turf/open/floor/hybrisa/carpet/pink, +/area/navalis/indoors/residential/starboard) +"xNr" = ( +/turf/closed/wall/hybrisa/colony/reinforced, +/area/navalis/indoors/logistic/upper_deck/maint) +"xNu" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "NW-out"; + layer = 2.5 + }, +/obj/structure/machinery/power/apc{ + dir = 1 + }, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"xNB" = ( +/obj/effect/sentry_landmark/lz_2/bottom_left, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/landing_zone_2) +"xOp" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/obj/effect/decal/hybrisa/road/lines2, +/obj/item/explosive/plastic{ + desc = "A compact explosive charge for controlled demolitions. Looks to be made from C4"; + name = "Mining explosives"; + pixel_x = -8; + pixel_y = -9 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/logistic/lower_deck/fore) +"xPr" = ( +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/hybrisa/dirt, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 6 + }, +/obj/effect/decal/cleanable/dirt/greenglow{ + color = "#140400"; + name = "dirt"; + alpha = 100; + pixel_y = 8; + pixel_x = 16 + }, +/obj/effect/decal/remains/robot{ + pixel_y = -7 + }, +/obj/structure/platform/metal/strata/west, +/obj/structure/stairs{ + dir = 1 + }, +/turf/open/floor/corsat/officetiles, +/area/navalis/indoors/logistic/primary_storage) +"xPy" = ( +/obj/structure/platform/stone/strata, +/obj/structure/platform/stone/strata/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"xPH" = ( +/obj/structure/surface/table/almayer, +/obj/item/paper_bin{ + pixel_x = 7; + pixel_y = 4 + }, +/obj/item/tool/pen{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/reagent_container/food/drinks/coffee/cuppa_joes{ + pixel_y = 5; + pixel_x = -4 + }, +/obj/effect/landmark/objective_landmark/science, +/turf/open/floor/prison/blue, +/area/navalis/indoors/command/cent_com) +"xQv" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/obj/structure/platform/metal/hybrisa/metalplatform1/west, +/turf/open_space, +/area/navalis/oob/empty_space) +"xQA" = ( +/obj/structure/platform_decoration/metal/almayer/west, +/obj/structure/prop/hybrisa/misc/floorprops/grate4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"xQF" = ( +/obj/structure/platform/metal/almayer/north, +/obj/structure/platform/metal/almayer/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"xQL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/starboard) +"xQN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/vomit, +/turf/open/floor/prison/darkbrown3/east, +/area/navalis/indoors/command/lower_deck/port) +"xRd" = ( +/obj/structure/prop/hybrisa/misc/machinery/screens/redalert{ + pixel_y = -31 + }, +/turf/open/floor/prison/greenblue/west, +/area/navalis/outdoors/charon/surface_deck/rear_deck) +"xRs" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/industrial/refinery) +"xRx" = ( +/obj/structure/surface/table/almayer, +/obj/structure/machinery/prop/almayer/computer/PC{ + dir = 4; + pixel_x = 5; + pixel_y = -3 + }, +/turf/open/floor/prison/darkbrownfull2, +/area/navalis/indoors/logistic/upper_deck/office) +"xRA" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/east, +/turf/open/floor/almayer_hull/outerhull_dir/west, +/area/navalis/indoors/logistic/primary_storage) +"xRC" = ( +/obj/structure/platform/metal/hybrisa/metalplatform4/east, +/obj/structure/platform/metal/hybrisa/metalplatform4, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/outdoors/landing_zone_1) +"xRK" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xSA" = ( +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/logistic/upper_deck/workshop) +"xSB" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/air_traffic_control) +"xSG" = ( +/obj/item/tool/warning_cone{ + pixel_x = -21; + pixel_y = 3 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"xSL" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco1, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/turf/open_space, +/area/navalis/oob/empty_space) +"xSO" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "W"; + pixel_x = -1; + pixel_y = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/charon/below_deck/rear) +"xSX" = ( +/obj/structure/surface/table/reinforced/prison, +/obj/effect/landmark/objective_landmark/far, +/obj/item/prop/magazine/book/spacebeast, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/med_sci/upper_level/entrance) +"xSY" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"xTJ" = ( +/obj/structure/platform/metal/kutjevo_smooth/north, +/obj/structure/platform/metal/kutjevo_smooth/west, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/med_ext/upper) +"xUl" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33 + }, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 10 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/almayer/plate, +/area/navalis/outdoors/exterior/med_ext/upper) +"xUq" = ( +/obj/structure/closet/crate, +/obj/item/tool/hand_labeler, +/obj/item/tool/hand_labeler, +/obj/effect/landmark/objective_landmark/far, +/turf/open/floor/prison/bluefull/west, +/area/navalis/indoors/logistic/workshop) +"xUO" = ( +/obj/item/trash/eat{ + pixel_x = 18; + pixel_y = -15 + }, +/turf/open/floor/prison/bright_clean/southwest, +/area/navalis/indoors/residential/cafeteria) +"xVh" = ( +/obj/effect/decal/hybrisa/road/road_edge, +/obj/effect/decal/hybrisa/road/lines1, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/port) +"xVl" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/corsat/plate, +/area/navalis/oob/empty_space) +"xVz" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1/east, +/area/navalis/indoors/command/upper_deck/starboard) +"xWf" = ( +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/east, +/obj/structure/platform_decoration/metal/hybrisa/metalplatformdeco3/west, +/turf/open/floor/prison/ramptop, +/area/navalis/indoors/logistic/mech_bay) +"xWv" = ( +/obj/structure/platform_decoration/metal/almayer/east, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"xWz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"xWP" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/pipes/standard/simple/hidden/cyan, +/turf/open/floor/strata/multi_tiles/southeast, +/area/navalis/indoors/logistic/Port_hallway) +"xWY" = ( +/turf/open/floor/hybrisa/tile/tilebeige, +/area/navalis/indoors/residential/cafeteria) +"xXl" = ( +/obj/structure/bed/chair{ + dir = 4; + pixel_x = -6; + pixel_y = 2 + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/starboard) +"xXv" = ( +/obj/structure/prop/hybrisa/airport/deadpilot2{ + name = "decapitated platform Pilot"; + desc = "What remains of a offshore platform Pilot. Their entire head is missing. Where'd it roll off to?..."; + pixel_y = -1; + pixel_x = -27 + }, +/obj/effect/decal/cleanable/blood/gibs/limb, +/obj/effect/decal/cleanable/blood, +/obj/effect/decal/cleanable/blood{ + icon_state = "armor_blood" + }, +/obj/effect/decal/cleanable/blood/drip{ + icon_state = "3"; + pixel_x = -11; + pixel_y = 12 + }, +/obj/structure/prop/hybrisa/misc/blood/blood2{ + dir = 8; + pixel_x = -14 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer_hull, +/area/navalis/oob/water) +"xXz" = ( +/turf/closed/wall/hybrisa/research, +/area/navalis/indoors/med_sci/upper_level/sci_ent) +"xXI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4; + layer = 3.25 + }, +/obj/structure/pipes/standard/simple/hidden/cyan{ + dir = 6 + }, +/turf/open/floor/hybrisa/carpet/rug_colorable/grey_blue/northwest, +/area/navalis/indoors/command/office) +"xXM" = ( +/obj/structure/sign/poster/music{ + pixel_x = -27 + }, +/obj/structure/barricade/wooden{ + dir = 1; + pixel_y = 23; + health = 600; + name = "reinforced wooden barricade" + }, +/turf/open/floor/prison/green/east, +/area/navalis/indoors/command/port_hallway) +"xXV" = ( +/obj/structure/machinery/door/firedoor/border_only/almayer, +/turf/open/floor/corsat/marked, +/area/navalis/outdoors/landing_zone_2/under) +"xXW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/structure/sign/poster/safety{ + pixel_x = 27; + pixel_y = 32 + }, +/obj/item/storage/pouch/flare, +/turf/open/floor/prison/darkbrown3/northeast, +/area/navalis/indoors/command/lower_deck/starboard) +"xYy" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/north, +/area/navalis/indoors/residential/port) +"xYL" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/obj/structure/machinery/light/small{ + dir = 8 + }, +/turf/open/floor/shiva/radiator_tile2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"xYQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/mini{ + pixel_x = 10; + pixel_y = 10 + }, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/logistic/lower_deck/fore) +"xZo" = ( +/obj/effect/decal/cleanable/liquid_fuel, +/turf/open/floor/prison/whitegreen/north, +/area/navalis/indoors/med_sci/chemical_store) +"xZC" = ( +/obj/structure/prop/hybrisa/misc/floorprops/grate, +/obj/structure/platform/metal/hybrisa/metalplatform6/north, +/obj/structure/platform/metal/hybrisa/metalplatform6, +/obj/effect/hybrisa/misc/fake/wire/yellow{ + dir = 4; + pixel_y = -2 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/command/maintenance_port) +"xZV" = ( +/turf/open/floor/hybrisa/metal/bluemetalcorner, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"yab" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/largecrate/random/case/small{ + pixel_x = 1; + pixel_y = -2 + }, +/turf/open/floor/almayer/plating2, +/area/navalis/indoors/med_sci/lower_level/port) +"yal" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/warning_stripes{ + icon_state = "S"; + layer = 3.3 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "cargo_arrow4"; + dir = 8; + pixel_x = 7 + }, +/turf/open/floor/almayer/plating, +/area/navalis/indoors/command/upper_deck/starboard) +"yat" = ( +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"yaN" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/strata/multi_tiles/west, +/area/navalis/indoors/command/upper_deck/starboard) +"ycg" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/east, +/area/navalis/indoors/residential/cafeteria) +"ych" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/firecloset, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/med_sci/lower_level/starboard) +"ycu" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal7" + }, +/obj/effect/decal/cleanable/dirt, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/med_sci/lower_level/delivery) +"ycI" = ( +/obj/structure/prop/oilrig/support_beam/brown, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/empty_space) +"ycQ" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -23; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/indoors/industrial/power) +"ydi" = ( +/obj/structure/platform_decoration/metal/almayer/north, +/obj/structure/machinery/floodlight/landing/floor, +/turf/open/floor/almayer/blackfull/west, +/area/navalis/outdoors/landing_zone_2) +"ydH" = ( +/obj/structure/surface/rack{ + color = "#848484" + }, +/obj/effect/spawner/random/tool{ + pixel_x = 6; + pixel_y = 2 + }, +/obj/effect/spawner/random/tool{ + pixel_x = 4; + pixel_y = 6 + }, +/obj/effect/spawner/random/tool{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/machinery/light/small, +/turf/open/floor/corsat/squares, +/area/navalis/indoors/logistic/lower_deck/fuel) +"ydL" = ( +/turf/closed/wall/hybrisa/colony/office/reinforced, +/area/navalis/indoors/command/upper_deck/jani) +"ydM" = ( +/turf/open/floor/hybrisa/carpet/rug_colorable/black/southwest, +/area/navalis/indoors/residential/starboard) +"ydU" = ( +/obj/effect/decal/cleanable/generic, +/turf/open/hybrisa/street/cement3, +/area/navalis/indoors/med_sci/lower_level/starboard) +"yed" = ( +/obj/structure/prop/invuln/ice_prefab/roof_greeble{ + icon_state = "vent4" + }, +/turf/open/floor/almayer_hull, +/area/navalis/outdoors/exterior/com_ext/upper) +"yeh" = ( +/obj/effect/decal/hybrisa/road/lines3, +/obj/effect/decal/hybrisa/road/lines4, +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal2" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"yen" = ( +/obj/structure/prop/structure_lattice{ + dir = 4; + layer = 1.4; + density = 0 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_3{ + layer = 1.3 + }, +/obj/structure/roof/hybrisa/lattice_prop/lattice_2{ + pixel_y = 15; + layer = 1.3 + }, +/obj/structure/prop/hybrisa/misc/floorprops/grate2{ + layer = 1 + }, +/obj/item/lightstick/planted{ + pixel_y = 15; + layer = 4.11 + }, +/obj/structure/platform/metal/hybrisa/metalplatform1, +/turf/open/floor/plating/catwalk/grate/alt, +/area/navalis/oob/empty_space) +"yep" = ( +/obj/structure/platform/stone/strata/east, +/turf/open_space, +/area/navalis/oob/empty_space) +"yey" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/cargo_container/hybrisa/containersextended/tanleft, +/turf/open/floor/prison/darkbrown3/southeast, +/area/navalis/indoors/command/lower_deck/starboard) +"yeP" = ( +/obj/effect/decal/strata_decals/catwalk/prison, +/turf/closed/wall/solaris, +/area/navalis/indoors/command/lower_deck/sub_pen) +"yeW" = ( +/obj/structure/blocker/invisible_wall, +/turf/open/floor/prison/floorscorched1, +/area/navalis/indoors/command/tertiary_comms) +"yfc" = ( +/obj/structure/platform/metal/hybrisa/metalplatform1/north, +/turf/open/floor/plating/catwalk/grate, +/area/navalis/outdoors/exterior/med_ext) +"yfH" = ( +/turf/open/floor/prison/darkbrowncorners2/north, +/area/navalis/indoors/logistic/primary_storage) +"yfR" = ( +/obj/structure/cargo_container/trijent/left, +/turf/open/floor/plating, +/area/navalis/outdoors/charon/surface_deck/main_deck) +"yfT" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal3"; + pixel_y = 15; + pixel_x = -16; + color = "#FFFF00" + }, +/turf/open/floor/hybrisa/tile/tilegrey, +/area/navalis/outdoors/landing_zone_2/under) +"yfU" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/hybrisa/trash{ + icon_state = "trash_17"; + pixel_y = 28; + layer = 3 + }, +/turf/open/floor/hybrisa/metal/bluemetal1/west, +/area/navalis/indoors/command/upper_deck/port) +"ygb" = ( +/obj/structure/bed/sofa/vert/grey/bot, +/turf/open/floor/prison, +/area/navalis/indoors/command/upper_deck/port) +"ygh" = ( +/obj/structure/disposalpipe/segment{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/indoors/command/cent_com) +"ygm" = ( +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/logistic/lower_deck/maint) +"ygW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/almayer/plating_striped/north, +/area/navalis/indoors/med_sci/lower_level/port) +"yhs" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/barricade/wooden{ + pixel_y = 18 + }, +/turf/open/floor/corsat, +/area/navalis/indoors/logistic/lower_deck/fore) +"yhX" = ( +/turf/closed/wall/solaris, +/area/navalis/indoors/logistic/lower_deck/port) +"yiq" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkyellow2, +/area/navalis/indoors/command/lower_deck/sub_pen) +"yiH" = ( +/obj/item/tool/warning_cone{ + pixel_y = 17 + }, +/turf/open/floor/kutjevo/grey, +/area/navalis/outdoors/landing_zone_2) +"yjp" = ( +/obj/structure/bed/roller/hospital_empty/bigrollerempty2, +/obj/structure/machinery/iv_drip{ + pixel_y = 24; + layer = 3.9 + }, +/turf/open/floor/prison/sterile_white, +/area/navalis/indoors/med_sci/main_floor) +"yjv" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "N"; + layer = 3.33; + pixel_y = 2 + }, +/obj/structure/blocker/invisible_wall, +/turf/open/floor/almayer/plating, +/area/navalis/oob/powered) +"yjz" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/prison/darkbrown3/west, +/area/navalis/indoors/landing_zone_2) +"yjL" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/strata_decals/grime/grime3{ + dir = 4 + }, +/turf/open/floor/prison/darkbrown3, +/area/navalis/indoors/logistic/lower_deck/port) +"yjX" = ( +/obj/structure/machinery/floodlight/landing{ + desc = "A powerful light stationed near construction zones to provide better visibility."; + name = "Self-powered Light"; + layer = 2; + pixel_y = -13; + pixel_x = 16 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/oob/water) +"ykf" = ( +/obj/structure/cargo_container/horizontal/blue/top, +/turf/open/floor/corsat/box, +/area/navalis/indoors/logistic/lower_deck/fore) +"ykh" = ( +/obj/structure/barricade/handrail/strata/navalis{ + dir = 4 + }, +/turf/open/floor/plating/catwalk/rusted, +/area/navalis/outdoors/exterior/log_ext/lower) +"ykj" = ( +/obj/structure/prop/invuln/overhead/flammable_pipe/fly{ + dir = 8; + pixel_y = 6 + }, +/turf/open/floor/hybrisa/metal/yellow_warning_floor, +/area/navalis/indoors/industrial/mining) +"ykz" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/bed/chair/office/light{ + dir = 1; + layer = 2.7; + pixel_y = 1 + }, +/turf/open/floor/prison/blue, +/area/navalis/indoors/med_sci/lower_level/records) +"ykK" = ( +/obj/effect/decal/hybrisa/road/road_edge{ + icon_state = "road_edge_decal9"; + pixel_y = -5; + pixel_x = 6 + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/indoors/command/lower_deck/starboard) +"ykL" = ( +/obj/effect/spawner/random/tool{ + pixel_x = 5 + }, +/turf/open/floor/prison/darkpurple2/west, +/area/navalis/indoors/command/upper_deck/server) +"ykR" = ( +/obj/structure/window/framed/hybrisa/colony/hull/blastdoor, +/turf/open/floor/corsat, +/area/navalis/oob/powered) +"ykS" = ( +/obj/effect/decal/warning_stripes{ + icon_state = "E"; + pixel_x = 2 + }, +/turf/open/floor/plating/plating_catwalk/prison, +/area/navalis/outdoors/exterior/com_ext/upper) +"ykT" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/generic, +/turf/open/floor/hybrisa/metal/bluemetal1/north, +/area/navalis/indoors/command/upper_deck/naval_traffic_control) +"ykW" = ( +/obj/structure/platform/metal/kutjevo_smooth/west, +/obj/structure/blocker/forcefield/all{ + invisibility = 101 + }, +/obj/structure/platform/metal/kutjevo_smooth, +/turf/open_space, +/area/navalis/oob/empty_space) +"ylj" = ( +/obj/structure/blocker/invisible_wall, +/obj/structure/platform/metal/hybrisa/metalplatform5, +/obj/structure/platform/metal/hybrisa/metalplatform5/west, +/turf/open/floor/corsat/plate, +/area/navalis/oob) +"ylC" = ( +/obj/structure/machinery/door/airlock/hybrisa/medical/autoname, +/turf/open/floor/corsat/marked, +/area/navalis/indoors/med_sci/upper_level/flight) +"ylI" = ( +/obj/effect/decal/hybrisa/road/road_stop{ + icon_state = "stop_decal4" + }, +/turf/open/hybrisa/street/asphalt, +/area/navalis/outdoors/landing_zone_2/under) +"ylU" = ( +/obj/effect/spawner/random/toolbox{ + pixel_x = 5; + pixel_y = 6 + }, +/obj/effect/decal/cleanable/blood/xeno{ + pixel_x = 8; + pixel_y = 2 + }, +/obj/effect/decal/warning_stripes{ + icon_state = "NE-out"; + pixel_x = 1; + pixel_y = 2 + }, +/obj/effect/decal/cleanable/dirt{ + icon_state = "thermite"; + name = "impact" + }, +/turf/open/floor/prison, +/area/navalis/indoors/command/tertiary_comms) +"ylW" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/surface/table/almayer, +/obj/item/clipboard{ + pixel_x = 5; + pixel_y = 3 + }, +/obj/item/paper{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/clothing/glasses/welding/superior, +/turf/open/floor/prison/darkbrown3/northwest, +/area/navalis/indoors/command/lower_deck/port) +"yme" = ( +/obj/effect/decal/cleanable/dirt, +/turf/open/floor/corsat/plate, +/area/navalis/indoors/logistic/lower_deck/maint_store) + +(1,1,1) = {" +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +"} +(2,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(3,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(4,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(5,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(6,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(7,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(8,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(9,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(10,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(11,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(12,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(13,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(14,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(15,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(16,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(17,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(18,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(19,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(20,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(21,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(22,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +bTA +bTA +bTA +bTA +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(23,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +wHk +wHk +wHk +wHk +wHk +bTA +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(24,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +wHk +wHk +wHk +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(25,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +nIZ +ljO +ljO +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(26,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +nIZ +ljO +ljO +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(27,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +nIZ +nIZ +nIZ +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(28,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +wHk +wHk +wHk +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(29,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +bTA +wHk +wHk +wHk +wHk +wHk +bTA +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(30,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +tfA +wMl +wMl +wMl +wMl +wMl +ctB +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +bTA +bTA +bTA +bTA +bTA +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(31,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +tfA +tmo +dvZ +dvZ +dvZ +dvZ +dvZ +fWi +ctB +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(32,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +fBP +tmo +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +fWi +ctB +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(33,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +uQz +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +jDj +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(34,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +uQz +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +jDj +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(35,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +uQz +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(36,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +uQz +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(37,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +uQz +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(38,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nLz +uWv +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(39,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nLz +uWv +dvZ +dvZ +dvZ +dvZ +dvZ +njB +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(40,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nLz +yat +yat +yat +yat +yat +rVg +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(41,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(42,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(43,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(44,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(45,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(46,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(47,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(48,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(49,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(50,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(51,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(52,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +alQ +alQ +alQ +alQ +alQ +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(53,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(54,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nZj +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(55,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +iHo +gXw +nOQ +ijq +dTv +qBB +bTA +uJa +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(56,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +bTA +bTA +bTA +bTA +bTA +bTA +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(57,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +weX +bTA +hnj +ebZ +hnj +bTA +oCw +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(58,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +alQ +alQ +alQ +alQ +alQ +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +psU +bTA +eqt +bTA +mPK +bTA +fdQ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(59,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +cuE +bTA +hnj +raQ +hnj +bTA +wzY +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(60,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nZj +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +iHo +bTA +nOQ +tal +bTA +tal +bTA +tal +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(61,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gXw +bTA +kpL +dTv +tLf +bTA +gXw +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(62,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +hmW +hmW +fIA +mmV +ite +hmW +hmW +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +ksj +ksj +ksj +ksj +ksj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(63,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(64,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(65,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(66,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(67,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(68,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +ksj +ksj +ksj +ksj +ksj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +alQ +alQ +alQ +alQ +alQ +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(69,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(70,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nZj +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(71,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(72,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(73,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(74,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(75,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(76,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(77,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(78,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +ksj +ksj +ksj +ksj +ksj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(79,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(80,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(81,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(82,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(83,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(84,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(85,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(86,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(87,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(88,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(89,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(90,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(91,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +qhl +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(92,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +iRI +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(93,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +vkh +vkh +vkh +vkh +vkh +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +iRI +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(94,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +vkh +wHk +wHk +wHk +wHk +wHk +vkh +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +gAK +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(95,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +qpq +set +set +set +set +set +set +set +set +set +ozN +vkh +wHk +wHk +wHk +wHk +wHk +wHk +wHk +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(96,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +iPM +ltq +eyh +uFN +fpN +vkh +gzd +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +gXw +nOQ +ijq +dTv +qBB +bTA +uJa +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +gXw +nOQ +ijq +dTv +qBB +bTA +uJa +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +tLN +lKD +rzA +rzA +rzA +rzA +rzA +kwy +nVv +hfr +kGT +vkh +wHk +wHk +kSh +ljO +ljO +wHk +wHk +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(97,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +vkh +vkh +vkh +vkh +vkh +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +bTA +bTA +bTA +bTA +bTA +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +bTA +bTA +bTA +bTA +bTA +dIO +mmV +mmV +mmV +mmV +mmV +mmV +wWc +set +set +set +set +pWC +nsd +dFg +dFg +dFg +dFg +dFg +ylI +fwM +hfr +kGT +vkh +wHk +wHk +nIZ +ljO +ljO +wHk +wHk +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(98,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +lqi +vkh +skC +mwH +skC +vkh +kwH +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +weX +bTA +hnj +ebZ +hnj +bTA +oCw +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +weX +bTA +hnj +ebZ +hnj +bTA +oCw +fIA +mmV +mmV +mmV +mmV +mmV +mmV +tLN +hfr +mNB +jTC +rzA +rzA +iKu +dFg +dFg +lKS +iPw +iPw +jji +iVC +hfr +kGT +vkh +wHk +wHk +nIZ +nIZ +nIZ +wHk +wHk +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(99,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xCd +vkh +kgI +vkh +vUO +vkh +tUO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +psU +bTA +eqt +bTA +mPK +bTA +fdQ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +psU +bTA +eqt +bTA +mPK +bTA +fdQ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +tLN +hfr +nfQ +lLu +dFg +dFg +dFg +dFg +dFg +tzs +jnF +ksR +ksR +ksR +ksR +eTD +vkh +wHk +wHk +wHk +wHk +wHk +wHk +wHk +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(100,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +cNf +vkh +skC +dCK +skC +vkh +eWb +mxL +mmV +mmV +mmV +iKp +oYB +iEX +ijB +sPI +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +cuE +bTA +hnj +raQ +hnj +bTA +wzY +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +cuE +bTA +hnj +raQ +hnj +bTA +wzY +mxL +mmV +mmV +mmV +mmV +mmV +mmV +tLN +hfr +jdE +fBj +iPw +iPw +iPw +iPw +iPw +hhO +kGT +mmV +mmV +mmV +mmV +mmV +aHs +vkh +wHk +wHk +wHk +wHk +wHk +vkh +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +qhl +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(101,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +vkh +ltq +dSa +vkh +dSa +vkh +dSa +dIO +mmV +mmV +iKp +baZ +fyN +qGf +cMf +kKQ +sPI +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +bTA +nOQ +tal +bTA +tal +bTA +tal +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +bTA +nOQ +tal +bTA +tal +bTA +tal +dIO +mmV +mmV +mmV +mmV +mmV +mmV +vfl +ksR +ksR +ksR +ksR +ksR +ksR +ksR +ksR +ksR +izG +mmV +mmV +mmV +mmV +mmV +mmV +aHs +vkh +vkh +vkh +vkh +vkh +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +iRI +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(102,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +iPM +vkh +qmK +uFN +lUh +vkh +iPM +dIO +mmV +mmV +eXt +icz +bWR +uLK +qOR +hQT +wuS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +gXw +bTA +kpL +dTv +tLf +bTA +gXw +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +gXw +bTA +kpL +dTv +tLf +bTA +gXw +dIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +iRI +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(103,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +hmW +hmW +fIA +mmV +ite +hmW +hmW +fIA +mmV +mmV +mRy +jko +xXv +uOw +wKz +omL +gkV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +hmW +hmW +fIA +mmV +ite +hmW +hmW +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +hmW +hmW +fIA +mmV +ite +hmW +hmW +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +gAK +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(104,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mRy +nor +jUW +ceB +gkV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(105,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(106,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(107,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(108,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(109,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(110,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(111,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(112,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +bTA +bTA +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +fiq +ltq +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(113,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +xsw +xNk +xNk +mxL +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +bTA +bTA +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +vkh +vkh +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(114,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +kIz +yjX +nOQ +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +bTA +bTA +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +dvZ +dvZ +dvZ +dvZ +bTA +fXS +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(115,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vXh +bTA +bTA +sIO +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +bTA +bTA +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bTA +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(116,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +ite +sST +sST +fIA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(117,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +vkh +dvZ +dvZ +dvZ +dvZ +vkh +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(118,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vkh +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(119,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(120,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bTA +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(121,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +bTA +dvZ +dvZ +dvZ +dvZ +bTA +qzv +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(122,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(123,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +vkh +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vkh +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(124,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +vkh +dvZ +dvZ +dvZ +dvZ +vkh +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(125,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(126,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(127,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(128,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(129,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(130,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(131,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(132,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(133,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(134,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(135,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +bTA +bTA +bTA +bTA +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(136,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +wHk +wHk +wHk +wHk +wHk +bTA +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(137,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +wHk +wHk +wHk +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(138,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gMb +gMb +gMb +gMb +gMb +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +nIZ +ljO +ljO +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(139,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gMb +gMb +bTA +bTA +bTA +gMb +gMb +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +nIZ +ljO +ljO +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(140,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +hCk +hCk +hCk +hCk +hCk +hCk +hCk +asq +mmV +mmV +asq +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gMb +gMb +bTA +bTA +bTA +bTA +bTA +gMb +gMb +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +nIZ +nIZ +nIZ +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(141,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +asq +asq +hCk +hCk +hCk +hCk +asq +mmV +asq +asq +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +aTa +xnU +xnU +vMo +vMo +vMo +xnU +xnU +aTa +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +wHk +wHk +wHk +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(142,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +aTa +xnU +xnU +vMo +vMo +vMo +xnU +xnU +aTa +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +bTA +wHk +wHk +wHk +wHk +wHk +bTA +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(143,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +asq +asq +asq +gGc +gGc +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +aTa +xnU +xnU +vMo +vMo +vMo +xnU +xnU +aTa +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +bTA +bTA +bTA +bTA +bTA +qzv +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(144,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +gGc +asq +asq +asq +asq +gGc +gGc +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +aTa +aTa +xnU +xnU +xnU +xnU +xnU +aTa +aTa +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(145,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +aTa +aTa +xnU +xnU +xnU +aTa +aTa +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(146,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +mmV +mmV +mmV +mmV +mmV +nSY +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +aTa +aTa +aTa +aTa +aTa +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(147,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(148,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(149,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +asq +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(150,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +gGc +asq +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(151,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +gGc +gGc +gGc +gGc +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(152,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +asq +asq +asq +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(153,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(154,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +alQ +alQ +alQ +alQ +alQ +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(155,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(156,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nZj +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(157,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(158,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +dvZ +dvZ +dvZ +dvZ +bTA +fXS +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(159,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +knM +bTA +wHk +wHk +wHk +wHk +bTA +fXS +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bTA +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(160,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +wHk +wHk +wHk +wHk +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(161,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +wHk +wHk +nIZ +ljO +wHk +wHk +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(162,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +wHk +nIZ +ljO +nIZ +ljO +wHk +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(163,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +wHk +nIZ +nIZ +ljO +nIZ +wHk +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(164,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +ksj +ksj +ksj +ksj +ksj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +wHk +wHk +wHk +nIZ +nIZ +wHk +wHk +wHk +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +bTA +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bTA +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(165,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +mmV +bTA +wHk +wHk +wHk +wHk +wHk +wHk +bTA +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +gGc +gGc +gGc +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +mmV +aHs +bTA +dvZ +dvZ +dvZ +dvZ +bTA +qzv +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(166,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +syv +gdP +gJI +gJI +gJI +gJI +gdP +tMC +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(167,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(168,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nSY +nSY +nSY +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(169,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(170,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(171,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(172,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(173,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(174,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(175,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(176,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(177,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(178,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(179,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(180,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(181,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(182,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(183,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(184,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(185,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +alQ +alQ +alQ +alQ +alQ +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(186,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(187,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nZj +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(188,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(189,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(190,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(191,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(192,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(193,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(194,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(195,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +ksj +ksj +ksj +ksj +ksj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(196,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(197,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(198,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(199,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(200,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(201,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(202,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(203,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +alQ +alQ +alQ +alQ +alQ +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(204,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +luV +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(205,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +nZj +kBY +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +bSE +hQn +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(206,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(207,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(208,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(209,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(210,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gWS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBU +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(211,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(212,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +sqC +dvZ +dvZ +dvZ +dvZ +dvZ +vnj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(213,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +feF +ksj +ksj +ksj +ksj +ksj +qKb +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(214,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(215,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(216,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(217,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(218,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(219,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(220,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(221,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(222,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(223,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(224,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(225,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(226,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(227,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(228,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(229,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(230,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(231,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(232,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(233,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pus +gHI +mQi +mQi +mQi +cvx +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(234,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +dhl +qac +qac +qac +gLk +qtR +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(235,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +qcC +kll +oaL +kll +ofJ +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(236,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(237,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(238,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +pnX +pnX +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(239,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +pnX +pnX +pnX +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(240,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(241,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(242,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(243,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(244,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(245,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(246,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(247,1,1) = {" +wIw +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +gGc +wIw +"} +(248,1,1) = {" +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +wIw +"} + +(1,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(2,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(3,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(4,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(5,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(6,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(7,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(8,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(9,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(10,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(11,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(12,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(13,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(14,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(15,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(16,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +azP +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(17,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +azP +azP +azP +kVD +kVD +kVD +kVD +kVD +eXd +aPU +aBf +ihw +tEK +kVD +kVD +kVD +kVD +kVD +azP +azP +azP +azP +azP +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(18,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +nDv +aPU +aBf +ihw +tEK +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +azP +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(19,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +wGq +tAt +tAt +eXd +aPU +aBf +ihw +tEK +tAt +tAt +wGq +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(20,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +rKU +ncP +sNt +ajk +dMP +aPU +aBf +ihw +sNt +ajk +dMP +ncP +hIt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(21,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +mhH +ncP +aBf +oTL +oTL +oTL +aBf +aBf +aBf +oTL +oTL +oTL +aBf +ncP +igM +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(22,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +gKT +aPU +aBf +aQm +aBf +aBf +aBf +aBf +aBf +aQm +aBf +ihw +vqe +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(23,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +eXd +aPU +ihw +kVD +dvZ +dvZ +dvZ +dvZ +dvZ +kVD +aPU +ihw +tEK +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(24,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +dMP +aPU +aBf +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBf +ihw +sNt +ajk +ajk +ajk +ajk +ajk +ajk +ajk +ajk +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(25,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +oTL +oTL +oTL +oTL +oTL +oTL +oTL +oTL +oTL +aBf +aBf +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +aBf +aBf +oTL +oTL +oTL +oTL +oTL +oTL +oTL +oTL +oTL +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(26,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(27,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +aQm +aQm +aQm +aQm +aQm +aQm +aQm +aQm +aQm +aBf +aBf +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +aBf +aBf +aQm +aQm +aQm +aQm +aQm +aQm +aQm +aQm +aQm +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(28,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +flA +flA +flA +flA +flA +flA +flA +flA +gKT +aPU +aBf +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBf +ihw +vqe +flA +flA +flA +flA +flA +flA +flA +flA +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(29,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +eXd +aPU +ihw +kVD +dvZ +dvZ +dvZ +dvZ +dvZ +kVD +aPU +ihw +tEK +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(30,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dMP +aPU +aBf +oTL +aBf +aBf +aBf +aBf +aBf +oTL +aBf +ihw +dEU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(31,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +mhH +ncP +aBf +aQm +aQm +aQm +aBf +aBf +aBf +aQm +aQm +aQm +aBf +ncP +igM +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(32,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kfG +ncP +vqe +flA +gKT +eZt +aBf +qwm +vqe +flA +qTM +ncP +sUE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(33,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +ajk +ajk +euQ +ajk +tAt +eXd +aPU +aBf +ihw +tEK +tAt +alU +knI +alU +alU +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(34,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +kVD +tAt +tAt +tAt +oFq +rKs +oTL +hLO +xhh +tEK +gUa +aPU +aBf +ihw +rcO +oFq +nqq +hLO +oTL +xhh +uak +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(35,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +eXd +aPU +aBf +mdx +ihw +tEK +eXd +aPU +aBf +ihw +tEK +oFq +aPU +mdx +aBf +ihw +tEK +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(36,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +eXd +aPU +aBf +aBf +ihw +kzw +sIQ +aPU +aBf +ihw +sNt +pep +aPU +aBf +aBf +ihw +sNt +tAt +tAt +tAt +tAt +kVD +azP +azP +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(37,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +kVD +kVD +tAt +tAt +tAt +eXd +aPU +aBf +aBf +aBf +oTL +oTL +aBf +aBf +aBf +oTL +oTL +aBf +aBf +aBf +aBf +hVC +tEK +tAt +tAt +tAt +eXd +aPU +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(38,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +aBf +ihw +tEK +tAt +tAt +tAt +tAt +eXd +aPU +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +aBf +ihw +tEK +tAt +tAt +tAt +eXd +aPU +ihw +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(39,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +aPU +ihw +tEK +tAt +tAt +tAt +tAt +eXd +aPU +aBf +eJn +aBP +aBP +eJn +aBf +aBf +aBf +eJn +aBP +aBP +eJn +rzr +aBf +ihw +tEK +tAt +tAt +tAt +eXd +qzx +wYn +tEK +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(40,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +azP +aPU +ihw +eNP +alU +alU +alU +alU +iUs +aPU +aBf +aBP +qzi +qzi +aBP +aBf +aBf +aBf +aBP +qzi +qzi +aBP +rzr +aBf +ihw +qja +alU +alU +alU +nsA +qzx +wYn +rcO +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(41,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +kVD +oFq +aBf +aBf +jSq +jSq +jSq +jSq +jSq +jSq +cjB +cjB +jSq +qzi +tAy +qdK +rzr +rzr +rzr +qdK +tAy +qzi +jSq +cjB +cjB +cjB +jSq +jSq +jSq +jSq +jSq +nJL +wYn +tEK +tAt +kVD +azP +azP +azP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(42,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +azP +azP +azP +alU +kUt +aBf +aBf +jSq +piW +eAv +eAv +quO +czP +czP +dRj +jSq +jSq +jSq +jSq +cjB +cjB +cjB +jSq +jSq +jSq +jSq +grh +ikm +czP +czP +pjX +wHU +vSy +jSq +nJL +wYn +sNt +ajk +ajk +ajk +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(43,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +aBf +oTL +oTL +aBf +aBf +aBf +aBf +lNo +cgH +wfC +nkp +nkp +nkp +nkp +drJ +czP +czP +czP +eqz +dQn +goi +dBm +czP +czP +czP +czP +mEU +nkp +nkp +nkp +gZs +nkp +cIP +pgP +nJL +nJL +xhK +xhK +xhK +xhK +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(44,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +azP +azP +aQm +aQm +aQm +aBf +aBf +aBf +aBf +lNo +lJa +jKZ +nkp +kVB +gSs +erq +xxH +gSs +gSs +gSs +gSs +jKZ +nkp +kVB +gSs +gSs +rix +gSs +dFt +erq +gSs +sDr +nkp +kVB +dJN +pgP +nJL +nJL +nJL +nJL +bfu +bfu +bfu +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(45,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +flA +flA +ykW +jSq +eJn +eJn +eJn +eJn +eJn +cgH +aMd +cIP +eJn +eJn +eJn +eJn +eJn +eJn +eJn +cgH +nkp +cIP +eJn +eJn +eJn +eJn +eJn +eJn +eJn +cgH +aMd +cIP +eJn +eJn +eJn +eJn +eJn +jSq +asX +flA +flA +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(46,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +xmC +jod +ygW +mhk +eJn +cgH +aMd +cIP +eJn +uzC +fHP +dkn +oje +nsF +eJn +cgH +aMd +cIP +eJn +okh +imZ +omf +nPI +yab +eJn +cgH +aMd +cIP +eJn +nlm +xgX +ekt +kZo +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(47,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +miz +xmC +ygW +mhk +lNo +cgH +nkp +cIP +lNo +eqL +fHP +omf +tMy +ftr +eJn +cgH +aMd +cIP +eJn +hmC +gOt +omf +xnM +mhk +lNo +cgH +nkp +cIP +lNo +eqL +fHP +sJt +qwC +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(48,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +omf +omf +ygW +kgx +lNo +cgH +nkp +cIP +lNo +eqL +fHP +omf +iYJ +jEW +eJn +cgH +nkp +cIP +eJn +ryM +iLw +omf +iLm +mhk +lNo +cgH +nkp +cIP +lNo +eqL +fHP +bTx +pUV +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(49,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +omf +omf +ygW +mhk +lNo +cEl +nkp +cIP +lNo +eqL +fHP +rdR +rdR +rdR +eJn +cgH +nkp +cIP +eJn +rdR +rdR +rdR +ygW +mhk +lNo +cgH +nkp +cIP +lNo +eqL +cBy +rdR +rdR +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(50,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +fKO +fKO +nFl +mhk +eJn +slw +nkp +cIP +eJn +eqL +hkH +fKO +fKO +fKO +lNo +cgH +nkp +cIP +lNo +fKO +fKO +fKO +qBz +uXS +eJn +cgH +nkp +boA +eJn +eqL +hkH +fKO +fKO +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(51,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +bnW +bnW +mHt +hli +eJn +cgH +nkp +cIP +eJn +eqL +nPo +bnW +bnW +bKI +lNo +cgH +nkp +cIP +lNo +bnW +bnW +bnW +mHt +mhk +eJn +cgH +nkp +mBE +eJn +oaz +vZG +vZG +vZG +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(52,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +omf +omf +ygW +mhk +lNo +cgH +nkp +cIP +lNo +eqL +fHP +vCF +fJa +fJa +eJn +xxz +nkp +tWv +eJn +fJa +fJa +fJa +ygW +mhk +lNo +cgH +nkp +cIP +lNo +qNi +oEM +wmc +wZM +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(53,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +omf +omf +ygW +mhk +lNo +cgH +nkp +cIP +kkB +eqL +fHP +tVl +omf +omf +eJn +cgH +nkp +cIP +eJn +sJt +omf +omf +ygW +mhk +lNo +xxz +nkp +cIP +lNo +qKz +aMd +aMd +owH +jSq +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(54,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +jSq +wGz +omf +ygW +mhk +lNo +cgH +aMd +cIP +lNo +eqL +fHP +omf +bTx +omf +eJn +cgH +aMd +cIP +eJn +omf +hmO +pUV +rkb +mhk +lNo +cgH +qus +cIP +lNo +qKz +aMd +eDa +vPK +jSq +uak +kVD +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(55,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +mhH +jSq +pTN +joo +ygW +mhk +eJn +cgH +aMd +cIP +eJn +rkQ +fHP +omf +vhJ +uKY +eJn +cgH +aMd +cIP +eJn +dog +sJt +omf +wSF +sQw +eJn +cgH +aMd +cIP +eJn +fyK +niS +niS +cEH +jSq +uak +eCZ +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(56,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +ajk +ajk +pep +jSq +eJn +eJn +eJn +eJn +eJn +lJa +siu +mFQ +eJn +eJn +eJn +eJn +eJn +eJn +eJn +lJa +vCa +mFQ +eJn +eJn +eJn +eJn +eJn +eJn +eJn +bej +gSs +mFQ +eJn +eJn +rNU +tYZ +rNU +jSq +gbI +eCZ +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(57,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +xhK +xhK +xhK +lNo +grh +czP +czP +czP +dRj +omn +fMb +fMb +fMb +fMb +fMb +fMb +rfc +fMb +fMb +fMb +gnF +fMb +fMb +fMb +wMb +fMb +fMb +fMb +fMb +fMb +fMb +fMb +grh +czP +czP +czP +dRj +lNo +xhK +eCZ +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(58,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +nJL +nJL +nJL +lNo +cgH +aRo +nkp +nkp +cIP +fMb +fMb +fMb +fMb +fMb +fMb +fMb +fMb +fMb +lEa +fMb +fMb +fMb +fMb +fMb +oTB +fMb +fMb +fMb +fMb +gnF +fMb +fnv +cgH +aMd +aMd +aMd +cIP +lNo +nJL +eCZ +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(59,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +bfu +bfu +bfu +lNo +lJa +idQ +gSs +gSs +hSc +fMb +fMb +fMb +qpe +pXA +ldK +qpe +pXA +rVL +hkI +pcx +pcx +nAj +qpe +pXA +rVL +qpe +pXA +rVL +fMb +fMb +fMb +fMb +lJa +mAO +dFt +gSs +hxc +lNo +bfu +eCZ +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(60,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +flA +flA +ykW +vFi +rRT +rRT +rRT +rRT +rRT +fkF +ydU +fkF +lxA +utC +oYW +lxA +hTD +sLz +drS +hTD +hTD +sLz +lxA +sna +sLz +lxA +hTD +sLz +fkF +rEa +eZO +eZO +eWS +ggO +epK +eUF +epK +vZO +asX +kVD +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(61,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +rQy +kDK +eVa +pVT +rRT +fkF +fkF +fkF +lxA +hTD +uAh +fzk +hTD +oLe +ycu +jXz +jXz +oLe +fzk +hTD +oLe +fzk +jXz +qKX +bsy +xIS +cfG +cfG +eIg +ggO +tyW +bek +kTN +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(62,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +nuR +rvi +eVa +pVT +kmW +fkF +fkF +fkF +lxA +hTD +hTD +jXz +jXz +jXz +jXz +jXz +hTD +hTD +hTD +hTD +hTD +hTD +jXz +lpM +fkF +hAl +fFi +fFi +vqv +ggO +wks +mdC +aLl +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(63,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +cXT +gDD +eVa +pVT +kmW +rfd +fkF +fkF +lxA +hTD +hTD +hTD +hTD +hTD +hTD +hTD +hTD +hTD +hTD +hTD +jXz +jXz +hTD +kQt +bRR +hBH +oVs +fFi +vqv +ggO +vIG +rUF +tTq +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(64,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +lRV +euo +eVa +pVT +kmW +fkF +fkF +fkF +lxA +wfK +dKI +aLf +aLf +aLf +aLf +aLf +aLf +aLf +aLf +aLf +aLf +dKI +iYS +jfg +liM +hBH +oVs +fFi +vqv +ggO +iZi +rUF +ykz +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(65,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +fST +fST +xcP +pVT +rRT +oSQ +fkF +fkF +lxA +lsV +uKg +gxu +gxu +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +uKg +pXa +eIC +liM +hBH +oVs +fFi +vqv +ggO +khX +rUF +aLl +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(66,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +gJK +gJK +rUQ +pVT +rRT +fkF +fkF +fkF +lxA +jXz +jXz +jXz +jXz +jXz +hTD +hTD +hTD +hTD +hTD +hTD +jXz +jXz +hTD +eIC +liM +hBH +oVs +fFi +vqv +ggO +gSS +rzu +eSe +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(67,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +fTt +fTt +eVa +pVT +kmW +fkF +fkF +rfd +lxA +jXz +jXz +jXz +jXz +hTD +hTD +hTD +hTD +hTD +jXz +tir +jXz +hTD +hTD +dpk +liM +hAl +oVs +oVs +vqv +ggO +ggO +gUO +aLl +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(68,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +fTt +fTt +eVa +pVT +kmW +fkF +fkF +fkF +lxA +jXz +hTD +hTD +hTD +hTD +hTD +hTD +hTD +jXz +jXz +jXz +hTD +hTD +hTD +sLz +fkF +hAl +oVs +oVs +vqv +fkF +ggO +cyK +uFm +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(69,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +hFu +fTt +eVa +pVT +kmW +fkF +fkF +fkF +eLN +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +uyD +xKS +fkF +hAl +oVs +oVs +vqv +cXw +ggO +eQW +aLl +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(70,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +kVD +tAt +oFq +vFi +pjC +etT +eVa +pVT +rRT +fkF +fkF +fkF +fkF +fkF +fkF +sjr +fRK +sPu +eCX +cNM +vBS +sec +acw +fRK +sjr +fkF +fkF +fkF +rfd +hAl +oVs +fFi +vqv +fkF +ggO +knD +tae +vZO +uak +tAt +kVD +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(71,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +ajk +ajk +pep +vFi +rRT +rRT +rRT +rRT +rRT +luW +faE +faE +faE +ebI +oCf +duK +nId +nId +nId +duK +duK +nId +nId +nId +duK +fkF +fkF +fkF +fkF +hAl +fFi +fFi +vqv +fkF +ggO +epK +eUF +vZO +gbI +alU +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(72,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +xhK +xhK +xhK +rrK +tMU +rrK +rrK +kmW +vbO +bCR +pkG +uTs +szS +jJb +vFi +duK +asX +sqq +sqq +sqq +sqq +sqq +sqq +xLI +duK +vFi +dmA +fkF +fkF +hAl +fFi +fFi +vqv +hzw +xdg +xdg +ebI +kmW +nJL +nJL +eCZ +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(73,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +bfu +bfu +bfu +vFi +hBx +rrK +rrK +kmW +eCe +pkG +uTs +uTs +oqr +vFi +vFi +asX +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mmN +vFi +vFi +uah +fkF +hAl +fFi +fFi +vqv +lwq +wBh +wBh +jJb +kmW +nJL +nJL +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(74,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +kVD +eCZ +flA +flA +ykW +vFi +vFi +vFi +vFi +vFi +qvQ +wBh +wBh +wBh +ych +vFi +asX +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mmN +vFi +wpu +fkF +gwy +udR +udR +jJM +vFi +vFi +vFi +vFi +vFi +asX +sqq +eCZ +eCZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(75,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +kVD +eCZ +eCZ +kVD +kVD +tAt +kVD +eCZ +eCZ +kVD +tAt +sqq +sqq +sqq +xLI +vFi +vFi +qNP +qNP +qNP +vFi +vFi +uak +tAt +tAt +tAt +kVD +kVD +kVD +kVD +tAt +tAt +tAt +oFq +vFi +vFi +vFi +aYX +aYX +aYX +aYX +gIx +asX +flA +flA +sqq +kVD +eCZ +eCZ +eCZ +kVD +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(76,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +crn +kVD +tAt +tAt +kVD +eCZ +eCZ +eCZ +eCZ +kVD +kVD +kVD +eCZ +eCZ +kVD +kVD +tAt +tAt +tAt +sqq +sqq +sqq +sqq +sqq +sqq +sqq +kVD +kVD +kVD +kVD +eCZ +eCZ +eCZ +eCZ +kVD +kVD +kVD +kVD +sqq +sqq +mmN +qzx +nJL +nJL +wYn +faH +kVD +kVD +kVD +eCZ +wJw +eCZ +eCZ +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(77,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +crn +crn +crn +kVD +tAt +tAt +tAt +tAt +kVD +kVD +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +kVD +kVD +kVD +kVD +kVD +kVD +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +ffK +iFC +lvZ +lvZ +dQm +uzZ +drZ +drZ +drZ +eCZ +eCZ +eCZ +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +stz +aBA +ncP +ncP +ncP +ncP +ncP +nbz +poV +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(78,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +crn +crn +crn +crn +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +ffK +iFC +lvZ +lvZ +dQm +uzZ +drZ +drZ +drZ +drZ +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +kVD +kVD +kVD +kVD +kVD +kVD +kVD +drZ +drZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +oJj +azw +azw +azw +azw +azw +kQl +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(79,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +crn +crn +crn +crn +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +kVD +eCZ +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +eCZ +eCZ +eCZ +eCZ +eCZ +eCZ +kVD +kVD +kVD +alU +alU +kUt +iFC +lvZ +lvZ +dQm +gbI +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +alU +alU +alU +alU +alU +alU +drZ +drZ +drZ +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +fAD +aAh +aAh +aAh +aAh +aAh +fAD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(80,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +eXd +sAU +fqh +crn +kVD +kVD +tAt +ajk +ajk +ajk +ajk +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +crn +crn +drZ +drZ +kVD +tAt +tAt +oFq +rFO +rFO +rFO +jXY +jXY +jXY +jXY +rFO +uak +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +oFq +dSw +dSw +dSw +dSw +dSw +dSw +dSw +dSw +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +iQI +aAh +aAh +aAh +aAh +aAh +iQI +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(81,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +gUa +fqh +fqh +tEK +tAt +ajk +sIQ +mAQ +dGP +dGP +dGP +sNt +ajk +ajk +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ajk +ajk +ajk +ajk +ajk +ajk +ajk +tAt +kVD +wJw +wJw +crn +crn +kVD +kVD +tAt +tAt +tAt +pTX +rFO +rqr +dIg +sXo +gHD +gHD +fsr +rFO +gbI +alU +alU +alU +alU +alU +alU +alU +alU +alU +pTX +dSw +iSi +jxH +uDj +uDj +tYW +rBA +dSw +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +aAh +aAh +aAh +aAh +aAh +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(82,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +dMP +fqh +fqh +sNt +eXd +dGP +dGP +dGP +xIM +mGo +dGP +dGP +dGP +dGP +nJK +alU +kPv +kVD +kVD +ptR +alU +alU +alU +dhH +eXd +dGP +dGP +juB +juB +juB +dGP +dGP +tEK +tAt +kVD +kVD +crn +crn +kVD +kVD +tAt +tAt +pTX +rFO +rFO +dIg +dxV +mfu +psO +cUO +rfV +rFO +rFO +rFO +rFO +rFO +fxN +fxN +fxN +rFO +rFO +rFO +dSw +dSw +wwT +nJP +esD +fHh +fQi +lAY +dSw +cdW +cdW +drZ +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +aQh +aQh +aQh +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +aAh +kVD +kVD +kVD +kVD +aAh +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(83,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +crn +kVD +eXd +fqh +fqh +fqh +fqh +mVU +dGP +ylW +vLu +nLX +lqM +qZX +pyJ +fNv +dGP +wgE +wgE +kOF +kOF +kOF +kOF +wgE +wgE +wgE +gbI +sIQ +dGP +izu +xVh +xVh +xVh +ssg +dGP +sNt +tAt +tAt +kVD +crn +crn +kVD +kVD +alU +pTX +rFO +rFO +iZI +dIg +dIg +mfu +cUO +psO +rfV +wmN +bEq +xYQ +bEe +wWP +dPx +wWP +wWP +wWP +wWP +bjl +xDN +ooR +rEr +tGS +mhf +uVi +ooR +ooR +ooR +yhX +cdW +cdW +cdW +ajk +ajk +alU +lUe +lUe +lUe +lUe +suv +suv +aQh +aQh +aQh +aQh +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +aAh +aAh +kVD +tAt +tAt +kVD +aAh +aAh +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(84,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +fqh +fqh +lzl +sAU +fqh +fqh +fqh +dGP +dGP +bqz +dgk +fFT +bPW +nWJ +tNb +iuf +syW +kdv +xzb +tKr +cDz +poq +oWh +bpY +wtp +dGP +dGP +dGP +dGP +nTp +cdn +iKe +xSG +vmr +dGP +dGP +sNt +kVD +kVD +crn +crn +kVD +mhH +rFO +rFO +rFO +fgM +uXX +dIg +dIg +boW +rhT +rhT +hDS +gMd +sLD +rJy +wLc +btl +btl +pDp +vTU +pZq +pZq +lzu +vvI +eah +ygm +cKt +mhf +iGb +aLv +xvh +kqG +kqG +gZf +uYy +iTV +mgL +mgL +mgL +mgL +mgL +mgL +mgL +aRt +vNA +vxJ +kVD +aQh +aQh +aQh +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +aAh +aAh +kVD +tAt +tAt +kVD +aAh +aAh +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(85,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +fqh +fqh +lzl +sAU +fqh +fqh +qiM +sbf +rBR +uOh +mMw +xQN +neI +rvw +rvw +nSZ +fht +vxG +ulS +hIp +jdd +hIp +hIp +dVL +kke +neI +nTz +tdM +psy +nTp +iDD +oWC +oEs +uJD +cZA +dGP +dGP +nJK +alU +qNh +qNh +alU +iUs +rFO +dIg +dIg +dxV +nCB +jiO +dIg +ukE +ooz +ooz +ooz +vil +ohH +ooZ +tdn +ooZ +ooZ +ooZ +vPd +ooZ +eUS +rmm +vvI +eah +ygm +dvQ +esD +iGb +aLv +kIQ +rks +eUv +qLA +jRV +iTV +lvZ +lvZ +lvZ +lvZ +lvZ +lvZ +lvZ +aMv +fUx +uak +kVD +aQh +aQh +aQh +aQh +aQh +aQh +kVD +kVD +kVD +kVD +kVD +nJr +nJr +nJr +nJr +nJr +kVD +kVD +kVD +kVD +nJr +nJr +nJr +nJr +nJr +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(86,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +kVD +eXd +fqh +fqh +qiM +dda +uUE +sbf +dGP +dGP +dGP +msj +pgh +pgh +xVh +xVh +uGH +cVv +rtO +fNx +emX +lgF +cVv +lAc +pgh +xVh +xVh +xVh +fQT +sNV +dGP +sPE +vVB +vhK +hWg +qiM +ogj +ogj +fqh +lvZ +mgL +mgL +mJe +xOp +wkk +wtF +cFY +pqg +ukE +hzY +aNe +aNe +isi +ooz +vbw +vig +vig +vig +eNp +vig +vig +vig +bqw +xns +ooR +ooR +qrJ +fXY +nWS +lVr +ooR +kIQ +gOj +vFz +vVE +wYZ +iTV +ykh +ykh +ykh +ykh +ykh +ykh +ykh +aMv +fUx +uak +kVD +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(87,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gKT +dGP +nTp +kQW +kQW +vhK +xVh +cZy +xVh +fQT +uyB +uyB +kQW +uRm +cEw +cVv +kKj +uyB +kQW +ejp +cVv +kKj +uyB +kQW +uyB +uyB +wmU +sNV +rza +dGP +ixb +kQW +ubw +qiM +fqh +fqh +fqh +lvZ +lvZ +lvZ +rIJ +oUq +pBI +eJL +ejs +qYs +fSY +xhk +uuQ +uuQ +jPN +ooz +vVC +caz +cUO +cUO +cUO +psO +psO +psO +cUO +nqT +tSH +ooR +ooR +aLv +bGO +aLv +ooR +kIQ +qLA +rON +yhX +yhX +cdW +asX +flA +flA +flA +flA +flA +mmN +sMl +fUx +uak +kVD +aQh +aQh +kVD +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aMv +aMv +cAt +cAt +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aMv +aMv +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(88,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gUa +dGP +sPE +uiN +fQj +fQj +dWA +dWA +fQj +fQj +fQj +fQj +fQj +fQj +uid +hIp +qEJ +jBz +jBz +nQG +hIp +bbz +fQj +fQj +sLx +fQj +fQj +xmF +hcY +dGP +sPE +oWC +wNo +qiM +mIe +mIe +fqh +lvZ +ykh +ykh +mJe +fxD +xCz +vGK +dPC +cmO +ooz +vrh +rhT +opk +sNe +ooz +xuT +jIN +jIN +tXv +tXv +tXv +tXv +gYv +cUO +rfV +tSH +tSH +mHu +vxT +tSH +hNk +sqN +xzR +lQX +kgD +gDX +bhD +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +oFq +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +ugz +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(89,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +omh +omh +omh +omh +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +daK +sqq +xbJ +lQh +sqq +ykW +rFO +sYz +sYz +dJO +jHi +sYz +sYz +eOu +ooz +ukE +kkG +sYz +sYz +saj +saj +saj +saj +sYz +sYz +dHI +psO +kIe +jbn +jaU +bmn +bmn +bmn +bmn +kiA +kiA +bmn +meH +tSH +lZg +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +gUa +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +bcK +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(90,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +uOW +nYx +xHC +jrt +ePX +txQ +bvQ +bvQ +saa +xYL +jrt +snY +wSX +wUz +nYx +eSD +xdl +xdl +oSk +nYx +uzp +lRf +nYx +snY +yeP +tif +bvQ +bvQ +bvQ +ePX +nDP +xHC +uOW +tEK +kVD +crn +drZ +kVD +oFq +rFO +cql +cql +koS +dnR +fyy +sYz +fbi +bIu +bIu +ofR +sYz +qnE +akX +akX +lZC +lZC +lZC +sYz +aZC +nay +kAA +aTL +wuT +lcM +rwC +dNE +rwC +rwC +dNE +dNE +fvf +mHu +lZg +cdW +tEK +tAt +tAt +tAt +tAt +tAt +gUa +sMl +fUx +rcO +kVD +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kUt +sMl +fUx +lvl +cAt +cAt +cAt +cAt +cAt +cAt +cAt +cZE +sMl +fUx +lvl +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(91,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +uOW +nYx +bvQ +bvQ +bvQ +bvQ +bvQ +tfV +bvQ +bvQ +bvQ +pzd +bVD +qUk +oJH +xbr +xKK +vxz +qUk +wFN +nQB +dIb +oIh +dIV +iFw +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +uOW +tEK +kVD +crn +drZ +kVD +oFq +rFO +aZk +vAU +bVF +tdk +koS +nSh +mfu +cUO +cUO +rfV +cBt +lZC +hey +uvk +uGt +tNj +lZC +ndy +aZC +psO +msS +jbn +hze +kYe +vBJ +dNE +rwC +rwC +lcM +imp +fvf +sdY +brE +eVw +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +gbI +alU +aQh +aQh +alU +alU +alU +alU +alU +alU +alU +pTX +rNF +upG +upG +rNF +lvl +sBi +sBi +sBi +sBi +sBi +fUI +rNF +aAJ +aAJ +rNF +lvl +sBi +sBi +sBi +sBi +sBi +sBi +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(92,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gUa +uOW +jDn +jDn +jDn +jDn +jDn +khd +jDn +jDn +jDn +mwe +gne +ngp +vxz +fXm +fXm +tRT +egE +vxz +fXm +fXm +dIb +mwe +jDn +jDn +jDn +jDn +jDn +jDn +jDn +jDn +jDn +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +rea +dnR +kzg +kzg +jCI +mfu +xho +cUO +rfV +cBt +lZC +gmt +roE +mgN +tNj +lZC +ndy +aZC +psO +esH +jbn +nRe +rof +pyc +pyc +pyc +pyc +uun +mpQ +laA +qTs +jof +vCj +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +aMv +aRt +aRt +aMv +aMv +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aRt +upG +rSN +yjz +uhe +nDg +nDg +nDg +nDg +nDg +nDg +nDg +uhe +yjz +gMZ +upG +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aMv +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(93,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +dXQ +uco +sED +qzL +bKJ +wOS +nGq +hMO +swC +xlO +xqJ +gne +vxz +vxz +fXm +fXm +mYB +fDa +fXm +fXm +fXm +dIb +qei +uco +geY +geY +geY +geY +geY +kBw +sED +aDB +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +jGy +dEv +kzg +kzg +nSh +mfu +cUO +psO +rfV +cBt +lZC +saG +roE +kjA +tNj +lZC +ndy +aZC +cUO +rfV +doo +tSH +tSH +tSH +tSH +mHu +tSH +lhz +dNE +htf +tSH +tSH +ssM +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +aMv +aGQ +aGQ +aMv +aMv +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +upG +sgO +bHp +vOw +bHp +pPD +vUv +vUv +vUv +vUv +vUv +vUv +jJl +pdZ +upG +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aMv +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(94,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +dXQ +vDH +qzL +thW +xxr +wDY +qzX +xuM +hMO +lFm +xLv +gne +vxz +mxt +fXm +uOW +xRK +fmN +uOW +qIb +fXm +dIb +qei +vDH +aRD +aRD +aRD +aRD +aRD +aRD +geY +swG +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +kzg +dnR +kzg +kzg +nSh +mfu +cUO +cUO +cLU +cBt +lZC +uRl +roE +eZw +bOC +akX +ndy +aZC +psO +uwT +bMQ +bMQ +gKV +ooX +gKV +bMQ +bMQ +lhz +rwC +fvf +tSH +mHu +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +asX +sqq +aQh +aQh +sqq +sqq +sqq +sqq +sqq +sqq +sqq +xLI +rNF +sgO +bxj +qaX +bKC +sJQ +vUv +vUv +vUv +vUv +vUv +vUv +vUv +pdZ +rNF +hzT +pMd +pMd +pMd +pMd +pMd +pMd +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(95,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +dXQ +vDH +xEa +qRK +gNP +nmr +uFP +dVo +pGC +wOD +mwe +gne +lki +fDa +fXm +uOW +uOW +uOW +uOW +tya +tya +dIb +mwe +vDH +aRD +aRD +aRD +aRD +aRD +aRD +aRD +tRx +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +kzg +dnR +kzg +kzg +nSh +mfu +cUO +cUO +cLU +cBt +akX +roE +roE +roE +cgn +akX +ndy +mfu +psO +uwT +bMQ +bMQ +eRH +hhm +syj +bMQ +bMQ +lhz +rwC +fvf +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +gUa +sMl +fUx +rcO +kVD +aQh +aQh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +mmN +sNm +qBq +bUG +bUG +bUG +jKT +adc +adc +vUv +vUv +vUv +vUv +pdZ +rNF +vBf +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(96,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gUa +dXQ +vDH +oiu +bfD +pJb +wCa +dbF +kmr +jfo +xlO +xqJ +nvr +fXm +tya +fXm +fXm +vxz +fXm +vxz +tya +fXm +dIb +qei +vDH +aRD +aRD +aRD +aRD +aRD +aRD +sOA +swG +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +kzg +dnR +kzg +kzg +nSh +aZC +psO +cUO +cLU +cBt +akX +roE +roE +roE +pyy +rqQ +ndy +mfu +psO +uwT +bMQ +rwW +nPx +kHU +wsY +xyd +bMQ +lhz +dNE +fvf +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +kVD +aAE +aAE +aAE +aAE +aAE +aAE +aAE +aAE +emS +ryK +jVy +jVy +iFS +rnM +kNG +aAp +uoF +vUv +vUv +vUv +pdZ +rNF +vBf +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(97,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +qNh +ajk +ajk +ajk +sIQ +uOW +tBn +vym +oiu +bSw +wql +dDu +jfo +pjV +qBs +gwR +rPJ +fXm +fXm +vxz +fXm +fXm +fXm +fXm +vxz +vxz +dIb +qei +tBn +sOA +sOA +sOA +sOA +sOA +qBs +fEv +xlF +dXQ +uak +kVD +crn +drZ +kVD +oFq +rFO +kzg +kzg +dWE +kzg +kzg +nSh +aZC +psO +cUO +cLU +sYz +umc +hIx +roE +roE +dcT +lZC +sYz +mfu +psO +uwT +bMQ +kHU +sQm +naK +smY +fwS +bMQ +lhz +rwC +koM +yhX +yhX +cdW +gbI +alU +alU +alU +alU +alU +pTX +sMl +fUx +uak +kVD +aQh +aQh +kVD +aAE +aAE +aAE +aAE +aAE +aAE +aAE +aAE +emS +fBh +lHA +lHA +hlm +rnM +psc +aAp +acK +vUv +vUv +vUv +jMy +rNF +vBf +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(98,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +cXC +fqh +oIb +fqh +fqh +fqh +dXQ +fWU +srE +srE +srE +srE +srE +srE +srE +srE +mwe +pOs +fXm +vxz +vxz +fXm +mYB +tya +qbW +vxz +vxz +dIb +mwe +rta +srE +srE +srE +srE +srE +srE +srE +srE +uOW +crn +crn +crn +drZ +drZ +drZ +rFO +kzg +kzg +dnR +kzg +kzg +nSh +aZC +psO +psO +rfV +sYz +lZC +sFZ +akX +akX +lZC +kyu +sYz +kbd +psO +nKS +bMQ +byw +sGu +qxb +jSf +kHU +gKV +lhz +dNE +iHd +bmn +cja +iTV +mgL +mgL +mgL +mgL +mgL +mgL +mgL +aMv +aMv +bMC +aAE +aQh +aQh +aAE +aAE +aAE +aAE +aAE +aAE +aAE +aAE +aAE +emS +tEA +jSU +jSU +iSP +rnM +rMI +aAp +vUv +vUv +vUv +vUv +pdZ +rNF +vBf +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(99,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +cXC +qEE +vCO +fqh +fqh +fqh +fSA +bvQ +bvQ +hdE +bWK +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +rPJ +vxz +fXm +fXm +fXm +mYB +tya +vxz +fXm +vxz +dIb +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +nYx +nYx +uOW +crn +crn +crn +drZ +drZ +drZ +rFO +kzg +kzg +hfk +rea +kzg +nSh +aZC +psO +oVo +xce +sYz +sYz +fCF +hyZ +hyZ +fCF +sYz +sYz +naO +cUO +uwT +bMQ +uCn +kHU +kHU +kHU +jNb +osv +lhz +rwC +rwC +rwC +lgU +iTV +lvZ +lvZ +lvZ +lvZ +lvZ +lvZ +lvZ +aMv +aMv +sSD +aAE +aQh +aQh +aAE +aAE +aAE +aAE +aAE +kVD +kVD +kVD +kUt +tUS +yjz +yjz +ltF +yjz +itW +adc +adc +vUv +vUv +sJQ +vUv +pdZ +rNF +vBf +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(100,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +cXC +fqh +nhF +fqh +gUv +fqh +dXQ +jDn +jDn +jDn +jDn +jDn +jDn +jDn +jDn +jDn +mwe +rPJ +fXm +fXm +vxz +fXm +mYB +tya +fXm +fXm +fXm +dIb +llk +jDn +jDn +uzO +xEw +jDn +jDn +jDn +jDn +jDn +uOW +crn +kVD +crn +drZ +drZ +drZ +rFO +kzg +kzg +fyy +kzg +kzg +nSh +aZC +whI +ayM +cLU +sYz +sYz +bCm +pZn +hyz +ryd +sYz +sYz +mhs +cze +pJA +bMQ +srr +kHU +wsY +kHU +syj +kXg +tbB +pyc +rof +pyc +jZc +iTV +ykh +ykh +ykh +ykh +ykh +ykh +ykh +aMv +aMv +sSD +aAE +aQh +aQh +aAE +aAE +aAE +aAE +aAE +alU +alU +pTX +rNF +sgO +bHp +bHp +bHp +vUv +vUv +vUv +vUv +vUv +jJl +vUv +vUv +pdZ +rNF +lvl +sBi +sBi +sBi +sBi +sBi +sBi +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(101,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +xbJ +flA +flA +flA +gKT +uOW +vVp +sED +uco +geY +geY +geY +geY +geY +kBw +xqJ +omw +fXm +vxz +fXm +fXm +kMQ +jlq +fXm +vxz +vxz +nnr +qei +uco +geY +geY +geY +geY +geY +kBw +sED +aDB +dXQ +crn +kVD +crn +drZ +kVD +oFq +rFO +kzg +kzg +aZk +bVF +bVF +oNu +aZC +psO +eaN +cLU +sYz +lZC +bXn +snD +ykf +dlb +bxT +sYz +sbu +dug +nKS +bMQ +ovd +xLU +rQD +pdI +kHU +gKV +teb +kqG +pwg +yhX +yhX +cdW +asX +flA +flA +flA +flA +flA +ykW +sMl +aMv +aRt +aRt +aMv +aMv +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aRt +upG +sgO +sDa +cjx +vOw +vUv +mPs +vUv +vUv +vUv +vUv +vUv +vUv +pdZ +upG +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aMv +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(102,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gUa +dXQ +vDH +geY +aRD +aRD +aRD +aRD +aRD +aRD +swG +xqJ +jsK +fXm +tya +fXm +fXm +fXm +fXm +vxz +xjy +vxz +iMC +qei +vDH +aRD +aRD +aRD +aRD +aRD +aRD +geY +swG +dXQ +uak +kVD +crn +drZ +kVD +oFq +rFO +kzg +nnU +wPM +dnR +tqw +nSh +mfu +cUO +psO +rfV +sYz +lZC +kTr +tNj +tNj +roE +pKy +sYz +jRq +cUO +gfB +bMQ +ecz +lko +tTp +wkD +dpF +bMQ +kIQ +obX +jRV +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +aMv +aGQ +aGQ +aMv +aMv +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +upG +kzv +bUG +gAA +ngz +ngz +ngz +ngz +ngz +ngz +ngz +iOP +bUG +wMB +upG +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aMv +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(103,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +dXQ +vDH +aRD +aRD +aRD +aRD +aRD +aRD +aRD +siq +mwe +gYs +tya +tya +fXm +uOW +uOW +vGq +vGq +dQd +fDa +dIb +mwe +vDH +aRD +aRD +aRD +aRD +aRD +aRD +aRD +tRx +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +xLH +kzg +dWE +dnR +nSh +mfu +psO +psO +rfV +xpL +lZC +kyZ +tNj +tNj +tDz +juz +rgN +ezG +psO +qHJ +bMQ +ewT +wBW +kHU +wsY +ydH +bMQ +kIQ +obX +jRV +tSH +mHu +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +bSW +asX +sqq +aQh +aQh +sqq +sqq +sqq +sqq +sqq +sqq +sqq +xLI +rNF +upG +upG +rNF +hzT +pMd +pMd +pMd +pMd +pMd +dsS +rNF +upG +upG +rNF +hzT +pMd +pMd +pMd +pMd +pMd +pMd +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(104,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +dXQ +vDH +sOA +aRD +aRD +aRD +aRD +aRD +aRD +swG +xqJ +aXm +fXm +fDa +fXm +uOW +xRK +uAe +vGq +dQd +vxz +bHR +qei +vDH +aRD +aRD +aRD +aRD +aRD +aRD +sOA +swG +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +rea +dnR +nnU +ugN +koS +nSh +mfu +psO +psO +rfV +xpL +lZC +roE +wib +liR +tNj +lZC +rgN +aZC +jch +gNk +bMQ +bMQ +teE +jNb +teE +bMQ +bMQ +kIQ +qLA +jRV +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +gUa +sMl +fUx +rcO +kVD +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mmN +sMl +fUx +hzT +cAt +cAt +cAt +cAt +cAt +cAt +cAt +dsS +sMl +fUx +hzT +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(105,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +dXQ +uBT +fEv +tBn +sOA +sOA +sOA +sOA +sOA +qBs +xqJ +uRG +fXm +fXm +fXm +fXm +xRK +fDa +vxz +fXm +vxz +yiq +qei +tBn +sOA +sOA +sOA +sOA +sOA +qBs +fEv +xlF +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +kzg +dnR +sQv +dnR +kzg +nSh +aZC +cUO +psO +rfV +xpL +akX +rUU +lpl +roE +tNj +akX +bJo +mfu +psO +uwT +bMQ +bMQ +gKV +ooX +gKV +bMQ +bMQ +kIQ +qLA +jRV +tSH +tSH +iwY +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +gUa +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +ugz +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(106,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gUa +uOW +srE +srE +srE +srE +srE +srE +srE +srE +srE +mwe +mhU +fXm +fXm +fXm +fXm +xRK +fDa +xKK +fXm +vxz +yiq +mwe +srE +srE +srE +srE +srE +srE +srE +srE +srE +dXQ +tEK +kVD +crn +drZ +kVD +oFq +rFO +nnU +koS +tqw +dnR +kzg +nSh +mfu +cUO +psO +rfV +xpL +akX +vgM +mMq +roE +roE +lZC +rgN +mfu +psO +iho +teb +nHC +bLR +kqG +cWf +klN +kqG +eQT +obX +yjL +tSH +tSH +iwY +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +ugz +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(107,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +uOW +nYx +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +vpB +uFG +eBZ +rqB +uFG +vxz +vxz +eBZ +rqB +uFG +yiq +uFy +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +bvQ +uOW +tEK +kVD +crn +drZ +kVD +oFq +rFO +dWE +kzg +dnR +dnR +rea +nSh +aZC +cUO +psO +lBr +wEJ +xWz +roE +loJ +roE +roE +lZC +rgN +aZC +psO +uwT +kIQ +fjP +hRE +qLA +qLA +qLA +qLA +sid +hrw +jRV +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +aQh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +oFq +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +ugz +sMl +fUx +vBf +cAt +cAt +cAt +cAt +cAt +cAt +cAt +aQh +aQh +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(108,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +uOW +nYx +xHC +jrt +ffU +bvQ +bvQ +bvQ +wqt +rRt +ehJ +snY +jMG +gnH +nYx +bFQ +bFQ +bFQ +bFQ +nYx +nYD +gnH +nYx +ehJ +wqt +wqt +bvQ +bvQ +bvQ +xpp +jrt +xHC +uOW +tEK +kVD +crn +drZ +kVD +oFq +rFO +dWE +kzg +tmY +hcB +kzg +cBj +aZC +psO +psO +rfV +wEJ +cty +tNj +tNj +tNj +roE +scu +rgN +mfu +psO +nKS +cCm +vVE +cok +fYR +vVE +ocV +vVE +sOp +qxr +jRV +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aMv +aMv +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aMv +aMv +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +wJw +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(109,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +eXd +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +uOW +omh +omh +omh +omh +uOW +uOW +uOW +uOW +fzv +erf +uzd +uOW +uOW +uOW +uOW +uOW +uOW +uOW +tEK +kVD +crn +drZ +kVD +oFq +rFO +jJN +kzg +yhs +wLh +kzg +sYz +vvx +wvQ +rhT +wNA +sYz +wTy +akX +akX +rqQ +jln +jOh +sYz +naO +psO +nKS +gLQ +gLQ +tSH +tSH +tSH +gLQ +gLQ +kIQ +qLA +jRV +tSH +tSH +cdW +tEK +tAt +tAt +tAt +tAt +tAt +oFq +sMl +fUx +uak +kVD +kVD +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aMv +aMv +aQh +aQh +aQh +kVD +kVD +kVD +aQh +aQh +aQh +aMv +aMv +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +wJw +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(110,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +gUa +vPb +dMX +hWZ +hWZ +aTo +xkY +xkY +xkY +xkY +xkY +gmE +gmE +xkY +hei +iLe +oNY +oNY +oNY +oNY +iLe +wDL +xQL +nnL +ikk +lRA +xjH +nwN +yey +vPb +htT +nwN +sMm +vPb +nJK +alU +qNh +lUe +alU +kUt +rFO +sYz +sYz +jHi +jHi +sYz +sYz +ooz +rOh +ooz +kEy +sYz +sYz +blh +ddh +ccO +ccO +sYz +sYz +aZC +psO +uwT +gLQ +gLQ +gLQ +sAj +gLQ +gLQ +gLQ +kIQ +qLA +aco +yhX +yhX +cdW +gbI +alU +alU +alU +alU +alU +nsA +sMl +fUx +rcO +tAt +kVD +aQh +aQh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +fnd +sMl +fUx +cWk +aQh +aQh +kVD +tAt +kVD +aQh +aQh +fnd +sMl +fUx +cWk +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +wJw +wJw +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(111,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +tAt +sIQ +qsn +eIG +hWZ +hWZ +uNn +wyF +wwM +wwM +wyF +wyF +wwM +wwM +wyF +iMH +eTL +pHl +lSo +lSo +bwG +eTL +fCx +aHr +ggj +aHr +bqx +xkY +nVJ +kSZ +vPb +kOj +xkY +wgC +ryw +ogj +ogj +fqh +lvZ +mgL +mgL +mJe +ipo +sdm +bSz +uQj +cHN +ooz +ryl +uCE +aNe +fYN +ujX +syB +lkd +iHy +rvq +iHy +iHy +iHy +nrb +psO +uwT +gLQ +jbs +nLu +yme +gsk +hLE +gLQ +kIQ +qLA +tlV +kqG +oDe +iTV +mgL +mgL +mgL +mgL +mgL +mgL +mgL +aMv +fUx +gbI +alU +alU +aQh +aQh +alU +alU +alU +alU +alU +alU +pTX +vZe +aMv +aMv +vZe +buC +aQh +alU +alU +alU +aQh +aQh +vZe +aMv +aMv +vZe +gbI +alU +alU +alU +alU +alU +alU +alU +wJw +wJw +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(112,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +alU +alU +iUs +vPb +qsn +mHN +hWZ +hWZ +gCs +hQh +uVe +uVe +lTT +uVe +uVe +uVe +vzV +tlo +eTL +eqV +wwM +wwM +tlo +eTL +kaJ +heU +sAg +fJQ +uwV +jcT +cEo +vPb +kOj +tHe +wwM +rbs +ryw +fqh +fqh +fqh +lvZ +lvZ +lvZ +mJe +dEn +cUO +cUO +cUO +lrM +ukE +xeV +cUO +psO +msS +ooz +vVC +psO +cUO +cUO +cUO +cUO +cUO +cUO +iDw +nKS +gLQ +irN +ktq +epm +qwV +wbZ +gLQ +kIQ +qLA +ciq +sid +jRV +iTV +lvZ +lvZ +lvZ +lvZ +lvZ +lvZ +lvZ +aMv +aMv +aRt +aRt +aRt +aMv +aMv +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aMv +aMv +aMv +aMv +aMv +aMv +aRt +aRt +aRt +aMv +aMv +aMv +aMv +aMv +aMv +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aRt +aMv +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(113,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +ogj +ogj +ogj +ogj +tJZ +kRG +hWZ +cFE +vPb +vPb +vPb +wWX +sXK +wxu +mZr +inV +qIN +vpv +eTL +tct +uZA +xGv +tnE +eTL +sNH +qTZ +kBD +jUR +kBD +sDt +bNg +xAY +tHe +qaf +iMJ +yeh +ryw +mIe +mIe +fqh +lvZ +ykh +ykh +mJe +tTY +iuH +iuH +iuH +nDs +ooz +vCZ +tXv +tXv +wkW +ooz +vCh +iuH +ldU +eXD +eXD +wUF +iuH +iuH +iuH +eOi +gLQ +slK +hgZ +fiD +qZp +slK +gLQ +okA +mMd +vVE +eyK +wYZ +iTV +ykh +ykh +ykh +lvZ +lvZ +lvZ +ykh +aMv +aMv +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aMv +aMv +aMv +aMv +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aGQ +aMv +aMv +aMv +aMv +aGQ +aGQ +aGQ +aMv +aMv +aGQ +aGQ +aMv +aMv +aQh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(114,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +mIe +mIe +mIe +mIe +ryw +hWZ +hWZ +vPb +iGU +vlV +nqU +eZy +giX +giX +giX +jET +wxu +hzV +pTP +eTL +eTL +eTL +eTL +lsY +hzV +gPO +iIr +sUl +eQz +xLr +wwM +wwM +ykK +eKN +vPb +vPb +vPb +asX +sqq +xbJ +lQh +sqq +mmN +rFO +rFO +rFO +rFO +rFO +rFO +rFO +fxN +fxN +fxN +fxN +rFO +rFO +rFO +rFO +kOz +kCg +bHK +rFO +rFO +rFO +rFO +vvu +vvu +vvu +vvu +vvu +vvu +vvu +cdW +vFu +vFu +cdW +cdW +cdW +asX +sqq +sqq +wJw +drZ +drZ +mmN +aMv +fUx +asX +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +xLI +vZe +aMv +aMv +vZe +asX +sqq +sqq +sqq +sqq +sqq +xLI +vZe +aMv +aMv +vZe +asX +sqq +sqq +aQh +aQh +sqq +sqq +aQh +aQh +aQh +kVD +wvu +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(115,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +sqq +sqq +bNd +vPb +ryw +cEg +cEg +vPb +xXW +uPq +sfy +uya +dOd +nwN +uxh +cuo +nwN +pnE +vcD +quT +jCl +jCl +ghV +tHZ +jhN +uya +urs +urs +oRK +wcP +iMJ +iMJ +wTo +vPb +vPb +asX +sqq +kVD +crn +crn +drZ +drZ +drZ +sqq +sqq +sqq +sqq +flA +flA +flA +flA +flA +flA +flA +flA +flA +qTM +rFO +lvZ +gxM +lvZ +rFO +vqe +flA +flA +pHj +pHj +pHj +pHj +pHj +pHj +hiJ +cdW +oeo +oeo +cdW +vqe +flA +kVD +kVD +wJw +wJw +drZ +drZ +aQh +aQh +aQh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +aQh +aQh +aQh +aQh +aQh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +sqq +wJw +wJw +sqq +kVD +kVD +aQh +aQh +kVD +kVD +kVD +aQh +aQh +kVD +wvu +ncP +ncP +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(116,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +tAt +gKT +sAU +fqh +mIe +vPb +vPb +vPb +vPb +vPb +vPb +vPb +xHz +xHz +vPb +vPb +vPb +cEg +cEg +cEg +cEg +vPb +vPb +vPb +xHz +xHz +vPb +vPb +vPb +vPb +vPb +vPb +asX +kVD +tAt +crn +crn +crn +drZ +drZ +drZ +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ykW +iFC +lvZ +dQm +rqH +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +flA +drZ +drZ +flA +tAt +tAt +kVD +wJw +wJw +wJw +kVD +kVD +kVD +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +kVD +ncP +ncP +ncP +oMM +oxI +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(117,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +kVD +gUa +sAU +eli +ffh +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +mmN +sAU +fqh +fqh +eli +asX +pdS +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +sqq +kVD +kVD +crn +crn +crn +kVD +kVD +kVD +drZ +drZ +drZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oFq +iFC +lvZ +dQm +uak +tAt +tAt +tAt +tAt +tAt +kVD +drZ +drZ +drZ +drZ +kVD +drZ +drZ +kVD +tAt +kVD +wJw +wJw +wJw +kVD +tAt +tAt +tAt +kVD +aQh +aQh +aQh +aQh +aQh +pPG +dvZ +dvZ +dvZ +dvZ +qGL +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +aQh +kVD +ncP +ncP +oMM +oxI +oMM +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(118,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +eXd +sAU +eli +uak +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +oFq +sAU +fqh +fqh +eli +uak +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +crn +crn +crn +crn +kVD +tAt +tAt +tAt +kVD +drZ +drZ +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +kVD +kVD +kVD +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +kVD +drZ +drZ +kVD +kVD +tAt +tAt +tAt +tAt +tAt +kVD +aQh +aQh +aQh +pPG +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ipH +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +ncP +ncP +oMM +oMM +oxI +oMM +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(119,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +cXC +sAU +fqh +fqh +eli +hAg +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +kVD +tAt +tAt +tAt +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +kVD +kVD +drZ +drZ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +aQh +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oMM +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(120,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +cXC +sAU +qkc +fqh +eli +hAg +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +crn +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aQh +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(121,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +oFq +sAU +eaG +fvC +qkm +uak +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +tAt +tAt +tAt +tAt +tAt +kVD +kVD +aQh +aQh +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(122,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +rTE +hVj +hVj +dTo +tEK +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +drZ +kVD +kVD +kVD +kVD +aQh +aQh +aQh +aQh +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(123,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mhH +gvV +hVj +hVj +poO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +drZ +drZ +drZ +drZ +drZ +drZ +aQh +aQh +aQh +kVD +eNS +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(124,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +poO +poO +poO +hVj +tAt +tAt +tAt +tAt +tAt +tAt +kVD +ssr +ssr +ssr +ssr +ssr +ssr +ssr +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +drZ +drZ +drZ +drZ +drZ +aQh +kVD +kVD +tAt +tAt +eNS +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(125,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +ssr +hCk +hCk +hCk +hCk +hCk +ssr +ssr +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(126,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +fRq +vFS +ssr +ssr +ssr +ssr +crn +crn +vFS +ssr +ssr +ssr +crn +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ssr +ssr +hCk +bvN +aMA +bvN +hCk +hCk +ssr +ssr +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(127,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +dBg +hCk +hCk +sbz +sbz +hCk +hCk +hCk +hCk +hCk +sbz +hCk +hCk +hCk +hCk +pAq +pAq +pAq +pAq +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +hCk +bvN +xFk +xFk +bvN +hCk +hCk +ssr +ssr +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(128,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tfw +hCk +hCk +hCk +hCk +hCk +gLf +gLf +gLf +aMB +aHu +xKv +pBd +aNd +pBd +pBd +fRB +aLr +hWD +lyI +quk +quk +lyI +gLf +aHu +hom +xFk +aNl +bvN +bvN +bvN +qzT +aLM +bvN +xFk +bvN +bvN +hCk +hCk +ssr +ssr +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(129,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tfw +aLx +pFL +pFL +aLB +aMp +sqx +gLf +wbk +wbk +wbk +wbk +hWD +wbk +wbk +wbk +wbk +sFl +sFl +xKv +aMF +jUc +aKY +inF +inF +inF +niP +aNG +wZl +lze +jMV +aNG +jMV +jMV +aNG +aNG +qjQ +xFk +qzT +hCk +hCk +ssr +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(130,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +lXN +hCk +aLp +msB +bYh +aLK +bYh +sqx +wbk +wbk +wbk +aLU +nGT +gxU +nGT +wbk +wbk +wbk +sFl +sFl +niP +wbk +wbk +aMf +wbk +nGT +nGT +niP +aNG +vPB +tgs +pOQ +cpV +mMh +fsI +cOW +aNG +qjQ +qjQ +xFk +bvN +hCk +ssr +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(131,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +lXN +hCk +vyT +azE +pEU +pEU +pEU +xKV +jTJ +wbk +aMC +aMC +nGT +nGT +gxU +nGT +wbk +wbk +nGT +sFl +sFl +niP +rsG +rsG +rsG +rsG +niP +niP +niP +aNG +vPB +eup +dXo +cpV +lcO +aIg +cOW +aNG +aNG +aNG +aNG +bvN +hCk +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(132,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +lXN +hCk +bsj +mkl +pZH +bmd +bmd +mPt +tcG +bYh +nGT +aMC +sFl +sCA +wbk +niP +hlV +wbk +aMx +aMC +tOO +nGT +sAX +wbk +aNn +aNu +wbk +wbk +wbk +bSI +qjQ +aMu +xSO +xSO +aNG +gFM +gFM +aNG +aNG +met +aLR +aNG +bvN +bvN +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(133,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oOF +hCk +aLD +gxk +neQ +pZH +aNf +hCk +gmx +tcG +bYh +nGT +wbk +sFl +sCA +wbk +niP +wbk +wbk +aMx +wbk +wbk +wbk +sAX +nGT +nGT +wbk +aMg +nGT +wbk +bSI +qjQ +aMu +cWT +lze +aNG +jMV +jMV +aNG +aLm +hCk +qxz +aNG +aNG +bvN +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(134,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oOF +hCk +ktx +fld +mkl +pZH +bmd +hCk +wsA +tcG +bYh +nGT +wbk +wbk +nGT +wbk +bSI +wbk +nGT +aMk +niP +niP +aMG +sAX +wbk +tOO +tOO +nGT +mnV +niP +niP +qjQ +vPB +ddA +ddA +cpV +fqd +pOQ +cOW +aLm +hCk +qxz +aNG +aNG +azx +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(135,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oOF +hCk +ktx +fld +mkl +iwF +aNf +hCk +wsA +tcG +bYh +nGT +wbk +wbk +nGT +wbk +bSI +wbk +nGT +wbk +niP +niP +wbk +sAX +wbk +aNq +aNq +nGT +wbk +niP +niP +qjQ +vPB +ddA +ddA +cpV +kAL +dXo +cOW +aNj +hCk +qxz +aNG +aNG +bvN +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(136,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oOF +hCk +aMb +aKW +mkl +oaV +aNf +hCk +dKz +tcG +bYh +nGT +wbk +sFl +sCA +wbk +niP +hlV +wbk +aMx +aNm +wbk +wbk +sAX +wbk +wbk +wbk +aLU +wbk +wbk +bSI +qjQ +aMu +uwJ +xSO +aNG +gFM +gFM +qjQ +aLy +hCk +qxz +aNG +aNG +bvN +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(137,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +nFd +hCk +aLH +mkl +iwF +bmd +bmd +pvY +tcG +bYh +nGT +aMC +sFl +sFl +wbk +niP +nGT +wbk +aMx +aMC +aMC +wbk +sAX +wbk +nGT +wbk +wbk +wbk +wbk +bSI +aNG +aMu +jMV +jMV +aNG +jMV +jMV +qjQ +eOa +met +uiu +aNG +qjQ +dPv +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +ncP +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(138,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +nFd +hCk +aNa +jbR +jgC +jgC +jgC +fVX +aLu +nGT +tOO +aMC +wbk +wbk +bSI +nGT +nGT +nGT +nGT +sCA +sFl +niP +rsG +rsG +rsG +rsG +niP +niP +niP +aNG +vPB +cwF +kJE +cpV +mMh +cwF +cOW +aNG +nqf +aNG +pbk +xFk +ojJ +hCk +crn +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +dXh +dXh +dXh +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oxI +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(139,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +nFd +hCk +aMr +pFL +bqq +bqq +bqq +aNk +oDZ +nGT +wbk +wbk +wbk +bSI +nGT +nGT +nGT +nGT +mUk +sFl +cwd +aMF +inF +inF +inF +inF +jUc +niP +aNG +vPB +cwF +pil +cpV +lcO +cwF +cOW +aNG +aNG +aNG +aNG +ari +hvD +ars +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +dXh +cCP +cCP +cCP +dXh +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oxI +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(140,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +nFd +hCk +msB +aLN +msB +aMM +dzF +pas +aLL +hQe +aMj +hQe +cwd +inF +inF +inF +inF +pWx +pWx +niP +wbk +nGT +nGT +nGT +wbk +nGT +niP +aNG +aNG +nCb +kJL +aNG +ddC +fpO +aNG +nnn +qjQ +qjQ +qjQ +ari +ari +ars +ars +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +dXh +cCP +cCP +cCP +cCP +cCP +dXh +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oMM +oMM +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(141,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +nFd +hCk +hCk +hCk +hCk +hCk +aML +gLf +gLf +aCv +aNz +niP +gLf +aCv +gLf +gLf +gLf +aNz +niP +mfZ +smr +smr +mfZ +gLf +aNz +hom +bvN +aMn +iRR +bvN +ojJ +asq +ars +ari +ari +ari +arT +ari +ari +ari +arT +ars +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +cCP +cCP +hQM +hQM +hQM +cCP +cCP +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +ncP +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(142,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +jWM +hCk +hCk +aLq +aLq +hCk +hCk +hCk +hCk +hCk +aLq +hCk +hCk +hCk +hCk +pAq +pAq +pAq +pAq +hCk +hCk +hCk +hCk +hCk +hCk +asq +asq +asq +ars +arH +arH +arH +arH +asq +ars +arH +arH +ars +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +cCP +cCP +hQM +hQM +hQM +cCP +cCP +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(143,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kso +aLz +ssr +ssr +ssr +ssr +crn +ssr +aLz +ssr +ssr +ssr +crn +ssr +ssr +ssr +ssr +ssr +crn +crn +crn +crn +crn +crn +crn +asq +asq +asq +ari +arv +ari +ari +asq +ari +ari +ari +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +cCP +cCP +hQM +hQM +hQM +cCP +cCP +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(144,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +asq +asq +ari +ari +ari +ari +ari +ari +ari +ari +arv +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +dXh +cCP +cCP +cCP +cCP +cCP +dXh +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(145,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +ari +ari +ari +arT +ari +ari +ari +ari +ari +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +dXh +cCP +cCP +cCP +dXh +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(146,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +arv +ari +ari +ari +ari +arv +ari +ari +ari +ari +ari +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dXh +dXh +dXh +dXh +dXh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(147,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +ari +ari +ari +arT +ari +ars +ars +ars +ars +ari +ari +ari +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(148,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +ari +ari +ari +ari +ari +arv +ars +ars +ars +ari +arv +ari +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(149,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +arT +ari +ari +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(150,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +arv +ari +ari +arT +ari +ari +ari +ari +ari +ari +ari +ari +hvD +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(151,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +xkt +ari +ari +ari +ari +ari +arv +ari +ari +ari +ari +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(152,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +dVb +rmZ +rmZ +usd +asq +ari +ari +ari +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(153,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(154,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(155,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(156,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(157,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(158,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wvu +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(159,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wvu +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wvu +ncP +ncP +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(160,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wvu +ncP +ncP +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oxI +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(161,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oxI +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oxI +oMM +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(162,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oxI +oMM +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oMM +oxI +oMM +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(163,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oMM +oxI +oMM +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oMM +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(164,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oMM +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(165,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(166,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(167,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(168,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(169,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(170,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(171,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(172,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(173,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(174,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(175,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(176,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(177,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(178,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wvu +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(179,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wvu +ncP +ncP +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(180,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oxI +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(181,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oxI +oMM +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(182,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oMM +oxI +oMM +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(183,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oMM +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(184,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(185,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(186,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(187,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(188,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(189,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(190,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(191,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(192,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(193,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(194,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(195,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(196,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(197,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(198,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(199,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(200,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(201,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(202,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(203,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(204,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(205,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(206,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(207,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(208,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(209,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(210,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(211,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(212,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(213,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(214,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(215,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(216,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(217,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(218,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(219,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(220,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(221,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(222,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(223,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(224,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(225,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(226,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(227,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(228,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(229,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(230,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(231,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(232,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(233,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +wDQ +xeg +tqK +tqK +tqK +xPy +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(234,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +hhH +cpX +tAt +tAt +tAt +fXD +jAN +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(235,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +tAt +tAt +hhH +hhH +hhH +kci +yep +yep +yep +cqa +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(236,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(237,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(238,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(239,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +tAt +tAt +tAt +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(240,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +tAt +hhH +hhH +hhH +hhH +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(241,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hhH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(242,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(243,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(244,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(245,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(246,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(247,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(248,1,2) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} + +(1,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(2,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(3,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(4,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(5,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(6,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(7,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(8,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(9,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(10,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(11,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(12,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(13,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(14,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(15,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(16,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +tAt +tAt +xuP +pOr +cRY +cRY +cRY +cRY +cRY +cRY +cRY +cRY +cRY +cRY +cRY +bsY +jjl +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(17,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +qbD +cRY +xRC +egl +smH +smH +smH +smH +qUu +smH +smH +smH +smH +lbF +tNL +cRY +fLg +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(18,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +xuP +pOr +cRY +cRY +cRY +fme +rmx +aOZ +cTA +lWd +lWd +lWd +lWd +lWd +lWd +lWd +lWd +lWd +lWd +lWd +cTA +utE +uWu +dhX +cRY +cRY +cRY +bsY +jjl +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(19,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +qbD +cRY +xRC +bIJ +mCF +mCF +mCF +mCF +kjl +kjl +kjl +kjl +kjl +kjl +kjl +viX +kjl +kjl +kjl +kjl +kjl +kjl +kjl +mCF +mCF +mCF +mCF +dWa +tNL +cRY +fLg +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(20,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +bMy +uvz +cTA +kjl +xAd +mIE +aTy +aTw +aTu +mIE +aTy +aTw +aTu +mIE +aTy +aTw +aTu +mIE +aTy +aTw +aTu +mIE +aTy +aTw +aTu +mIE +dyL +kjl +cTA +tKj +xED +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(21,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +aSB +qkp +aCm +kjl +uor +apK +apV +apK +apK +apK +apK +apK +apK +apK +apK +apV +apK +apK +apK +apK +apK +apK +apK +apK +apV +apK +fPP +kjl +lWd +mEm +bpA +bra +kVD +aHA +aAq +aAq +qxU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(22,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kFI +bMy +qkp +lWd +kjl +aTA +apK +apK +apK +apK +apK +apK +apK +apK +wHx +nyx +nyx +nyx +sxk +apK +apK +apK +apK +apK +apK +apK +apK +aTr +kjl +lWd +mEm +xED +vxj +kVD +xEC +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(23,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +aLj +kFI +kFI +bMy +qkp +lWd +kjl +aTB +apK +apK +apK +apK +apK +apK +apK +wHx +nyx +wPg +gVm +vQF +nyx +sxk +apK +apK +apK +apK +apK +apK +apK +aTs +kjl +lWd +mEm +xED +tAt +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(24,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +kFI +kFI +iTl +aff +aSO +kjl +aTC +apK +apK +apK +apK +apK +apK +wHx +nyx +wPg +apK +gVm +apK +vQF +nyx +sxk +apK +apK +apK +apK +apK +apK +aTt +kjl +lWd +mEm +xED +vxj +kVD +xEC +cCP +jUb +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(25,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +kFI +kFI +bMy +qkp +lWd +kjl +uor +apK +apK +apK +apK +apK +apK +nyx +wPg +apK +apK +gVm +apK +apK +vQF +nyx +apK +apK +apK +apK +apK +apK +fPP +kjl +lWd +mEm +xED +tAt +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(26,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +guB +suh +suh +suh +suh +suh +suh +suh +suh +suh +vtB +vtB +xHO +qkp +lWd +kjl +aTA +apK +apK +apK +apK +apK +apK +nyx +gVm +gVm +gVm +tDd +gVm +gVm +gVm +nyx +apK +apK +apK +apK +apK +apK +aTr +kjl +lWd +mEm +qsv +bra +kVD +aHA +unX +unX +fGS +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(27,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +kFI +kFI +bMy +qkp +lWd +kjl +aTB +apK +apK +apK +apK +apK +apK +nyx +sxk +apK +apK +gVm +apK +apK +wHx +nyx +apK +apK +apK +apK +apK +apK +aTs +kjl +lWd +mEm +xED +vxj +kVD +xEC +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(28,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +aLj +kFI +kFI +bMy +qkp +lWd +kjl +aTC +apK +apK +apK +apK +apK +apK +vQF +nyx +sxk +apK +gVm +apK +wHx +nyx +wPg +apK +apK +apK +apK +apK +apK +aTt +kjl +lWd +mEm +xED +tAt +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(29,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +aLj +guB +dbE +aLj +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +aLj +kFI +kFI +bMy +qkp +lWd +kjl +uor +apK +apK +apK +apK +apK +apK +apK +vQF +nyx +sxk +gVm +wHx +nyx +wPg +apK +apK +apK +apK +apK +apK +apK +fPP +kjl +lWd +mEm +xED +vxj +kVD +xEC +cCP +jUb +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(30,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwN +uGw +uGw +uGw +uGw +uGw +dRh +aLj +guB +mMu +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kFI +bMy +qkp +lWd +kjl +aTA +apK +apK +apK +apK +apK +apK +apK +apK +vQF +nyx +nyx +nyx +wPg +apK +apK +apK +apK +apK +apK +apK +apK +aTr +kjl +lWd +mEm +xED +tAt +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(31,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwN +kJb +dvZ +dvZ +dvZ +dvZ +dvZ +brp +soQ +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +aSB +qkp +aHf +kjl +aTB +apK +apV +apK +apK +apK +apK +apK +apK +apK +apK +apV +apK +apK +apK +apK +apK +apK +apK +apK +apV +apK +aTs +kjl +lWd +mEm +bpA +bra +kVD +nxB +sFj +sFj +uIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(32,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aGe +kJb +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +poo +dRh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +bMy +dMN +vhb +kjl +xhm +gaD +aTz +aTx +aTv +aTH +aTz +aTx +aTv +gaD +aTz +aTx +aTv +gaD +aTz +aTx +aTv +gaD +aTz +aTx +aTv +gaD +sNz +kjl +vhb +oFr +xED +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(33,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +hLJ +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +pKK +fxq +caC +oXn +aGY +aGY +aGY +uyV +gta +cWb +gta +lPk +dyj +bJC +aqH +hzG +aqH +bJC +rci +kjl +kjl +aBY +kjl +aGY +aGY +aGY +aGY +aGY +nJC +fxq +wTK +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(34,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +fMe +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +pKK +feD +fxq +fxq +fxq +fxq +wuf +lWd +bgx +qFA +qXV +dyj +bJC +aqH +aqH +aqH +bJC +rci +sAx +tdL +qGy +lWd +nJC +fxq +fxq +fxq +fxq +mEJ +utx +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(35,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +aLc +aLc +aLc +aLc +sKf +aEf +pth +axG +mcM +qXV +sPU +bJC +aqH +aqH +aqH +bJC +xBR +sAx +mcM +amj +sDf +eBn +bra +aLc +aLc +aLc +aLc +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(36,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +aKX +rxz +gqE +gqE +gqE +lxz +kNl +wmy +aoG +eQI +sFg +fKQ +oER +oER +oER +oER +oER +oER +uxd +pjP +giz +ihH +aoE +aoA +ehL +sKf +gqE +gqE +gqE +rxz +npT +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(37,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pBL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +rxz +fxc +maM +gEZ +gEZ +aoF +ezf +aBi +wmy +aoE +ksZ +aqH +dyj +bCj +bCj +aSd +aSc +aRZ +bCj +bCj +fUT +qNZ +yfc +aoE +aoA +ezf +dzr +maM +gEZ +gEZ +aoF +gcp +aBO +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(38,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aBG +opN +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +gEZ +gEZ +aoE +aoE +aoE +aoE +gEZ +gEZ +aoE +aoE +aoE +gyc +dyj +bCj +bCj +aSe +alm +aSa +bCj +bCj +rci +aqH +aoE +aoE +aoE +gEZ +gEZ +aoE +aoE +aoE +aoE +gEZ +aoF +aQV +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(39,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aBG +opN +dvZ +dvZ +dvZ +dvZ +dvZ +acn +poV +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aSv +aoE +aoE +qvw +dyj +bCj +bCj +aSf +aln +aSb +bCj +bCj +rci +uSP +aoE +aoE +aSv +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoE +aoF +aQV +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(40,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aBG +gCW +gCW +aOD +gCW +gCW +ayE +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asM +asM +asM +asM +asM +asM +aqq +aqq +oUQ +oUQ +ark +arc +oUQ +oUQ +oUQ +ark +arc +oUQ +oUQ +aqq +aqq +aRC +aRC +aRC +aRC +aRC +aRC +aRC +are +aoE +aoG +aoF +aQV +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(41,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +jlw +aLj +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +kVD +tAt +vVW +aup +qTq +uCm +wqz +taR +cDE +aqr +aqr +lCo +uSZ +ard +ard +wnA +eHc +uSZ +ard +ard +rQq +mEh +aqr +aqr +lSZ +kyt +app +jXh +app +thJ +aRC +aKg +are +aoE +aoE +aoF +aQV +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(42,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +kVD +atZ +bms +auq +atZ +rXf +atJ +taR +taR +aqr +cDl +aHm +aGO +aqS +aqS +kIK +jCu +tyf +aqS +aqS +cYp +aEZ +nkr +aqr +aqe +bEW +nII +ptl +rfo +iex +aRC +aRC +aRC +are +aoE +aoE +aoA +lIC +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(43,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aKX +tAt +aoE +aoE +tAt +aoE +hjz +sMY +atZ +aua +aua +cIS +ufJ +atb +atb +asS +ocx +eWD +aGP +aqS +aqR +jgN +rLj +aWt +aqR +aqS +aFy +mLO +ocx +aoR +aqe +fhZ +cgk +juo +giq +bOv +rsC +brQ +aRC +aKg +are +aoE +aoA +wnw +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(44,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +asM +asM +auq +auv +xDk +gZi +hHM +kAU +gZi +laX +aqr +wfg +asA +aGP +aqR +aqR +tED +hWS +aWt +aqR +aqR +aFy +aqI +dme +aqr +aoH +lbz +quP +aoH +fVg +sDP +wMV +aoH +aRC +aRC +aRC +aSt +aoE +aoy +fcb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(45,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +cSH +auq +atb +auv +vIh +asK +asK +asK +asK +asK +asK +asK +hXy +aGU +fbl +fbl +aGy +pKI +rjk +fbl +fbl +oYy +cpO +apm +apm +apm +apm +apr +apm +apm +vPA +qIZ +aoP +aoP +aoH +aRC +aoE +aoE +aoA +fcb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(46,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +avj +aua +cIb +auw +vIh +asK +gwZ +gXQ +nSd +vuP +wbq +asK +qZz +aHe +aqR +aqR +aqR +afj +aqR +aqR +uRO +aFB +aRi +apm +rjN +omr +ihx +jbK +aUt +apm +dig +jZj +cJJ +gga +aoI +aRC +aoE +aoE +aoA +fcb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(47,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +oTy +aoE +aoG +asM +nQu +vCM +sHK +auw +vIh +asK +wSm +qtT +mbl +atc +dRe +asK +waw +aFC +cKh +dui +nfW +nfW +arC +xzO +cKh +aFC +azO +apm +apm +uNP +apL +aEC +ePG +apm +xjq +pxf +qNI +ucR +aoH +aRC +aoE +aoE +qld +fcb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(48,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +dQB +wmy +aoE +asM +ona +eDg +abT +aux +asK +asK +fFw +lGW +ffQ +atc +qPE +asK +qAT +cWe +ouX +arl +xBJ +eDI +rAP +arl +qAT +cWe +ouX +apm +apm +cDT +fui +aED +vcL +apm +apm +twi +iVt +vPi +gDC +aRC +aoE +aoA +pcT +wFw +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(49,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aKX +aPt +wmy +aoE +asM +auq +rAW +hKG +qeI +asK +cLj +atQ +lny +slR +aHI +sow +asK +iAt +aFD +aqI +arl +gng +kNu +ukF +arl +nbT +aFD +vJx +apm +iLv +teJ +apW +aEC +cSx +grz +apm +coD +iVt +kYD +fkk +aRC +aoE +aoA +wnw +npT +kVD +aHA +aAq +aAq +qxU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(50,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +xLS +aoE +aoE +asM +fFt +vLA +lXz +ipv +asK +hmk +wVD +fhB +cjm +cJg +oHp +asK +asA +aFD +aqJ +arl +cHp +aGt +aWm +arl +cOj +aFD +aqI +apm +qnx +vwH +nFb +aEE +aeU +fmO +apm +lqy +aoW +aoQ +lbz +aRC +aoE +aAd +aoy +pVI +kVD +xEC +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(51,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +oUv +aud +aud +aud +asK +asK +asK +atd +mEa +atd +asK +asK +kRf +lto +lVZ +arl +arD +arM +arD +arl +kRf +lto +sKT +apm +aqf +aqf +nAp +apM +nNw +apm +apm +hGF +hGF +hGF +aoH +aRC +aoE +aoE +aoA +fcb +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(52,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +dyi +aud +jHz +oTR +kkR +aub +xaQ +aEQ +aEF +aEQ +osD +aEQ +aHo +aFF +aEQ +prk +aEQ +aFF +aEQ +eyW +aEJ +aFF +aFa +aEQ +aEQ +aEQ +aEJ +aEF +eXI +gPS +kCD +jBf +tKw +hGF +aoH +aRC +aoE +aAd +aoA +pVI +kVD +xEC +cCP +jUb +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +aHA +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(53,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +guB +dbE +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +oTy +aoE +aSK +asM +atZ +aud +wZq +auy +xzB +auc +atR +atK +gQe +aqh +aqh +aqh +aFb +bJI +aqh +aqh +xkz +aqh +ail +aqh +aqh +aqh +aFb +xkz +aqh +aqh +qGP +jAD +kDB +sDw +mwj +oVM +mXy +hGF +aoH +aRC +aSt +aoE +qld +fcb +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azc +tAt +vxj +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(54,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +rjb +wmy +aoE +asM +auq +aud +eYT +weH +ryo +aub +aHZ +ddk +apX +dUa +oqR +aqz +qZa +aqz +gpQ +aqz +aqz +aqz +aqz +aqz +aqz +aqz +usZ +aqz +alb +dUa +apX +nfU +aEx +gPS +szk +oWv +gBz +hGF +vQa +aRC +iMs +aoA +vSN +hLp +kVD +nxB +sFj +sFj +uIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jpT +aGv +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(55,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aKX +aPt +wmy +aoE +asM +avj +aud +aud +aud +aud +aud +hMK +ddk +apX +pIZ +qcA +ewK +aHp +wqX +wqX +aqA +aqA +arN +fTf +aRl +uME +uME +aFc +wqX +jFo +sGo +apX +kDP +aEx +hGF +fEW +pNf +gBz +hGF +wtJ +aRC +aoE +aoA +fcb +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +dqL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +vxj +cCP +jUb +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(56,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +xLS +aoE +aoE +asM +auq +auU +auH +aur +aur +aue +aHZ +ddk +apX +jiJ +asT +arN +aFc +lie +aqA +lVp +nNQ +arO +jfW +apX +oLC +aqA +aFc +jjD +ioD +lsF +apX +nfU +aEx +gPS +qtD +aEo +ttQ +hGF +cbM +aRC +aFk +uxP +ruj +ruj +ruj +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +azs +aDM +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(57,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +jlw +aLj +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +avk +auU +auI +bzz +aus +qhh +aRR +atL +apX +apX +mEe +aHC +iOA +aqA +aqA +dSQ +gOB +ais +vtz +apX +wqX +aqA +lwk +hsG +emt +apX +apX +nfU +aEx +gPS +qtD +aEo +wQL +hGF +aoH +aRC +hnk +hnk +aOC +eiY +eiY +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +aFg +wYb +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +aPu +aPu +uRf +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(58,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwN +uGw +uGw +vTT +uGw +uGw +dRh +kVD +tAt +aHA +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +atZ +auU +auI +auz +uaU +awr +aRR +ddk +apX +apX +sKx +aqA +vPV +wqX +uME +apX +ozH +gzY +prs +hxv +aqA +aJF +wCC +aEV +uVg +apX +apX +nfU +aEx +gPS +jBJ +aEo +vOr +aoR +aoH +aRC +aAM +aAM +mjM +mjM +mjM +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +azu +tNO +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +vxj +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(59,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwN +kJb +dvZ +dvZ +dvZ +dvZ +dvZ +brp +ewh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +oTy +aoE +aoE +asM +evd +auU +auJ +aut +aut +auf +eaF +ddk +apX +iAr +mTY +xkd +aHq +jWc +uBg +apX +veC +arO +lXX +bxK +aqA +yjp +aFc +aqA +aqs +wDw +apX +nfU +aEx +gPS +jBJ +aEo +aQZ +hGF +aoH +aRC +aoE +iMs +qld +fcb +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +dqL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(60,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aGe +kJb +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +dQB +wmy +aoE +asM +atZ +aug +aug +aug +aug +aug +xut +ddk +apX +mkU +qcA +dfx +aHq +pUN +wqX +gQX +aqA +aqA +aqA +ahY +wqX +wqX +aFc +ahc +aqs +fkV +apX +nfU +aEx +hGF +fEW +oWv +noy +hGF +aoH +aRC +aoE +aoA +aGj +hWt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +oJj +aBA +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aCT +poV +vxj +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(61,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aKX +aPt +wmy +aoE +asM +atZ +aug +xuB +kOV +noC +auh +aHZ +ddk +apX +dUa +wAj +kuk +aFj +aqB +nti +aqB +oar +aqB +aqB +aqB +aqB +aqB +aFj +aqB +vmM +dUa +apX +nfU +aEx +gPS +szk +pNf +nio +hGF +aoH +aRC +aoE +aoA +wnw +npT +kVD +aHA +aAq +aAq +qxU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +oJj +aBA +dvZ +dvZ +dvZ +dvZ +dvZ +aDb +aCU +kVD +kVD +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(62,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +xLS +aoE +aSK +asM +atJ +aug +qmP +pLP +bjo +aui +aIa +aRw +aqg +aqg +aqg +aqg +aFp +aqg +aqg +qLl +aqg +aqg +aqg +aqg +qgx +qgx +aFp +aqg +aqg +aqg +qgx +pZS +aEx +gPS +szk +kis +hhh +hGF +aoH +aRC +aSt +aAd +aoy +pVI +kVD +xEC +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +oJj +azw +azw +azw +azw +azw +kQl +ayY +ayT +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(63,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +dyi +aug +tMZ +bey +nVu +auh +fCS +xHe +pKH +aES +aES +pWO +aFq +jEP +uiG +aES +wgP +phI +hME +mvP +uiG +jEP +aFq +jEP +aES +aES +pKH +sbS +lhU +gPS +jpm +ivy +wqO +hGF +aoJ +aRC +aoE +aoE +aoA +fcb +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +aAh +ayY +ayT +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(64,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aoE +asM +fcE +aug +aug +aug +aug +aug +aIb +apC +apY +apY +apX +apX +apX +apX +apX +apX +apX +apX +apX +apX +apX +apX +apX +apX +apX +apY +apY +apN +aEy +aoX +aoX +plC +aoX +hGF +jue +aRC +aoE +aAd +aoA +pVI +kVD +xEC +cCP +jUb +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +ayY +ayT +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(65,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +pBL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +uQt +oTy +aoE +aoE +asM +auq +nZp +uaH +fMp +nYX +auj +atS +apZ +apZ +asb +fHO +rbi +rUm +apZ +apZ +asb +aFo +apZ +ont +apZ +sIF +oUK +lbg +apZ +aRf +apZ +apZ +kut +rTC +apq +neA +pcV +aoX +vLB +tnN +aRC +aoE +aoE +qld +fcb +kVD +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +ayY +ayT +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(66,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aBG +opN +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kFI +bFL +aiC +wmy +aoE +asM +auq +atJ +auK +osE +hcJ +auk +qfu +tlD +clp +pIk +aHF +aHD +fGj +uBJ +ash +sax +fpK +kEg +aFG +arm +guF +aFG +aqK +bDm +gyV +fLV +fLV +rFy +njn +aoX +sVe +nZd +aoX +iYi +xjC +aRC +aoE +aoA +aAv +bUh +kVD +nxB +sFj +sFj +uIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +ayY +ayT +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(67,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aBG +opN +dvZ +dvZ +dvZ +dvZ +dvZ +acn +poV +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +fMd +eDc +wFS +wmy +aoE +asM +jvd +atZ +fcO +fcO +fcO +fcO +arn +asl +aHK +ate +asl +arn +arn +arn +arn +arn +arP +arP +arn +arn +apD +apD +aqL +apD +tLz +aqi +wEk +tLz +apD +aoX +vIX +frn +aoX +fNN +iex +aRC +aoE +aoA +buK +nij +kFI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +ayY +ayT +aAh +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(68,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aBG +gCW +gCW +aOD +gCW +gCW +ayE +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +fMd +pyE +uQt +xLS +aoE +aoE +asM +hbq +vtT +auL +sPQ +ajx +arn +pox +mLF +lmD +atf +oux +asL +teN +asl +vgQ +wNb +kBI +cND +aBI +hwk +tuv +cMZ +mTT +tjz +ovE +vRG +eHm +aGu +apD +xHp +wcw +oWm +aoX +rmY +aqv +aRC +aoE +aoE +aoy +ter +kWF +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +ayY +aCp +pts +pts +cOk +aTm +aTm +azW +tAt +tAt +aHA +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(69,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +jlw +aLj +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +fMd +pyE +kFI +uQt +wmy +aoE +aoE +asM +wZt +atb +auv +bJO +wXy +arn +oGY +bQF +sXG +vgm +roq +erQ +aHt +vmB +kru +aGF +aGz +arQ +hTn +dUk +oeG +uZe +aJE +anC +anC +igq +lqL +aRd +apD +gWb +fhc +aoX +aoX +udU +eVM +aRC +aoE +aoE +aoA +wXw +qMg +aGV +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +iEQ +aCq +aAN +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(70,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +fMd +pyE +aLj +kVD +uQt +wmy +aoE +aoE +asM +eBK +tmX +auM +auA +atZ +arn +eyV +tbG +qnS +qnS +qnS +vgm +asC +asm +tcF +arE +aPZ +arE +arE +xMM +aqi +wzZ +drT +dyB +dyB +nPh +sFJ +rXv +apD +wWN +aoX +aoX +bpI +mGl +lwM +aRC +aoE +aoE +aoA +wXw +kFI +oyb +aGV +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iEQ +lQI +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(71,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +fMd +pyE +aLj +tAt +kVD +iwj +oTy +aoE +aoE +asM +avl +oDf +huU +kJs +auu +arn +xZo +gNl +xHP +qnS +qnS +asB +aLg +asl +iQm +asc +esZ +arR +vuK +jDu +tuv +wAn +xjV +wAn +mir +wPK +uqK +oXJ +apD +apr +aoX +aoX +waV +wlJ +vfS +aRC +aoE +aoE +qld +wXw +kFI +aLj +oyb +aGV +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +dqL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(72,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +fMd +pyE +aLj +tAt +tAt +kVD +wsJ +dQB +wmy +aSK +asM +asM +asM +asM +ecI +dTV +arn +atT +roq +fdc +qnS +aRq +fsL +tjb +aro +aro +jdO +aQb +eyb +mGa +aro +apD +dyE +aMH +tWQ +tpb +kpt +pHJ +taO +apD +hIu +bVW +gpU +xjC +aRC +aRC +aRC +aSt +aoA +aGj +hWt +kVD +kVD +aLj +oyb +aGV +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +dqL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(73,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +aLj +fMd +pyE +aLj +tAt +tAt +tAt +tAt +kVD +iwj +wmy +aoE +aKB +moz +chd +xjZ +kaU +auq +arn +sVH +kHg +asi +aQq +uPU +swd +aro +aro +aSt +aoE +aQc +aoE +aoE +aSK +apD +apD +jXK +icp +lKu +hvp +tIQ +bvM +apD +oXL +iaJ +spt +iex +aRC +aKg +aKf +aoE +aoA +fcb +kVD +tAt +tAt +kVD +aLj +oyb +aGV +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +dqL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(74,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +fMd +pyE +kFI +kVD +kVD +tAt +tAt +tAt +kVD +iwj +ndd +aoE +aoE +trg +asM +asM +asM +auq +arn +arn +arn +arn +arn +asU +aro +aro +aKg +aQi +aPW +aQd +aPW +aPW +aAC +aKg +apD +apD +tPA +fcO +fcO +fcO +fcO +apD +edb +agc +aRC +aRC +aRC +aKf +aoE +aoE +aoA +fcb +kVD +tAt +tAt +tAt +kVD +kFI +oyb +aGV +kFI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +dqL +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(75,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eWl +wbB +umW +qfU +eWl +eWl +rxz +npT +kVD +kVD +tAt +kVD +wsJ +aFd +ndd +aoE +aoE +aKB +aKg +asM +iyp +elq +ipv +atq +atq +tpe +fgY +asM +aKg +aKf +aQc +kns +kns +kns +kns +aQc +aKB +aKg +aRC +msF +aoH +aoJ +uve +aoH +pQT +aoQ +uwi +aRC +aKg +aKf +aoE +aoE +qld +aLe +hLp +kVD +tAt +kVD +kVD +kVD +kVD +kFI +qMg +kWF +kFI +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +dqL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(76,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +tAt +tAt +kVD +kVD +krP +mas +kIl +idO +ayp +mas +mas +axi +gcp +aBO +npT +kVD +kVD +kVD +wsJ +aFd +ndd +kns +aoE +aKB +asM +asM +asM +asM +asM +asM +asM +asM +asM +aKf +aQi +asj +xQv +eyY +eyY +aBE +arp +aAC +aKB +aRC +aRC +aRC +aRC +aRC +aRC +aRC +aRC +aRC +aRC +aKf +aoE +kns +qld +acc +bUK +kVD +kVD +kVD +aKX +rxz +rxz +rxz +rxz +eWl +aBr +kuy +eWl +rxz +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +oJj +aBA +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(77,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +tAt +kVD +kVD +kVD +tAt +tAt +arX +mas +mas +axL +arX +arX +arX +mas +axi +wnw +rxz +rxz +npT +tAt +wsJ +eyY +aBE +wmy +aoE +aSH +kns +aoE +aoE +aoE +aoE +kns +kns +aSw +aoE +aQn +xQv +hLp +tAt +tAt +wsJ +hHf +aPP +aoE +aSw +aoE +kns +kns +aoE +aoE +aoE +aoE +kns +aAk +aoE +aoA +xQv +eyY +hLp +hmf +aKX +rxz +rxz +fxc +aNL +kGI +kGI +kGI +kGI +aNK +kGI +kGI +pPp +gcp +bra +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +oJj +aBA +dvZ +dvZ +dvZ +dvZ +dvZ +nbz +poV +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(78,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +jlw +aLj +kVD +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +arX +arX +arX +aSF +arX +arX +arX +arX +mas +mas +axi +fcb +tAt +tAt +tAt +aas +aQs +aSk +aBu +aAB +asN +aQp +aQp +atr +aKU +aAB +asN +aQp +aQo +fcb +tAt +tAt +tAt +tAt +iwj +aPQ +aPG +aPG +aPE +aKU +aAB +aPI +aPG +aPG +aPE +aKU +aAm +jUY +aPy +acS +pro +kVD +hmf +iwj +aNL +kGI +kGI +pXR +aSr +pXR +pXR +pXR +pXR +pXR +pXR +pXR +kGI +krP +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +oJj +azw +azw +ayH +azw +azw +kQl +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(79,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +qPP +gtv +aLj +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +awa +awa +awa +awa +awa +awa +aKp +aKr +arX +arX +kaL +wnw +rxz +rxz +rxz +aPt +aQt +arX +aBx +mas +arX +arX +arX +arX +mas +mas +aSF +arX +kaL +wnw +npT +tAt +tAt +aKX +aPt +qpb +pXR +aSr +pXR +kGI +kGI +pXR +pXR +pXR +pXR +kGI +aAn +pXR +aPz +wnw +rxz +rxz +gqE +gyn +qpb +pXR +aKe +aKd +aog +aog +aog +aog +aog +aog +pXR +pXR +tAt +tAt +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +edc +aAh +aAh +ayL +aAh +aAh +edc +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(80,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +aLj +qPP +gtv +aLj +kFI +lww +auV +arX +tAt +awa +awa +awa +qOG +axM +axI +awo +awa +awa +awa +awa +aKr +arX +mas +mas +mas +mas +aQv +aQu +arX +xpa +xpa +xpa +xpa +xpa +xpa +xpa +xpa +xpa +aKr +arX +axi +wnw +rxz +rxz +aPt +wfG +pXR +aKe +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aKb +aPA +aPq +aPq +aPk +kGI +kGI +pXR +aKe +aog +aog +aog +muE +xqE +whj +acQ +aog +aog +tAt +tAt +tAt +tAt +aby +rxz +npT +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +gLe +aAh +aAh +ayL +aAh +aAh +gLe +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(81,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +aLj +aLj +qPP +lSR +lww +ayp +arX +aKH +aKp +awa +gyI +awJ +cmw +jBi +mRL +eBE +axx +awJ +mzR +awa +aKp +aKr +aSF +arX +arX +arX +aQw +arX +arX +xpa +aso +asE +gMB +asE +asE +asE +aso +xpa +aKp +aKr +arX +mas +mas +kGI +kGI +pXR +aKe +aKd +aoV +aqC +agy +mjk +afH +kvJ +apE +aeK +aez +aoV +aKd +aKb +pXR +pXR +aPl +pXR +pXR +aKe +aKd +aog +adi +adg +rys +ltR +acT +kVV +muE +ebV +tAt +tAt +tAt +pXR +pXR +pPp +wnw +npT +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +ayL +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(82,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aLj +kFI +ayo +ayp +arX +aKH +awa +awa +awa +awJ +axW +pEq +kLV +pci +fYh +axz +ssS +awJ +awa +awa +awa +awa +awa +aCC +auN +aQx +auN +aCo +xpa +asH +weN +npi +pKP +npi +cQA +asp +xpa +xpa +aKp +aKr +arX +arX +pXR +pXR +aKe +aKd +aoV +aoV +ahd +agA +apt +aqa +afp +apF +ojm +aeA +aes +aoV +aoe +adH +adH +aPm +adH +adH +aoe +aog +aog +adj +aoe +aoe +aop +aoe +aoe +aoe +coc +aog +tAt +tAt +aKb +pXR +onz +lmb +ach +wFw +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +ayL +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(83,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kFI +lww +ayp +arX +aKH +aKp +awa +xux +ayc +aya +axj +axj +axj +axj +axj +axj +axj +awJ +awJ +awJ +eUj +awo +awb +jao +dLk +aDS +auO +aCt +auB +oBz +iXG +cfO +bMU +ats +atg +asp +bjU +xpa +xpa +aKp +arX +arX +pXR +pXR +aKd +aoV +aoV +aht +aqa +aqa +apf +apO +apO +aeV +gtK +gtK +aoS +ael +aoS +aec +kQa +aCE +kQa +gPJ +wyn +vyK +wnZ +ljz +aoe +wTv +aRQ +oXk +uRI +aoe +muE +muE +acx +aog +aKd +aKb +pXR +lmb +wnw +npT +tAt +aEe +gWW +gWW +gWW +vse +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +ayL +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(84,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +lww +ayp +arX +awa +awa +awa +awa +awJ +axj +axj +axj +hoR +kHe +bfr +jQe +nIC +axj +axj +avO +avO +avO +avO +avO +vTk +aCA +aCy +nAd +lcK +bBe +oYF +att +bfp +att +att +kXI +aso +hZx +asr +xpa +xpa +aSD +arX +aSA +aoV +aoV +aoV +apf +apf +apf +aOk +agg +afI +pSJ +apG +aeL +aeB +aoK +aoZ +aoK +aDY +aBS +aDd +acs +rPK +wyn +xwe +fZW +adk +llL +aot +aBV +rOU +hVN +aoe +aoe +eIp +acy +aoe +aoe +aoe +pXR +pXR +urO +lpX +hil +azf +nCP +acf +nCP +agf +vse +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aAh +aAh +ayL +aAh +aAh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(85,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +vVQ +arX +arX +awa +gFP +axM +jrW +awJ +axj +rZH +bNZ +vCk +aJf +eDL +noq +wbf +tZM +iGd +avN +rjI +bRF +oDx +avO +psl +avB +aCz +axy +bwp +asO +asO +asO +asO +asO +asO +asO +asO +asr +uyd +aso +xpa +arX +arX +pXR +aoV +apf +aqM +aqT +aoK +aoK +aoK +aoK +aoK +aoK +aoK +aoK +aoK +aoK +apa +aoK +aoK +adX +aCN +adL +aoe +aoe +piC +taW +adl +llL +mHF +aCl +rPK +nAu +aoe +oSX +aJz +acz +ruu +dDK +aoe +pXR +pXR +lmb +lpX +egr +rSH +nwQ +ieP +oGk +lyk +vQz +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +aAh +aAh +aAh +ayL +aAh +aAh +aAh +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(86,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +dQB +auV +aSL +awa +ayq +psv +wrw +ayd +axj +sMN +wbT +aCO +aLA +uAE +hUx +pJY +axr +axk +aks +jpY +aOp +iwV +avO +avO +mbQ +aDu +kBr +asO +asO +sJD +sJD +qod +mGv +pCq +xjO +asO +asO +asE +iIQ +xpa +arX +dqB +pXR +aoV +ahZ +cjI +ahz +aoK +aqD +aRg +xUq +oQr +hSm +aoK +fTM +sLj +vmX +eBC +ewJ +aoK +aRa +adU +acA +aoe +aoe +wyn +cdG +kvK +aoe +wyn +aCx +wyn +aoe +aoe +aoe +wyn +acA +acr +aoe +aoe +aoe +oTG +lmb +lpX +egr +uGE +nwQ +vrW +jpD +dKk +jZh +unv +unv +unv +aFR +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +nJr +nJr +nJr +nJr +gAe +nJr +nJr +nJr +nJr +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(87,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aKX +aPt +auV +arX +awa +axW +fTU +qCM +ayd +axj +rUr +aCR +rqA +uIG +sXp +hUx +aCJ +hrN +aCH +oqC +rQE +awu +hmv +rDF +apy +soU +mcU +ftk +asO +asO +asO +aIf +cSK +ati +aHL +nMU +fgm +asO +xzg +dlZ +xpa +kaL +aAU +qpb +aoV +aia +ahI +ahA +aoK +esa +lns +xrG +xrG +afq +aoK +dCl +apb +hNL +aEk +kXU +aoK +ltH +aCE +kQa +kQa +adz +kQa +qUD +kQa +adh +kQa +aCE +acU +kQa +kQa +kQa +kQa +acB +kQa +gPJ +gvt +pXR +pXR +lmb +lpX +egr +muo +aaL +aaL +aaL +dKk +dKk +unv +unv +sjw +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +ayN +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +rWz +esz +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(88,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +ayx +arX +arX +awa +axW +xZC +ayg +aye +axj +raW +tZi +cwo +cYf +mHC +vGp +jdy +aCI +rOd +avO +lay +awu +aFw +sIH +apy +soU +mcU +dFi +asO +gyq +lOv +oOj +fpk +gch +oJK +eGb +pLS +asO +sMM +xJw +xpa +kaL +nLC +qpb +aoV +aib +ahJ +ahB +aoK +rwV +hXm +fRe +aEK +aEu +vAW +aEu +aEr +aEp +aEl +lam +aoK +adY +aDj +rxG +acs +xqd +xqd +ayJ +tJc +bSV +bSV +aCK +rxG +xqd +bSV +xqd +rxG +rxG +xIv +dxs +gvt +pXR +pXR +pXR +aob +anZ +xge +hlB +mdW +aaL +dGb +aKF +wJw +kIa +ksM +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sSq +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +sCu +aSN +sXb +esz +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(89,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +axL +arX +awa +axW +xZC +ayh +ayf +axj +axj +axN +jLc +axN +axj +axj +axj +axj +axj +avO +qaV +awv +mfx +vAV +apy +soU +wSK +sms +asO +qxZ +moJ +asO +asO +asO +asO +lRO +asO +asO +diE +dlZ +xpa +arX +mas +pXR +aoV +aic +ahC +ahC +aoK +aRB +wtW +slo +slo +slo +aoK +xhi +aEs +apc +apc +sKk +aoK +xwe +aDn +aBK +aBM +aBt +aBM +woi +wXL +pzl +nCY +aCM +aBM +aBM +aBM +aBt +aBt +aBa +acs +dxs +gvt +pXR +pXR +pXR +aob +anZ +xge +fDp +gBg +aaL +dGb +aKF +wJw +aUq +eSs +pla +tcZ +tnV +aAP +tnV +tnV +tnV +tnV +tnV +tnV +hCr +tnV +tnV +tnV +tnV +tnV +hCr +tnV +tnV +tnV +tnV +tnV +tnV +tnV +tnV +tnV +tnV +aSM +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(90,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +arX +arX +awa +axW +xiS +ayh +awx +gZw +dzH +pyZ +axS +ajG +fpb +uMy +adO +woo +axl +avO +avO +aSl +aSl +aSl +avO +uGy +mcU +dFi +asO +uMs +aIi +iOT +jjj +vEQ +ttN +gFr +kTq +asO +wMa +asp +xpa +arX +arX +pXR +aoV +cjI +apf +apf +aoK +cHB +oQr +sEC +bgb +hMd +aoK +xhi +rrG +apb +apb +fXi +aoK +acI +aCK +ruu +ruu +ruu +ruu +ruu +ruu +xDb +cXY +aBd +ruu +ruu +ruu +ruu +ruu +aBd +acs +dxs +gvt +pXR +pXR +lmb +lpX +egr +muo +svf +gBg +aaL +dGb +aKF +wJw +aUq +eSs +tjI +bcr +omM +omM +omM +omM +xzj +tnV +tnV +hKH +omM +bNX +xaU +omM +omM +omM +omM +xzj +tnV +tnV +iUg +omM +omM +omM +omM +iTx +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(91,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +vrG +arX +arX +awa +ayr +ayj +awJ +awx +aJo +aIW +aIW +aOd +aJg +aIW +aIW +aIW +aJR +aIV +weR +aIQ +aSl +dKY +aSl +aNQ +soU +avm +ovn +asO +uwl +aIj +ath +aIc +ati +aHM +ath +iUo +asO +asF +asr +xpa +arX +arX +pXR +aoV +aid +apu +aOl +aoK +aoK +aoK +aoK +aoK +aoK +aoK +dCl +aEs +apb +jry +mGH +aoK +acI +aBd +nCk +aoe +aoe +aoe +aoe +aoe +aoe +wyV +sLT +nCk +cUf +aoe +aoe +yfH +aBd +kfD +aoe +aoe +aoe +acj +lmb +lpX +egr +muo +svf +sDb +aaL +bHF +aLa +anX +aUq +iGR +aAP +aWu +hGn +hGn +hGn +hGn +spn +xXV +xXV +spn +hGn +hGn +hGn +hGn +hGn +hGn +hGn +spn +xXV +xXV +spn +hGn +hGn +hGn +hGn +tCs +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(92,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +rjb +auV +arX +awa +hJf +axM +awJ +awx +wXG +uML +iRt +nVI +tak +rIs +qXJ +bDu +awK +aYN +awV +aIR +aSl +aSl +aNR +fKx +soU +avm +kBr +asO +vJe +dCN +myT +ath +ati +eFj +teL +eDz +asO +xcl +ass +xpa +arX +dqB +pXR +aoV +aie +pDc +aqM +aoK +kHP +pnU +oLd +jiT +oZP +sGj +mpT +aEs +apb +hgn +qWF +aoK +acI +aBd +dxs +aOh +quu +sJO +aoe +bLs +aOg +xwe +aCK +dxs +wMn +aoe +hIN +xwe +aBd +dxs +wyn +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +pfT +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +uMR +kPb +uPv +gKa +gKa +gKa +hRJ +hRJ +gKa +gKa +gKa +gKa +gKa +gKa +gKa +gKa +gKa +hRJ +hRJ +gKa +gKa +gKa +irQ +kPb +bJz +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(93,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +est +aPt +auV +arX +awa +bzb +qoH +ayd +awx +qYj +mfj +fRZ +azZ +aJh +fnU +mim +jNf +awK +byS +pqT +kGR +aww +nTH +jNC +fFe +uBF +uDE +kBr +asO +bzO +aCn +bub +jyk +ati +aCh +ath +lNE +asO +asG +erX +xpa +kaL +aAU +qpb +aoV +unN +mxb +apu +aoK +jFF +uCI +apb +apb +apb +aEz +aEv +aEt +wJv +lsl +pTC +aoK +acI +aDo +aCZ +kWL +jKW +aoe +aoe +adm +sBJ +aBF +aBk +dxs +cBd +aoe +hXu +aBF +aBg +dxs +wyn +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +qew +kIp +kIp +kIp +kIp +kIp +kIp +kIp +nzh +kPb +ksD +ayO +ayO +ayO +qXp +bck +ayO +ayO +ayO +ayO +ayO +ayO +ayO +ayO +ayO +qXp +wXC +wXC +wXC +wXC +sIi +kPb +tnV +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(94,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +ayx +arX +arX +awa +ayq +oMS +ayd +awx +fYX +kim +iMm +pGi +aNZ +awK +aNW +aNV +awK +azU +cBS +aNS +aww +lBM +xcN +mkx +fqO +mcU +auW +asO +klX +iTE +xLL +ath +aqX +aDt +ath +kwC +asO +asG +xHE +xpa +kaL +nLC +qpb +aoV +aif +ahK +apu +aoK +wnE +apc +apc +rBz +apc +lgz +cQI +efG +tYA +nwO +eVe +aoK +acI +aBd +dxs +kWL +kWL +aoe +lAW +lAW +aRT +xwe +aCK +dxs +qyb +aoe +hIN +xwe +aBh +dxs +wyn +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +yiH +bHF +vQz +unv +aUq +iGR +tnV +kDb +spn +neL +neL +neL +neL +wXC +vtq +neL +neL +neL +neL +neL +neL +neL +neL +neL +hmw +bck +ayO +ayO +ayO +qoi +kPb +xzj +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(95,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +arX +arX +awa +ayq +iND +ayh +awx +qXw +awK +aOe +aNU +aOb +aCL +gkr +uNY +ctM +oAn +oAn +kGR +aww +bfl +riL +gqw +uBF +mcU +kBr +asO +eem +aul +aul +xeH +hEA +atu +ath +cyl +asO +asH +pdl +xpa +arX +mas +pXR +aoV +jEI +dCu +ahD +aoK +xHX +kzx +uFV +aGg +apc +aRc +aoK +aoK +aoK +aoK +aoK +aoK +acI +aBd +hCK +aoe +aoe +aoe +aoe +aoe +aoe +wkm +aBd +acW +aoe +aoe +aoe +wkm +aBh +act +aoe +aoe +aoe +xfp +lmb +lpX +egr +muo +svf +sDb +sYZ +dGb +aFi +tAt +aUq +eSs +tnV +lBL +hGn +uCz +uCz +uCz +neL +vZA +vtq +neL +uCz +gZB +nzE +wfi +wfi +wfi +gZB +neL +yfT +vtq +neL +neL +neL +neL +hGn +oOz +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(96,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +arX +arX +awa +awJ +ayk +ayc +awx +eFv +qVf +jgT +gdg +aOc +cHf +eHY +bOO +oAn +mrS +xjt +aNS +aww +ulU +ajn +abS +uBF +mcU +kBr +asO +jUO +jAO +hEz +ylU +oWS +rVC +dUf +hCj +asO +asH +uZk +xpa +arX +arX +pXR +aoV +aie +ubm +apf +aoK +ubg +apc +tSs +sbO +hqM +aEA +aoK +aoe +aoe +aoe +aoe +kNc +xwe +aBh +ruu +ruu +adA +xIv +wTv +aJB +gzI +ruu +aBd +ruu +ruu +jTs +bqr +ruu +aBh +ruu +dxs +vBq +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +mrG +kzA +qGi +tnY +aUq +eSs +tnV +waP +hGn +uCz +uCz +uCz +neL +bAJ +vtq +neL +uCz +etb +lXO +hfz +vZa +mWi +uPv +gKa +qDY +vtq +neL +uCz +uCz +uCz +hGn +sKY +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(97,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +xSL +aPt +auV +arX +arX +awa +sGq +uLk +awo +awx +awK +ckz +jZp +ovX +aIR +axJ +awc +tAM +aNU +byS +xXI +qFn +aww +kYK +awd +puC +aIz +aIn +dAz +asO +sPl +yeW +etl +iwS +hYi +nKV +ati +gEA +asO +fZo +xDU +xpa +arX +dqB +aSA +aoV +uvF +ctI +aqT +aoK +iRP +njF +apc +gUn +aEG +nss +aoK +aoe +aoe +fId +xPr +aed +xwe +aDq +ruu +ruu +ruu +xIv +xIv +xIv +ruu +ruu +aBd +ruu +ruu +iBv +ruu +ruu +aBd +rxG +dxs +vBq +pXR +pXR +pXR +aob +anZ +xge +svf +sDb +aaL +dGb +qGi +tnY +aUq +eSs +tnV +waP +hGn +uCz +uCz +uCz +neL +yfT +vtq +neL +uCz +acG +lXO +mCL +izw +ebb +mHP +wXC +wXC +vtq +neL +uCz +uCz +uCz +hGn +sKY +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(98,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +ayp +arX +dqB +arX +awa +jqU +awo +awo +awx +qTQ +awK +awK +aJj +aJi +aNY +aNX +aIW +aIZ +lqS +awW +aIS +awx +tZy +awe +soU +soU +avm +kBr +asO +jVm +jre +kLU +eeI +oWS +abo +mvZ +vSb +asO +bmW +ast +xpa +kaL +aAU +qpb +aoV +kMm +aqa +aqM +aoK +ahe +aEk +aET +aEL +apb +clB +aoK +aoe +aoe +jFl +igE +aoL +xwe +aDD +aBK +aBK +aBM +aBM +aBM +aBM +aBK +aBK +aCM +aBK +aBS +aBt +aBt +aBK +aBk +rxG +dxs +vBq +pXR +pXR +pXR +aob +anZ +xge +svf +sDb +aaL +dGb +qGi +tnY +aUq +eSs +tnV +waP +hGn +uCz +uCz +uCz +neL +yfT +vtq +neL +uCz +etb +lXO +bix +xAz +czH +ksD +ayO +qXp +vtq +neL +uCz +uCz +uCz +hGn +sKY +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(99,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +yen +auV +ikK +rHq +auV +ayv +awa +aym +ayf +awx +bQS +uDz +wJI +wuV +xcx +kRP +xFT +lvW +aJa +aIW +awX +iKw +awx +xCk +leh +dyh +avC +avn +auX +asO +goX +sro +sro +orf +vNf +atv +emr +asO +asO +bBe +aBZ +xpa +kaL +nLC +qpb +aoV +arq +aoV +aoV +aoK +ooO +wvT +slo +aEN +cQI +eLU +aoK +aoe +aoe +aoe +aoe +aoe +xwe +aDq +ruu +ruu +ruu +ruu +vqi +ruu +ruu +ruu +aBh +ruu +ruu +xIv +xIv +ruu +aBd +acs +dxs +vBq +pXR +pXR +pXR +aob +anZ +xge +svf +sDb +aaL +dGb +aFi +tAt +aUq +eSs +tnV +pHs +hGn +uCz +uCz +uCz +neL +yfT +vtq +neL +uCz +gZB +nzE +wfi +wfi +wfi +gZB +neL +wXC +vtq +neL +neL +neL +neL +hGn +hxm +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(100,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +atU +arX +mas +arX +ayw +aDe +cTj +kvq +awx +awx +aww +aww +axT +aww +aww +aww +awx +awx +awx +awx +awx +awx +eNl +awf +aCD +aCB +avn +auZ +asO +asO +asO +asO +asO +asO +aHN +suf +asO +nwh +wFA +asv +aQk +arX +mas +pXR +aoM +arr +apR +ahE +aoK +aoK +aoK +apP +dzd +apP +aoK +aoK +aoK +aoK +aoK +aoK +aoK +adY +aBd +ruu +ruu +ruu +ruu +ehB +ruu +ruu +ruu +aBh +xIv +xIv +xIv +acL +ruu +aBh +xIv +dxs +vBq +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +aaL +bHF +vQz +unv +aUq +iGR +tnV +ggb +spn +neL +neL +neL +neL +yfT +vtq +neL +neL +neL +neL +neL +neL +neL +neL +neL +iPJ +kEm +gKa +gKa +gKa +irQ +kPb +bJz +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(101,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jkh +aBE +auV +arX +arX +ayw +ays +aCX +udV +aRA +qMH +awf +avP +awL +axO +awf +plP +tRc +tRc +dTd +rQO +xXM +uJN +aDU +avQ +avQ +avD +avn +ava +tSo +iID +sxA +agz +pCX +opg +aHO +agz +aCc +aNI +oMe +asv +ask +arX +arX +pXR +aoM +arr +apQ +aqV +apd +aqu +aqu +aoT +lqf +apQ +aps +aps +aeC +apd +apd +aoT +aoM +xwe +aBh +nCk +aoe +aoe +aoe +aoe +aoe +aoe +yfH +aBd +nCk +aoe +aoe +aoe +yfH +aBh +nig +aoe +aoe +aoe +acj +lmb +lpX +egr +muo +svf +pfT +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +fOG +kPb +uPv +gKa +gKa +gKa +qDY +kEm +gKa +gKa +gKa +gKa +gKa +gKa +gKa +gKa +gKa +qDY +wXC +wXC +wXC +wXC +sIi +kPb +tnV +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(102,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +arX +arX +ayw +awy +aCY +aCV +aJp +haK +aIO +aIO +oWF +axP +aIO +aIO +aIO +aIO +aIO +aIO +kzN +aIO +vwR +aPK +eNx +aId +avo +aId +aId +aId +aId +aId +aId +aHT +aCi +aHT +aCe +asP +aId +aId +aQl +aQe +aQe +aPY +aEc +aEi +aEi +aFH +aEi +xWP +aEi +aEi +aQa +aEi +xWP +aEi +aEi +aEi +aEi +aEi +aEc +aDR +aBg +dxs +aSs +tPn +aoe +qyR +wom +qOO +xwe +aCK +dxs +dDQ +aoe +mWH +acH +aBh +dxs +wyn +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +qew +kIp +kIp +kIp +kIp +kIp +kIp +kIp +vyJ +kPb +ksD +ayO +ayO +ayO +fPx +fPx +ayO +ayO +ayO +ayO +ayO +ayO +ayO +ayO +ayO +fPx +fPx +ayO +ayO +ayO +qoi +kPb +xzj +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(103,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +vrG +arX +arX +ayw +ayt +aDa +aCW +aJq +axs +aQz +aDX +awL +axQ +pZb +axs +axA +axs +jaM +awY +aCF +tQR +hoe +xAN +dlA +avE +avn +tov +bNs +oZK +ajg +eFW +lIL +qiJ +lIL +aCg +tov +lJQ +jCo +asv +ask +arX +arX +pXR +aoM +arr +arf +aoU +ape +ahf +aqw +aoU +lqf +apR +ape +aeM +aet +aet +ape +aEj +aoM +acI +aDJ +aCZ +oJl +adB +aoe +aoe +fHJ +jYk +aBF +aBk +dxs +hIN +aoe +qYq +aBL +aBn +dxs +wyn +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +aaL +bHF +vQz +unv +aUq +iGR +dYA +uNM +hGn +hGn +hGn +hGn +spn +xXV +xXV +spn +hGn +hGn +hGn +hGn +hGn +hGn +hGn +spn +xXV +xXV +spn +hGn +hGn +hGn +hGn +tCs +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(104,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +rjb +auV +arX +aQB +aQA +aDc +tBk +axv +axv +axv +axR +axU +axR +axv +axv +axv +axv +awg +awz +awM +awz +awg +awg +auC +avb +avp +avb +auC +auC +asQ +asQ +atw +atM +atw +asQ +asQ +rOz +cQM +asv +ask +arX +dqB +pXR +aoM +arr +arg +aoT +aoN +aoN +aoN +aoN +aqb +txI +aoN +aoN +aoN +aoN +aoN +aoN +aoN +xwe +aBh +dxs +aOi +wMn +iSK +aoe +adn +aJA +xwe +aCK +dxs +hIN +aoe +rJX +acI +aBd +dxs +wyn +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +aaL +dGb +aFi +tAt +aUq +eSs +tnV +ydi +lwl +lwl +lwl +lwl +bJz +coK +soB +bUA +lwl +qJd +ixD +lwl +lwl +lwl +lwl +bJz +oiA +dpb +bUA +lwl +lwl +lwl +lwl +xWv +tnV +aAt +vXY +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(105,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aKX +aPt +auV +arX +ayu +ayu +wkL +ayi +axv +iXj +cXd +fDB +aJk +bme +gsd +jZB +sTG +axv +xnq +kAE +awN +bBX +wOL +awg +ctR +drC +iSj +cCA +ldV +auC +luA +atx +atx +uTP +atx +vCD +asQ +asQ +bBe +asu +xpa +kaL +aAU +qpb +aoV +arq +aoV +aoV +aoN +nGA +agB +uEx +lNh +nvx +aeW +aeN +aoN +aeu +gQa +fZQ +aoN +xwe +aBd +hCK +aoe +aoe +aoe +aoe +aoe +aoe +aQW +aBd +hCK +aoe +aoe +aoe +acJ +aBh +acu +aoe +aoe +aoe +xsd +lmb +lpX +egr +muo +svf +sDb +aaL +dGb +aFi +tAt +aUq +eSs +tnV +tnV +tnV +aAQ +ayl +huT +tnV +raM +sDb +tnV +hCr +tnV +tnV +tnV +tnV +tnV +hCr +tnV +svf +sDb +tnV +tnV +tnV +akY +tnV +tnV +tnV +aAt +fgB +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(106,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +ayx +arX +arX +ayu +dgD +men +mCk +axv +piq +jSs +vHp +aJl +axF +uTk +rrP +wbp +axv +fbj +sJB +oCD +omm +sNn +awg +afr +avF +avq +aWx +fvV +auC +ueK +uMi +tst +cdq +qrb +jcX +bzr +asQ +bXW +ecw +xpa +kaL +nLC +qpb +aoV +aig +cjI +aqW +aoN +xMs +vur +xWf +aEO +afs +aeX +aeO +aoN +aen +aem +uGi +aoN +xwe +aCK +ruu +ruu +ruu +ruu +ruu +ado +ruu +ruu +aBd +ruu +ruu +ruu +ruu +ruu +aBh +acs +dxs +jKx +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +aaL +dGb +aFi +tAt +ouZ +lMz +iGR +oIi +aNv +hbd +sMa +fyp +dFz +xic +gBg +iGR +oIi +oIi +oIi +oIi +oIi +oIi +oIi +iGR +svf +sDb +iGR +oIi +oIi +oIi +oIi +oIi +iGR +aNE +xkN +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(107,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +arX +arX +ayu +gmm +ayn +ald +axv +nQV +aJn +aJn +aJm +aJe +aJe +mNO +jHm +axv +jCq +cIU +aIT +lfB +cDG +awg +agE +avG +aIo +avc +cJN +auC +vyD +hPW +atH +tQB +hPW +atH +pAz +asQ +mje +hra +xpa +arX +mas +pXR +aoV +wMw +ahL +apu +aoN +kjf +agC +tHU +afJ +aEH +uGi +aen +txI +aen +aEm +aeg +txI +xwe +aDn +aBK +aBM +eTX +adx +aBM +aBM +aBM +aBK +aCM +aBM +aBM +aBM +aBM +aBt +aBo +rxG +dxs +jKx +pXR +pXR +pXR +aob +anZ +xge +svf +sDb +aaL +dGb +aFi +tAt +tAt +ouZ +sxT +sxT +sxT +ejG +ejG +paZ +ejG +svf +sDb +sxT +sxT +sxT +sxT +sxT +sxT +sxT +sxT +sxT +svf +sDb +sxT +sxT +sxT +sxT +sxT +sxT +unv +hva +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(108,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +auV +arX +arX +ayu +lQK +ayi +gkl +axv +fsF +kYQ +ohR +tSU +dxJ +axD +aJc +lvn +axv +lcR +taX +oCD +rdF +iDl +awg +rie +avH +avq +pxd +ohP +auC +vyD +aJL +atH +aHU +hPW +atH +eNT +asQ +dqN +asr +xpa +arX +arX +pXR +aoV +ufj +ahM +apu +aoN +ahg +sjh +oaS +aqd +afu +aEq +aEw +nKY +aEq +aEn +aeh +nKY +aDW +aDO +rxG +rxG +lZR +xqd +adt +xqd +xqd +xqd +aCK +rxG +xqd +bSV +acM +rxG +rxG +ruu +dxs +jKx +pXR +pXR +pXR +aob +anZ +xge +svf +sDb +aaL +dGb +xQF +hmq +tAt +tAt +unv +tAt +tnY +tnY +tnY +tAt +unv +svf +sDb +unv +tAt +tAt +tnY +tnY +tnY +tAt +tAt +unv +svf +sDb +unv +tAt +wJw +wJw +wvA +gtO +unv +nYS +vse +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(109,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +vrG +arX +arX +ayu +eEy +ayi +jEz +axv +tAW +wJJ +axX +tny +goP +axD +axE +axB +axv +jxL +ojb +awN +hSk +fhi +awg +wQV +ekD +aIp +gzG +oyg +auC +aRr +hPW +atH +aHU +hPW +atH +pAz +asQ +qLB +nDR +xpa +arX +arX +pXR +aoV +aih +ahO +apO +aoN +ahh +syS +lKg +afK +aft +uGi +aen +txI +uGi +uGi +aei +txI +piC +aCl +mHF +mHF +mHF +ady +adu +sgE +sgE +acv +aCN +mHF +mHF +mHF +mHF +mHF +acv +acv +rPK +jKx +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +aRN +aRJ +aRG +xQF +gtO +gtO +unv +gtO +rMe +rMe +rMe +gtO +gWW +svf +sDb +gWW +gtO +gtO +rMe +rMe +rMe +gtO +gtO +gWW +svf +sDb +gWW +gtO +aNF +aNF +iOv +rSH +dKk +dGb +aIN +xQA +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(110,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +dQB +auV +aSL +awa +ayf +ayf +ayf +axv +rOj +eKs +fzF +xPH +goP +axD +aJc +axC +axv +axm +awA +awO +awA +awg +awg +auC +avb +avr +avb +auP +auC +pSu +hPW +atH +lzZ +hPW +atH +pAz +asQ +cqb +fXd +xpa +arX +dqB +pXR +aoV +apw +kfq +bwB +aoN +heN +agD +fjp +aqc +roQ +aei +aeP +aoN +rvc +raz +nnl +aoN +wyn +aCx +acA +aoe +aoe +aoe +aoe +aoe +aoe +acA +aCP +wyn +aoe +aoe +aoe +acA +aJy +oZC +aoe +aoe +aoe +acj +lmb +lpX +egr +muo +svf +sDb +aRO +aRK +aRH +aKG +nCP +nCP +nCP +nCP +nCP +nCP +nCP +nCP +jZh +svf +sDb +jZh +nCP +nCP +nCP +nCP +nCP +nCP +nCP +aaL +svf +sDb +aaL +nCP +nCP +nCP +nCP +dKk +dKk +dKk +lyk +vQz +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(111,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +est +aPt +auV +arX +jJV +ayc +geg +iSN +thj +hch +pCO +axF +qko +goP +axD +aJd +axB +axR +vOX +dKb +aIU +awB +kWl +awh +sfQ +avs +aIq +sxo +ggR +auD +kmc +mhX +qlg +oqP +pRa +bFf +rbG +asQ +kDS +dJv +xpa +aSE +aAU +qpb +aoV +ahZ +apH +aqa +aoN +ahi +eKW +suG +rfX +xwz +aeR +aeQ +aoN +qqT +kQv +cyb +aoN +adZ +aCE +adM +aoe +fGZ +vHk +tUe +pnK +aoe +acU +aCQ +gPJ +nAu +aoe +oSX +ruu +acC +ruu +dDK +aoe +pXR +pXR +lmb +lpX +egr +muo +svf +sDb +aRP +aRL +aRI +aRE +aKk +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +svf +sDb +aaL +aaL +aaL +aaL +anu +aaL +aaL +aaL +aaL +svf +sDb +aaL +aaL +aaL +aaL +aaL +aaL +aaL +dKk +dGb +vQz +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(112,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +ayx +arX +arX +jJV +awo +aWs +pSt +thj +jhL +axD +wjT +vQI +goP +gaX +vEV +aJb +axu +ris +hvz +buZ +awC +qfh +ilH +aIJ +lfy +rsA +euK +tqV +auD +oCj +tGf +tGf +aHV +tGf +tGf +vqa +asQ +bBe +xpa +xpa +kaL +nLC +qpb +aoV +aoV +aoV +aqM +aoN +aoN +aoN +aoN +aoN +aoN +aoN +aoN +aoN +tAA +tAA +tAA +aoN +aRb +aDj +adN +aoe +oPF +oMf +ffp +pee +aoe +aRS +aCS +dxs +dEI +aoe +aoe +eIp +aoe +aoe +aoe +aoe +pXR +pXR +cBW +lpX +egr +muo +svf +pfT +jNQ +jNQ +jNQ +aRF +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +qlq +vhR +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +jNQ +qlq +vhR +jNQ +jNQ +jNQ +jNQ +jNQ +hEg +aaL +dKk +qve +vQz +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(113,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +iwj +atU +arX +arX +cpq +awa +awa +uRL +axv +tlC +jVQ +axY +hVq +goP +axD +qTJ +txw +axv +fTX +lPj +hrQ +uEa +ftU +awh +avR +avI +avt +avd +pYP +auD +rJV +jtG +ahG +aHW +pjr +edY +tkK +asQ +xpa +aKp +aKq +arX +mas +pXR +aKj +aKd +aoV +aqM +aqM +ahj +agF +aeK +afL +afv +afa +apt +ael +apf +apf +aoV +aoN +acI +aDj +dxs +aoe +aoe +vkz +pSy +iMM +aoe +wTv +ruu +mVL +aZK +aoe +ioj +ihW +jOz +aog +aKd +aKc +pXR +lmb +aBw +pYk +aDV +muo +vKt +kIp +kIp +kIp +kIp +nDy +eJs +qew +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +nDy +qew +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +kIp +nDy +sDb +aaL +dGb +mYH +oog +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(114,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wsJ +teI +atU +arX +arX +cpq +awa +awa +axv +tmJ +ayb +ygh +axV +goP +axF +axF +cSR +axv +aQy +jOr +aoY +lRL +mck +awi +itV +avu +avu +ilX +tNH +auD +cSs +aty +rhh +aHX +aty +ooG +asR +asR +xpa +aKq +arX +arX +arX +pXR +pXR +aKj +aoV +aoV +aoV +ahk +apF +agh +afM +afw +xep +apu +aeD +cjI +cjI +aoS +aEg +aBK +aBk +rxG +gPJ +aWB +rBp +qqV +nvw +aoe +aoe +aop +aoe +aoe +aoe +woE +aog +aog +aog +aKc +pXR +pXR +cBW +uxK +unv +kGt +muo +aaL +aaL +aaL +aaL +aTq +eJs +eJs +sDb +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +eJs +sDb +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +aaL +eJs +sDb +aaL +dGb +eWH +tAt +tAt +kVD +wvu +dvZ +dvZ +dvZ +dvZ +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(115,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +wsJ +teI +atU +afG +arX +cpq +aYj +axv +wwG +axZ +axZ +kUH +goP +vVY +ppl +nCu +axv +aRz +sSx +eqd +uIC +iUh +awi +rXp +bGd +iZl +scs +lnb +auD +jeV +uFs +uFs +uFs +keT +hxl +asR +aKp +aKq +arX +dqB +dqB +dqB +sga +sga +pXR +aKj +aKd +aoV +ahl +agG +agi +apH +apH +apH +apw +aeE +aeo +aeo +aoV +piC +acv +aCl +acv +rPK +aoe +oif +jVM +hmK +xqZ +oxh +aoq +vyv +wvz +hLv +odU +aog +aKd +aKc +pXR +pXR +cBW +aod +pYk +jdA +rSH +dKk +kNL +kNL +dKk +dKk +aaL +kJF +erU +sDb +aaL +dKk +kNL +kNL +kNL +kNL +aJU +kNL +dKk +dKk +aaL +kJF +xlA +aaL +dKk +dKk +kNL +kNL +kNL +aJU +kNL +kNL +dKk +aaL +kJF +xlA +aaL +dGb +vQz +tAt +kVD +wvu +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(116,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +pSe +akQ +atU +arX +arX +cpq +axv +axv +axH +axH +axH +axH +axH +axH +axv +axv +awp +awD +awD +awD +awp +auE +auE +auE +auE +auE +auE +auE +asR +sdh +sdh +sdh +sdh +asR +asR +aKq +arX +asx +acl +acN +eyY +eyY +aFd +wfq +pXR +aKj +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +aoV +adH +adH +aPm +adH +adH +aoe +aog +aog +aog +aog +aog +aog +aog +aog +aog +aog +aog +aKc +onz +pXR +cBW +aod +pYk +pYk +aoc +aKT +anY +anW +box +arx +dKk +aaL +vlf +teC +wso +aaL +dGb +acE +byt +ayK +ayK +oFu +aBT +uGE +dKk +aaL +lOG +acP +aaL +dKk +dGb +ayz +byt +ayK +ayK +oFu +aBT +uGE +aaL +lOG +acP +aaL +dGb +vQz +tAt +pPG +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(117,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aHJ +jjB +teI +atU +arX +arX +aSG +arX +arX +arX +arX +arX +arX +arX +arX +aSG +arX +arX +arX +arX +arX +arX +arX +aSG +arX +arX +arX +arX +arX +arX +arX +arX +arX +arX +aSG +arX +kaL +nWn +alj +rlx +kVD +kVD +wsJ +dQB +qpb +pXR +pXR +aSp +pXR +pXR +pXR +pXR +pXR +pXR +aSV +aSU +aPY +aPY +aPY +aPY +aPn +aPY +alg +pXR +pXR +aSp +pXR +pXR +kVD +pXR +pXR +njj +pXR +aSp +pXR +pXR +pXR +vTC +aod +pYk +pYk +anV +krp +tJO +dGw +anV +nwM +box +uGE +aaL +eJs +eJs +eJs +aaL +aTO +aTp +edv +gtO +gtO +peE +aTp +adG +dKk +aaL +aER +aER +aaL +aaL +aTp +aTp +edv +gtO +gtO +peE +aTp +aTp +aaL +aER +aER +aaL +aTp +aTp +wvu +tHP +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(118,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jja +nPk +tAt +wsJ +teI +atU +dqB +arX +arX +arX +arX +dqB +dqB +arX +arX +arX +arX +dqB +dqB +arX +arX +arX +arX +dqB +dqB +arX +arX +arX +iAf +dqB +dqB +arX +arX +arX +arX +dqB +dqB +asx +sFW +rkG +eae +kVD +kVD +kVD +iwj +wfq +sga +sga +pXR +pXR +pXR +pXR +sga +sga +pXR +aPl +pXR +pXR +sga +sga +pXR +aPo +pXR +aPl +sga +sga +pXR +pXR +pXR +njj +njj +njj +njj +njj +pXR +pXR +pXR +pXR +aci +gAU +gAU +gAU +xfF +cBo +ceK +xse +dGw +anV +xeX +uGE +aaL +eJs +eJs +eJs +alW +aER +amJ +isl +isl +isl +isl +isl +isl +isl +fsg +fsg +fsg +fsg +isl +isl +isl +isl +isl +isl +isl +isl +isl +tbP +tbP +tbP +tbP +isl +isl +isl +isl +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(119,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jja +vtP +tAt +kVD +tAt +wsJ +eyY +aBE +dqB +dqB +arX +asx +doN +cOF +vrG +arX +arX +kaL +doN +aAg +vrG +arX +arX +asx +doN +cOF +auV +arX +arX +kaL +alx +azV +atU +dqB +dqB +asx +acl +acN +acN +gST +aBJ +rkG +eae +kVD +kVD +wsJ +eyY +eyY +aFd +wfq +sga +sga +vTC +xQv +eeg +wfq +aSX +sga +vTC +xQv +asw +aPr +aPp +sga +aBb +xQv +eeg +wfq +sga +sga +sga +njj +kVD +kVD +sga +sga +vTC +anY +anY +msd +msd +msd +gpL +mYL +ceK +rsO +djE +ceK +dGw +tuZ +dKk +aaL +eJs +eJs +alW +qYP +fsg +uBL +amJ +njP +amI +amJ +amJ +amJ +anI +amP +anA +anA +amP +amI +amJ +amJ +amJ +amI +qLp +ncn +qLp +isl +eRW +paD +paD +rtA +qLp +qLp +lum +dmH +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(120,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +wsJ +eyY +awq +awq +awq +tAt +wsJ +eyY +awq +awq +awq +tAt +wsJ +eyY +tAt +tAt +tAt +tAt +wsJ +alI +pYk +pYk +pYk +aly +wsJ +eyY +eyY +eyY +eyY +hLp +kVD +kVD +kVD +eae +aBJ +rkG +eae +kVD +kVD +kVD +kVD +wsJ +eyY +eyY +eyY +eyY +hLp +wsJ +eyY +acD +eyY +eyY +hLp +xwC +eyY +eyY +eyY +acD +hLp +wsJ +eyY +eyY +eyY +eyY +eyY +tAt +tAt +eyY +aZm +azG +uuH +elg +elg +elg +elg +xec +dpN +ceK +mdr +pks +alK +dpN +emG +dKk +aaL +aaL +alW +aER +fsg +uBL +amS +anO +amP +amP +aJX +abe +amP +amP +amP +anE +anB +amP +amP +amP +abe +amP +njP +dmH +fjK +aaW +lum +rtA +vnG +aYS +rtA +mJI +aaF +aay +lum +dmH +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(121,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +awq +awq +awq +kVD +kVD +kVD +awq +awq +awq +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +wJw +pYk +pYk +pYk +wJw +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +kVD +eae +aBJ +rkG +eae +kVD +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +hAv +kVD +kVD +kVD +hAv +kVD +kVD +kVD +hAv +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +mGE +azG +azG +pBj +pBj +pBj +pBj +pBj +wWR +fCH +aoa +jKB +pLT +rKE +mXs +amd +kNL +aTP +qYP +fsg +uBL +gVD +sbs +amR +amR +amR +amR +amR +amR +amR +amR +ewN +abg +abh +abh +abh +ryb +amP +amJ +dmH +qLp +rtA +aax +aax +ycQ +rxa +aax +mJI +aai +aai +mJI +mJI +dmH +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(122,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +awq +awq +awq +kVD +tAt +kVD +awq +awq +awq +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wJw +pYk +pYk +pYk +wJw +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +eae +aBJ +rkG +eae +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aCs +tAt +tAt +tAt +aCs +tAt +tAt +tAt +aCs +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +aGR +ayD +aCk +njj +tAt +tAt +tAt +tAt +tAt +oPE +aTR +tAA +tAA +aTQ +ipE +ada +feA +feA +aTp +amJ +uBL +amS +wcs +abQ +amT +amT +abk +abk +abk +amT +amT +amT +abk +abk +abk +abk +abi +amW +amP +amK +dmH +lum +aax +kkC +bZW +pEQ +rxa +aax +qLp +qLp +aaz +dLA +dLA +mJI +dmH +dmH +aac +tYo +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(123,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +awq +awq +awq +kVD +tAt +kVD +awq +awq +awq +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wJw +pYk +pYk +pYk +wJw +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +kVD +eae +aBJ +rkG +eae +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aCs +tAt +tAt +tAt +aCs +tAt +tAt +tAt +aCs +tAt +tAt +tAt +tAt +azA +tAt +tAt +kVD +aGR +ayD +aDL +acb +kVD +kVD +kVD +kVD +kVD +tAt +njj +oPE +pBj +pBj +ipE +njj +tAt +tAt +kVD +tAt +isl +amJ +anU +anS +abf +amP +aKR +amP +amP +amQ +amP +amP +amP +amP +amP +amP +amP +amS +amW +amQ +amL +dmH +lum +rtA +ycQ +mVE +tKh +raw +rtA +qLp +aTM +mJI +mJI +aal +mJI +oVG +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(124,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +awq +awq +awq +kVD +tAt +kVD +awq +awq +awq +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +wJw +pYk +pYk +pYk +wJw +kVD +jOx +aTm +aTm +aTm +azW +tAt +tAt +kVD +tAt +tAt +tAt +kVD +eae +aBJ +rkG +eae +kVD +tAt +tAt +tAt +tAt +tAt +aST +xVl +aSP +xVl +xVl +xVl +aSP +xVl +xVl +xVl +aSP +xVl +pTo +tAt +tAt +tAt +tAt +kVD +aGR +ayD +aDL +acb +kVD +tAt +tAt +tAt +tAt +tAt +kVD +tAt +njj +njj +njj +njj +tAt +kVD +kVD +tAt +aLc +isl +fyn +amP +ane +abf +anm +anm +anm +anF +anK +uID +anJ +anm +anm +anm +anm +aAo +amZ +abf +abb +amJ +dmH +qLp +aaX +ycQ +rxa +rtA +aaR +rtA +aaK +aaG +afm +afk +aam +aai +rtA +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(125,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +awq +awq +awq +kVD +kVD +kVD +awq +awq +awq +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +wJw +pYk +pYk +pYk +wJw +kVD +ack +gib +qJU +tWd +asD +tCu +phQ +tAt +kVD +tAt +tAt +tAt +kVD +eae +aBJ +rkG +eae +kVD +tAt +tAt +tAt +uLc +xVl +aol +aPx +aPd +aol +aPd +aPx +aPd +aol +aPd +aPx +aol +xVl +pTo +tAt +kVD +kVD +aGR +ayD +aDL +acb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +qAG +che +amI +amP +ane +amW +anm +anm +anJ +anJ +anF +anK +anm +anm +anm +anm +anm +anm +aQT +amW +amQ +gIk +dmH +jaN +aax +aha +agZ +afF +agx +aaM +aeq +afE +wTU +azh +aan +aQC +rtA +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(126,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qCg +cOk +aTm +rXJ +ljU +sPx +aLk +aLk +aLk +rXJ +ljU +sPx +hjT +hjT +aLk +keN +ljU +alA +aLk +aTm +keN +kdC +ljU +ljU +alA +aTm +aMW +hCk +alo +qYF +aCd +xwh +adb +phQ +tAt +kVD +tAt +tAt +tAt +kVD +eae +aBJ +rkG +eae +kVD +kVD +pPG +tHP +aol +aol +aPC +aov +aov +fHE +aOQ +fHE +aov +aov +aPg +aol +aol +tHP +ipH +eae +abz +ayD +aDL +acb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +che +amI +amP +ane +amW +anm +aJu +amP +amP +amP +amP +amP +anG +amQ +amP +amP +amP +ana +amW +amP +amK +dmH +lum +aax +ahb +rxa +rtA +dmH +dmH +xcn +lum +mKY +aau +aao +aQC +kyA +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(127,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +qCg +cOk +cvj +hCk +hCk +alX +alR +alS +hCk +pIh +hCk +alX +alR +alS +hCk +pIh +hCk +alX +alR +alS +hCk +alN +alB +uxt +alH +rWd +alB +wxd +hCk +pIh +alo +alt +qJU +tWd +aCd +adb +phQ +tAt +kVD +tAt +tAt +tAt +kVD +eae +aBJ +rkG +eae +uGW +oor +aol +aol +aor +tQL +aPj +aPj +aPs +aDl +aPs +aPj +aPj +aPe +aor +aol +aol +oor +gIh +ayD +aDL +acb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +fzy +isl +amI +amP +ane +anR +amR +aAH +aAr +aAr +aAr +aAr +aAr +aAr +aAr +aAr +aAr +aAr +anb +abf +aJX +amJ +dmH +qLp +aax +ahp +alc +dmH +dmH +rWE +iKJ +fiQ +afo +aTJ +qLp +qbt +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(128,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +qCg +aqU +hTU +hCk +hCk +pIh +ame +alY +alF +alT +alR +alZ +alR +alY +alF +alT +alR +alR +alZ +alY +alF +alT +alR +alO +aDQ +alE +aDQ +alE +alC +alt +wmM +xri +alo +alo +alo +alt +tWd +aCd +xwh +aqG +azW +kVD +tAt +tAt +tAt +kVD +eae +aBJ +jgp +oor +aol +aol +uaB +jkm +aPB +aox +aox +aov +aBq +aov +aox +aox +aPf +jkm +jkm +aol +aGK +oor +aDf +acb +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +isl +amI +amP +oQh +abk +abk +abk +abk +amT +amT +amT +amT +amT +amT +amT +amT +amT +anc +abg +amR +jyl +aaZ +jMs +bZW +ahq +rxa +dmH +doP +lum +aQI +qLV +afC +cyG +qLp +mJI +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(129,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +qCg +okS +amu +ams +amo +aml +ami +amf +alF +alF +alF +alF +alF +amb +amb +amb +alF +alF +alF +alF +alF +alF +alF +alF +alF +alF +alF +alF +wEn +cMc +cMc +cMc +cMc +cMc +tag +alo +alo +alt +qJU +qJU +tWd +cYW +kVD +tAt +fHK +tAt +kVD +eae +uGW +oor +aGK +aol +aDr +aDr +aor +aPC +aov +aoC +aov +fOf +aow +aow +aov +aPg +aor +aor +aGL +aoO +aGH +oor +gIh +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +isl +amI +amP +amP +amP +aKS +amP +aJX +aKP +anM +amJ +amP +amP +amP +amP +amQ +amQ +and +azB +azB +azt +azk +akZ +akV +ahr +rxa +dmH +maa +tOG +rOk +xnz +afC +eYA +qLp +aaj +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(130,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +qCg +okS +tHw +amf +amp +amp +amg +amg +amg +alF +wyg +alF +alF +wyg +alF +amb +alF +wyg +alF +alF +wyg +alF +alF +alF +wyg +alF +alF +wyg +alF +fOq +uDI +uDI +uDI +uDI +uDI +rDh +alo +alo +alo +alo +bIp +qYF +aAb +azW +kVD +asq +tAt +kVD +uGW +oor +aGX +aoO +afN +jkm +jkm +jkm +aPD +aok +pyn +nUy +nUy +aea +adV +aok +aPh +jkm +uaB +jkm +abP +aol +aol +oor +ipH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +isl +amI +anF +anJ +anJ +anJ +anK +anK +amJ +amJ +amJ +cBU +aJY +anF +amK +anv +amQ +ane +amS +amS +jyl +aaZ +jMs +rVR +akF +rxa +dmH +vwS +ftt +lum +aaH +afC +iUw +qLp +aai +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(131,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +qCg +okS +tHw +amf +uUq +amm +amm +amm +rgX +amg +lCQ +aLX +aLX +aLX +aLX +cPt +alF +lCQ +aLX +aLX +aLX +aLX +cPt +alF +lCQ +aLX +aLX +aLX +aLX +cPt +cHd +lwr +lwr +lwr +lwr +lwr +qWS +alo +alo +alo +sxP +jwI +lGk +egI +cYW +qdL +asq +tAt +pPG +oor +aol +aol +aGW +lQa +aJD +afb +aor +aPD +aev +fZg +aoO +aoO +pBA +tQj +adP +aPh +adC +aor +aDh +lQa +amH +aol +aol +tHP +pTo +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +isl +amI +anF +amP +amP +amP +anK +anK +amJ +amK +amK +anK +anH +anF +amP +amK +amP +oQh +amT +amT +jyl +aaZ +jMs +vXG +akG +rxa +dmH +lVg +lum +lum +qLV +aaA +cyG +qLp +aQD +aaf +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(132,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +qCg +okS +tHw +amf +amg +amv +dwM +dwM +whg +mCt +amg +cCN +alJ +aOs +alJ +fqT +dCs +alF +cCN +alJ +alJ +alJ +iYF +dCs +alF +cCN +aOo +aJP +alJ +uJp +saO +alF +alo +bVN +mDn +mDn +mDn +mDn +xRd +hCk +hCk +hCk +qCx +xaS +qYF +cYW +asq +asq +uLc +tHP +aol +aol +lQa +aor +lQa +aor +nTB +jkm +aeF +dNo +fZg +fMs +aoO +dHH +tQj +adQ +aPh +jkm +abP +aor +lQa +aor +lQa +aol +aol +xVl +pTo +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +njj +njj +njj +kVD +tAt +tAt +tAt +tAt +tAt +isl +amI +anP +abU +amP +anP +amU +anF +anF +anF +anF +anK +abt +aKN +amP +abm +uiq +uiq +uiq +amU +amJ +dmH +qLp +rtA +akH +alc +dmH +dmH +ezm +cnG +emH +afl +aTK +qLp +qbt +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(133,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qCg +lUr +tHw +aJT +amy +amx +amv +sjP +amq +tat +gPw +amg +cCN +alJ +aOt +alJ +vCp +dCs +alF +cCN +alJ +alJ +alJ +alJ +dCs +alF +cCN +aJP +uvu +alJ +cBG +dCs +alG +lnF +aJx +hjX +hjX +hjX +hjX +dmK +alv +uAA +hCk +hzy +alo +qYF +asq +asq +uLc +xVl +aol +aol +aor +lQa +aor +lQa +aor +lQa +aPa +aeF +adQ +apg +mQE +aee +jGz +dOx +aTG +aPh +aPa +lQa +aor +lQa +aor +lQa +aor +aol +aol +bxd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +xSL +rBQ +rBQ +rBQ +rBQ +rBQ +teT +tAt +tAt +tAt +tAt +isl +anI +aJv +anm +amP +anm +amI +qfK +amI +qfK +amI +qfK +amI +anm +amP +anm +amI +amI +amI +amI +amI +dmH +lum +rtA +akJ +rxa +rtA +dmH +hCD +bjV +aQH +mKY +aav +aap +aQC +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(134,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aCr +tHw +vbI +amg +amy +amy +amv +eQZ +dwn +tat +mCt +amg +cCN +alJ +aOu +alJ +wcW +dCs +alF +cCN +alJ +alJ +alJ +alJ +dCs +alF +cCN +alJ +fAj +alJ +uqN +dCs +alG +bPK +aJx +hjX +hjX +hjX +hjX +aXw +alv +uAA +hCk +jwI +alp +qYF +asq +asq +xVl +aol +aol +mgM +mgM +mgM +aPJ +aOW +aOW +aOW +aPb +tKR +aOM +aOM +lux +aOM +lux +aOM +aOO +eOZ +aPb +aOW +adv +aOW +aOP +mgM +mgM +mgM +aol +nyA +gxP +gxP +gxP +gxP +gxP +gxP +gxP +vVu +gCx +rYJ +rYJ +rYJ +atG +kIv +gxP +gxP +gxP +gxP +isl +isl +isl +isl +che +isl +isl +wus +isl +afR +isl +wus +isl +isl +che +isl +isl +isl +isl +isl +isl +dmH +mJI +rtA +akJ +rxa +rtA +dmH +aaN +aJV +lum +mKY +rtA +aan +aQC +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(135,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +uEk +dgG +amh +amg +amy +amy +amv +eQZ +dwn +tat +mCt +amg +cCN +alJ +qAW +alJ +jPC +dCs +alF +cCN +alJ +alJ +alJ +alJ +dCs +alF +cCN +alJ +pzy +alJ +yfR +dCs +alG +bPK +aJx +hjX +hjX +hjX +hjX +aXw +alv +uAA +hCk +jwI +alo +uvN +asD +asq +asq +asq +aoi +aoi +aoi +nVE +aqj +aow +aov +aov +aow +aow +aov +aov +oFY +aqt +oFY +aSu +aoC +aow +aow +aDk +aov +aov +aOQ +adf +aoi +aoi +jZU +rYJ +rYJ +rYJ +rYJ +rYJ +rYJ +rYJ +rYJ +rYJ +kbl +kbl +kbl +kbl +wza +rYJ +rYJ +rYJ +rYJ +rYJ +fLD +anQ +anf +amz +amB +isl +lvD +anL +abc +ahN +abx +anL +abc +aTT +amB +amz +abl +abc +amX +abc +aba +amz +mJI +rtA +akL +agZ +afF +agY +agb +aQJ +afF +afD +aDC +aan +mJI +oVG +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(136,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +stz +uIh +dgG +amh +amy +amy +amv +qrw +rGV +tat +gPw +amg +cCN +alJ +xdL +alJ +aOq +dCs +alF +cCN +alJ +alJ +alJ +alJ +dCs +alF +cCN +alJ +omW +alJ +dzN +dCs +alG +bPK +aJx +oeN +hjX +hjX +hjX +dmK +alv +uAA +hCk +asq +alq +hVb +aCw +arh +aqN +aqY +aok +aok +pyn +aRh +aqk +uHG +aox +lVH +aox +aox +aox +aox +iMj +aox +iMj +aox +aox +aox +aox +anz +aox +rMH +aOR +aQX +aos +aok +bLP +jZU +wza +wza +wza +wza +wza +wza +wza +aeT +abG +qOc +aBy +sVT +jYP +wza +wza +wza +wza +wza +fLD +anQ +anQ +abV +lUM +pmX +anf +anw +anf +amB +amB +amB +amB +amB +anf +abn +amB +anf +amB +amA +amM +amz +lum +rtA +akJ +rxa +aaT +mJI +mJI +qLp +aTN +mJI +mJI +aaq +mJI +rtA +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(137,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +stz +uIh +dgG +amh +amg +amv +wvv +wvv +aeY +mCt +amg +cCN +alJ +hMF +alJ +aOr +dCs +alF +cCN +alJ +alJ +alJ +alJ +dCs +alF +cCN +alJ +des +alJ +oAy +dCs +alF +alo +fst +asq +bOJ +bOJ +bOJ +icY +hCk +hCk +hCk +qCx +alr +hVb +hVb +arG +aqN +aoj +aoj +aoj +hNl +aoo +aOS +aox +lVH +tdh +aox +aox +bOE +aoB +ykj +aoB +ykj +aoB +hTQ +aox +aox +tdh +anz +aox +aOS +aoo +rjp +aoj +aoj +aoj +jZU +wza +kbl +kbl +kbl +aGl +wza +wza +rYJ +rYJ +rYJ +rYJ +wza +wza +wza +kbl +kbl +kbl +fLD +anQ +anQ +anQ +lUM +uTb +amC +amC +amC +amC +amC +amC +amC +amC +amC +amC +amC +ang +amB +abd +amz +amz +dmH +aaX +ahp +rxa +rtA +rtA +rtA +qLp +qLp +aaB +aaw +aar +aak +rtA +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(138,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +stz +uIh +dgG +amh +amw +aJS +amn +amn +muz +amg +hQl +qWZ +qWZ +qWZ +qWZ +fUY +alF +hQl +qWZ +qWZ +qWZ +qWZ +fUY +alF +hQl +qWZ +qWZ +qWZ +qWZ +fUY +mAz +cMc +cMc +asq +asq +cMc +tag +alw +alo +alo +jwI +als +hVb +tav +hVb +arG +aqN +asq +dSX +ahu +aoo +aoo +aOS +lVH +tdh +ijN +aox +aeG +aew +aLi +ykR +ykR +ykR +aLi +aoB +hTQ +aox +qjn +tdh +anz +axt +aoo +aoo +acX +fHE +fHE +aoh +aoh +kcW +aFA +acp +azl +acF +acF +acF +acF +acF +acF +acF +acF +mNQ +dRz +aBC +acm +amG +amG +aca +amN +amB +lPf +aAL +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAA +aAu +anh +amB +amA +amN +amz +rtA +rbL +ahq +nTP +bZW +bZW +bZW +acd +rYp +fKh +aax +mJI +aai +kyA +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(139,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +stz +uIh +dgG +amh +amp +amp +amg +amg +amg +alF +wyg +alF +alF +wyg +alF +aTU +alF +wyg +alF +alF +wyg +alF +alF +alF +wyg +alF +alF +wyg +alF +fOq +uDI +asq +asq +asq +uDI +rDh +alo +alo +alo +jwI +jwI +arH +arH +ars +arh +aqN +aoi +aoi +aoi +aoi +nVE +aOS +afO +tdh +mRq +bOE +aew +aLi +aLi +qjH +pNy +mBO +aLi +aLi +aoB +hTQ +mRq +tdh +adq +aOR +mab +acY +acY +aoi +aoi +aoi +jZU +rYJ +rYJ +rYJ +wza +wza +wza +kbl +kbl +kbl +kbl +wza +wza +wza +rYJ +rYJ +rYJ +fLD +anQ +anQ +anQ +lUM +lvX +aAT +fNX +amB +amB +amB +amB +anf +anf +amB +amB +ano +anh +amB +amA +amN +amz +rtA +xax +akM +vXG +vXG +vXG +vXG +vKk +mVE +pTA +aax +mJI +aQC +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(140,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kYL +stz +uIh +dgG +amt +amr +amk +amk +amh +alF +alF +alF +alF +alF +amb +amb +amb +alF +alF +alF +alF +alF +alF +alF +alF +alP +alF +alF +alF +cHd +lwr +lwr +aCw +asq +lwr +qWS +alo +alo +hVb +jwI +ari +ari +ari +asq +asq +mKr +aPR +aOM +aOO +aOM +agH +aPL +qjn +tdh +anz +aoB +aLi +aLi +aep +pnA +fMN +igm +vlF +aLi +aLi +dBo +lVH +tdh +ijN +aOT +aou +aOO +aOO +aOM +aOH +aOG +aOF +aOA +aOA +aOA +aOA +aOA +aOE +noO +xqG +xqG +jFb +aOB +aOA +aOA +aOA +aOA +aOA +aOz +aOx +aOx +aOx +aOy +aOx +aOw +anf +abH +abB +swb +abv +swb +swb +mTJ +anw +anp +anh +amB +amA +amN +amz +rtA +aXg +akO +aQN +aQL +aaS +aQK +xax +urW +rtA +aax +mJI +aQC +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(141,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +stz +pqC +fMt +hCk +hCk +pIh +axf +xFU +alF +fmC +pOU +iLC +ama +xFU +alF +fmC +pOU +amc +amc +tpr +alF +fmC +pOU +iLC +asq +xFU +alF +fmC +cYO +hVb +ars +asq +asq +ars +jME +dyT +arH +ars +ari +ari +arZ +asq +asq +aor +aOI +aoj +aoj +aoj +agI +aOS +tDi +qjn +tdh +aoB +ykR +xsM +wiY +btr +jku +btr +dsG +xsM +ykR +adD +tdh +ijN +woT +aOR +rjp +aoj +aoj +aoj +aOI +aoj +jZU +kbl +kbl +kbl +wza +wza +wza +rYJ +rYJ +rYJ +rYJ +wza +wza +wza +kbl +kbl +kbl +fLD +anQ +anQ +anQ +lUM +oUN +aAT +abL +abI +abC +jfH +jfH +jfH +jfH +oHj +anf +anp +anh +amB +aQS +amz +amz +dmH +aQQ +akO +dmH +dmH +dmH +dmH +aXg +rxa +rtA +qLp +mJI +aQC +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(142,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +stz +pnH +fon +hCk +hCk +thk +gsI +ikM +hCk +pIh +hCk +orR +amc +aCG +arT +aru +aru +aOm +asq +ikM +hCk +pIh +hCk +asq +ars +arH +arH +arH +ars +ars +asq +arv +ari +snv +arT +ari +arv +ari +ars +asq +lQd +aor +aPS +aSx +aoo +aoo +aoo +aDs +mRq +mRq +tdh +aoB +ykR +udW +gim +khB +jku +khB +yjv +ddq +ykR +adE +tdh +mRq +mRq +ntv +aoo +aoo +aoo +aON +aOJ +aoh +aoh +kcW +aFA +acp +azl +acF +acF +acF +acF +acF +acF +acF +acF +mNQ +dRz +aBC +acm +amG +amG +anf +amN +anf +lPf +aAT +anf +jzN +anl +vDZ +vTJ +qXW +anl +aKM +anf +anp +anh +amB +amA +amN +amz +rtA +aXg +akO +dmH +huy +evZ +dmH +aXg +rxa +aaC +qLp +mJI +mJI +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(143,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +pnH +aSJ +ljU +alL +pnH +qZs +qZs +qcI +sNg +diS +arH +arH +ars +ars +asq +asq +pYe +pYe +pYe +asq +ars +ari +ari +ari +ari +ari +mQa +ari +arT +ari +ari +ari +ari +ari +ari +ars +kqq +bvx +aqY +aoi +acY +acY +agJ +aOR +kBh +lVH +tdh +aoB +ykR +afn +wEe +kVs +jku +kVs +unM +afn +ykR +adE +tdh +anz +oFm +aOR +mab +aoi +aoi +aoi +aOK +aoi +jZU +rYJ +rYJ +rYJ +wza +wza +wza +kbl +kbl +kbl +kbl +wza +wza +wza +rYJ +rYJ +rYJ +fLD +anQ +anQ +anQ +lUM +lvX +aAY +aHv +jzN +anl +grQ +swz +luN +anl +jhJ +amB +anp +anh +amB +amA +amN +amz +rtA +aXg +akO +wtv +huy +huy +oWq +aXg +aaI +qLp +qLp +aat +mJI +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(144,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +asq +asq +ars +ars +ari +arT +ari +ars +ars +ars +asq +asq +asq +asq +asq +auQ +arT +arv +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +jhu +aqN +aPT +aPO +aOM +aOM +aqx +aPM +lVH +tdh +ijN +aoB +aLi +aLi +vlF +jbo +mHf +qiN +adW +aLi +aLi +adF +qjn +tdh +anz +aOT +aou +aOM +aOO +aOO +aOL +aOG +aOF +aOA +aOA +aOA +aOA +aOA +aOE +noO +xqG +xqG +jFb +aOB +aOA +aOA +aOA +aOA +aOA +aOz +aOx +aOx +aOx +aOy +aOx +aOw +aAF +jzN +swz +cBs +cBs +cBs +swz +anD +aAD +aAx +anh +amB +abd +amz +amz +dmH +aaY +akO +uAM +lHL +vaX +vmH +aXg +rxa +qLp +qLp +mJI +aai +qfy +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(145,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +auQ +ari +ari +arv +ari +arH +ari +arT +ari +asq +asq +asq +aJK +ari +ari +ari +aKs +ari +ari +ari +ari +ari +ari +ars +ari +ari +ari +arT +ari +arH +aqN +aoj +aoj +aoj +aoj +hNl +aOS +afO +tdh +mRq +tEB +aoB +aLi +aLi +tPh +xoQ +jiH +aLi +aLi +adJ +dwf +mRq +tdh +adr +aOS +rjp +aoj +aon +aon +aoj +aoj +jZU +kbl +kbl +kbl +wza +wza +wza +rYJ +rYJ +rYJ +rYJ +wza +wza +wza +aFQ +kbl +kbl +fLD +anQ +anQ +anQ +lUM +oUN +aAT +anf +jzN +aJt +fYs +anx +kqW +anl +abq +anf +anp +anh +amB +amA +amA +anT +rtA +tyB +akO +wZv +aOf +sHk +lEA +aXg +rxa +aaD +qLp +mJI +aai +oVG +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(146,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +ari +ari +ari +ari +arH +ari +ari +arv +ari +asq +asq +ave +ars +ari +ari +ari +ari +ari +arv +ari +ari +arv +ars +ars +ari +ari +arv +arS +hiC +aqN +fHE +fHE +ahu +aoo +aoo +aOS +qjn +tdh +anz +aox +tEB +aDm +aLi +ykR +ykR +ykR +aLi +aoB +dwf +aox +lVH +tdh +ijN +aOS +aoo +aoo +acZ +fHE +fHE +aoh +aoh +kcW +aFA +acp +azl +acF +oLu +acF +acF +acF +acF +oLu +acF +mNQ +dRz +aBC +acm +amG +amG +abX +amN +amB +lPf +aAT +anf +jzN +anl +gvC +bSa +xgg +anl +abq +anf +anp +anh +amB +amA +amN +amA +rtA +tyB +akO +rtA +aJW +aax +rtA +tyB +rxa +aaE +qLp +aai +aQC +rtA +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(147,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +ars +ars +ars +ars +ari +ari +arT +ari +ari +ari +aCu +arv +ari +ari +ari +arT +ari +ari +ari +ari +ari +ars +ari +ari +ari +ari +ari +arH +aqN +aqN +aoi +aqN +nVE +aoo +aOS +aox +qjn +tdh +aox +aox +tEB +aoB +ykj +aoB +ykj +aoB +dwf +aox +aox +tdh +ijN +aox +aOS +aoo +mab +aoi +aoi +aoi +jZU +wza +rYJ +pmm +rYJ +wza +oLu +wza +kbl +kbl +kbl +kbl +oLu +oLu +wza +rYJ +rYJ +rYJ +fLD +anQ +anQ +anQ +lUM +lvX +aAT +amB +vQY +hwl +aKO +hwl +hwl +hwl +abr +anf +anp +anh +amB +amA +amN +amA +rtA +tyB +gru +bZW +bZW +bZW +bZW +pEQ +nTP +fKh +rtA +aai +aQC +rtA +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(148,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +ari +ari +ari +ari +arT +ari +ari +ari +arv +ari +ari +ari +ari +arv +gAG +gAG +gAG +gAG +ari +ari +ari +ari +arT +ari +ari +aJH +ars +ars +lzd +aqY +aqN +apg +asq +xrO +ekG +aox +qjn +aox +aox +aox +aox +iMj +aox +iMj +aox +aox +aox +aox +ijN +aox +sNb +aOR +aQY +dOx +aok +bLP +jZU +wza +wza +wza +wza +oLu +wza +oLu +aeT +abG +qOc +aBy +cvA +jYP +oLu +wza +wza +wza +wza +fLD +anQ +anQ +anQ +lUM +oUN +aAT +aKQ +amV +any +any +abw +any +any +amO +amB +anp +anh +amB +amA +asn +amA +rtA +tyB +akM +tKh +vXG +vXG +vXG +vKk +mVE +pTA +rtA +aai +aQF +kyA +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(149,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +ari +arv +ari +ari +ari +ars +ari +ari +ari +ars +ari +ari +ari +gAG +piM +piM +gAG +ari +arT +ari +ari +ari +ari +ari +ari +ars +asq +arh +asq +asq +uJK +hNl +aOQ +aow +aoC +aow +aow +aov +aow +aow +aej +aov +oFY +aov +aov +aoC +aow +aov +aow +aow +aOU +rjp +aoj +aoj +jZU +kbl +kbl +xKm +wza +oLu +oLu +oLu +oLu +wza +rYJ +pmm +pmm +rYJ +wza +wza +oLu +oLu +oLu +kbl +fLD +anQ +amB +abW +amB +lPf +aAT +amB +amB +amB +amB +anf +anf +anf +amB +abp +anq +anh +amB +amB +amB +amB +rtA +tyB +akR +afF +aaU +akN +age +bri +oOt +rtA +aax +mJI +mJI +aag +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(150,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +ari +arT +ari +ari +ars +ars +aJK +ari +aKs +ari +ari +aJI +gAG +gAG +gAG +gAG +ari +ari +ari +ari +arv +ari +ari +arT +ars +asq +asq +aol +apx +apx +apx +aPN +aPH +aRV +aPH +aPF +iit +aOM +aOM +lux +aOM +aeb +aOM +aOM +eyu +aPc +aOX +aOX +aOX +aOV +wNe +wNe +wNe +aol +itN +nWA +asq +ieJ +ieJ +sLn +tww +tww +tww +tww +tww +tww +tww +tww +ieJ +sLn +ieJ +asq +wrT +amz +amz +amz +anf +aii +lvX +aAZ +azm +azm +azm +azm +azm +azm +azm +azm +azm +ans +ani +azm +azD +azm +azm +ala +akW +akT +aaV +mJI +mJI +agv +aax +aaJ +aax +aax +kyA +dmH +dmH +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(151,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +ari +ari +ari +arv +ari +arv +ari +ari +ari +ari +asq +gAG +gAG +gAG +gAG +ari +ari +ari +ars +ars +ari +ari +ari +ari +asq +asq +aol +aol +aor +lQa +aor +lQa +aor +nwX +aPa +lGD +aex +pyn +bBh +nUy +bBh +aos +adR +xGN +aPa +lQa +aor +lQa +aor +nwX +aSq +aol +aol +xVl +tAt +asq +aJw +tww +tww +aTF +tww +tww +ieJ +rio +tww +tww +aKa +tww +tww +aJw +asq +tAt +tAt +tAt +amz +anf +rIY +ann +anj +amD +amD +amD +amD +amD +amD +amD +amD +amD +ann +anj +amD +azY +amD +amD +vXG +vXG +dQi +qLp +mJI +mJI +mJI +mJI +qLp +mJI +mJI +qfy +dmH +aah +aae +aad +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(152,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aLj +jlw +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +auQ +ari +ari +ari +ari +ari +ari +ari +ari +ari +swv +swv +swv +swv +ari +ari +ari +ars +ari +ari +ari +ari +arv +art +ari +cpS +aol +aol +lQa +aor +lQa +aor +wbQ +jkm +lGD +aJC +fZg +uxH +vFB +wAT +tQj +adS +xGN +jkm +kZI +aor +lQa +aor +lQa +aol +aol +xVl +akP +tAt +asq +cya +cya +cya +tww +aKa +cya +cya +cya +tww +agw +cya +cya +cya +asq +asq +asq +tAt +fzy +amz +abX +abR +ant +ank +anf +anf +anf +amB +anf +amB +amB +amB +amB +ant +ank +amB +aAe +amB +amB +rtA +rtA +qLp +qLp +qLp +kTd +kTd +qLp +qLp +qLp +mJI +qfy +dmH +aac +aKE +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(153,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aLj +jlw +aLj +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +ars +ars +ars +aOn +ari +ari +ari +arv +ari +arT +dqw +oqa +oqa +dxE +ari +ari +arv +ari +ari +ari +ari +ari +ari +ari +ari +cya +cpS +aol +aol +aor +lQa +aor +aor +aor +lGD +aey +fZg +aoO +aoO +pBA +tQj +adT +xGN +aor +aor +adw +lQa +aor +aol +aol +xVl +akP +tAt +asq +asq +cya +cya +cya +wxU +wxU +cya +cya +cya +wxU +wxU +cya +cya +cya +asq +asq +asq +tAt +eEP +amz +abY +tsG +evB +tCF +abM +abD +abD +tCF +rYu +wRq +aMI +aMI +aMI +aMI +aMI +qjL +xDX +amE +amE +aai +mJI +qLp +pZd +qLp +azh +rtA +qLp +pZd +qLp +mJI +oVG +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(154,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +iwN +uGw +uGw +vTT +uGw +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +ars +ari +arv +ari +ari +ari +ari +ari +ari +arv +ari +ari +ari +ari +ari +ari +ari +arT +ari +ari +ari +ari +ari +wxU +agw +tww +aol +aol +afP +jkm +jkm +jkm +lGD +aok +apg +cDH +cDH +cDH +dOx +aok +xGN +jkm +jkm +jkm +ads +aol +aol +xVl +asq +asq +asq +asq +asq +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +asq +asq +asq +tAt +eEP +amz +abZ +amE +vrt +anl +anx +hgy +sBZ +anl +odb +wkU +anl +anx +anx +vSh +anl +caQ +aAj +amN +amE +aai +mJI +qLp +aJr +qLp +kTd +aaO +qLp +aQO +qLp +mJI +mJI +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(155,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +iwN +kJb +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +asq +asq +ari +ari +ari +ari +ari +ari +ari +aKs +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +ari +arv +ari +ari +ari +ari +gnf +rio +tww +tww +aol +aol +aor +aor +aor +aeH +aow +aov +aov +aef +aow +aov +aov +jLR +aor +aor +aor +aol +aol +rHP +asq +asq +asq +nBn +rio +tww +tww +tww +rio +tww +tww +tww +tww +tww +agw +rio +tww +tww +tww +asq +asq +asq +tAt +eEP +amY +amA +amE +vrt +anl +anx +anx +anx +anl +odb +wkU +anl +swz +lwc +swz +anl +caQ +aAj +eTC +amF +aai +mJI +mJI +aai +aai +akS +aai +aai +mJI +mJI +aai +mJI +cnM +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(156,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aGe +kJb +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +ari +ari +ari +ari +ari +arT +iou +ars +atz +ari +ari +ari +ari +ari +aru +ari +aru +ari +ari +ari +aQf +aru +ari +ari +ari +cya +cya +tww +tww +aql +aol +aol +jkm +jkm +aeI +apj +aox +aDw +aom +aow +aox +aox +aRU +jkm +jkm +aol +aol +spw +asq +asq +cya +asq +tww +tww +tww +tww +tww +tww +tww +agw +tww +tww +tww +tww +tww +asq +asq +asq +asq +asq +asq +tAt +eEP +amY +amA +amE +vrt +swz +cBs +cBs +cBs +swz +odb +wkU +swz +cBs +cBs +cBs +swz +caQ +ayV +cBs +amG +qLp +aQR +kTd +aTE +kTd +aaP +ahs +aai +mJI +mJI +aai +kyA +dmH +aac +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(157,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pBL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +arv +ari +ari +ari +arv +ari +asq +asW +ars +ari +ari +ari +aru +ari +ars +ars +ari +ari +aKs +ari +ars +ars +asq +ari +aru +ari +cya +cya +tww +tww +tww +tww +aol +aol +aDp +aeJ +apj +aox +aov +aom +aow +aox +aox +cjd +aor +aol +aol +asq +asq +asq +asq +cya +cya +tww +tww +tww +tww +tww +cya +tww +tww +tww +tww +tww +tww +dLv +asq +asq +asq +asq +asq +tAt +tAt +eEP +amz +amO +amE +vrt +anl +anx +mag +sBZ +anl +odb +abu +anl +swz +lwc +swz +anl +caQ +aAj +anT +amG +mJI +mJI +aQM +aQP +aQM +qLp +qLp +mJI +mJI +mJI +mJI +dmH +dmH +aac +ipH +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(158,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pBL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +art +ari +ari +ari +pNL +pNL +tAA +tAA +asW +aru +ari +atz +ari +ari +atz +asq +asq +ari +arv +aru +ari +aJK +ars +asq +ari +arv +ari +wxU +tww +tww +rio +tww +tww +tww +aol +aol +aeH +aow +aov +fHE +aok +fHE +aDv +aDg +jLR +aol +aol +asq +asq +tww +vgx +tww +tww +rio +tww +tww +agw +tww +tww +cya +gAG +aJw +tww +tww +aKa +tww +asq +asq +asq +asq +asq +asq +asq +asq +amz +amz +amz +aQU +vrt +anl +anx +anx +anx +anl +odb +abu +anl +anx +anx +vSh +anl +aKL +aAj +amA +amG +mJI +mJI +kTd +aQO +kTd +qLp +qLp +mJI +mJI +mJI +mJI +dvZ +dvZ +dvZ +dvZ +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(159,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pBL +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +ari +ari +ari +ari +ari +asq +asq +asq +vQv +apS +arw +aqO +aqO +aqO +atA +asq +asq +aqO +arw +aqO +apI +apI +pOw +pWK +aqO +aqO +ari +gnf +aqm +agw +tww +tww +agw +tww +cpS +asq +aol +aoD +aoD +aol +aoD +aoD +aol +aoD +aoD +aol +mcf +asq +asq +jXq +tww +tww +tww +tww +tww +tww +rio +tww +tww +gAG +gAG +gAG +tww +tww +tww +tww +asq +asq +asq +wst +lsv +asq +asq +dvZ +dvZ +dvZ +dvZ +amz +eLu +abE +abE +abE +abE +sBY +vDc +dlo +bCl +bCl +bCl +bCl +bCl +fBX +ayW +amG +amG +qLp +mJI +mJI +mJI +mJI +mJI +aaQ +mJI +mJI +dmH +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(160,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pBL +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aAw +asq +asq +ari +ari +arT +ari +ari +vZx +asq +aIr +aJG +aqO +apI +apI +aqO +asf +aqO +aqO +aqP +aja +aqO +aqO +aqO +aSo +aqO +apI +aqO +aKm +arw +aFZ +cya +cya +aqm +tww +tww +tww +rio +tww +asq +asq +aov +aov +aov +aov +gAG +gAG +aov +aov +aov +asq +asq +asq +asq +rio +agw +tww +tww +tww +tww +tww +tww +tww +tww +aBj +tww +agw +tww +rio +tww +tww +asq +asq +lsv +asq +asq +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +amz +anN +abN +amE +amE +amV +any +any +abs +any +any +aJs +amA +amA +aAl +azy +amG +kyA +qJZ +rtA +rtA +rtA +rtA +rtA +kyA +dmH +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(161,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pBL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +ari +arv +ari +ari +arv +ari +asq +aJN +aqO +lDE +rew +aKy +apI +knd +knd +ubK +aqP +aqP +aqO +pzV +aKt +aiH +ssv +aJJ +pOh +aqO +aqO +aGa +cya +cya +tww +tww +tww +tww +tww +tww +tww +asq +gAG +gAG +gAG +gAG +gAG +gAG +gAG +gAG +gAG +asq +asq +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +asq +asq +asq +asq +asq +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +amz +amz +amY +amY +amz +amz +amz +amz +amz +amz +amz +ayX +ayX +ayX +amz +amz +dmH +dmH +cnM +cnM +cnM +cnM +cnM +dmH +dmH +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(162,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aBG +opN +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +ari +ari +ari +ari +ari +arT +asq +aJN +aqO +aqO +izT +asf +apS +asf +apz +apz +aqP +aqP +aqO +apz +apz +apz +apz +apz +iSk +aqO +aqO +aGa +apz +cpS +aql +aqm +aqm +tww +tww +tww +tww +tww +cya +gAG +gAG +cya +tww +aJw +tww +wxU +rio +agw +tww +tww +tww +tww +rio +tww +tww +tww +aKa +tww +tww +tww +tww +tww +rio +tww +tww +tww +tww +tww +asq +asq +tAt +tAt +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +amz +aae +aae +aae +aae +aae +aae +aae +aae +aGZ +aae +azC +pYk +ayZ +aae +aGZ +aae +aae +aae +aae +aae +aae +aae +aae +aae +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(163,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aBG +opN +dvZ +dvZ +dvZ +dvZ +dvZ +acn +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +ari +ari +apI +kQk +won +apS +apI +aIs +aqO +aKm +izT +asf +asf +atV +gXJ +apz +aKx +ajb +aqO +apz +aiO +cMG +nEm +apz +iSk +aqO +aqO +aGb +apz +cpS +hvS +hmB +tww +tww +tww +tww +tww +tww +tww +tww +nBn +tww +tww +tww +tww +wxU +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +rio +tww +tww +tww +tww +tww +tww +tww +asq +asq +asq +tAt +tAt +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +ncP +tYo +kVD +kVD +kVD +kVD +kVD +kVD +gWu +ncP +ncP +aza +aza +aza +ncP +ncP +aze +fUt +kVD +kVD +kVD +kVD +kVD +kVD +eNS +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(164,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aBG +gCW +gCW +aOD +gCW +gCW +ayE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +ari +apI +kQk +apI +apI +arw +aKC +aIs +kvm +ajL +auF +apz +asf +qHS +nsU +atB +aqP +aqP +nCI +gYL +aiP +aiI +aiy +apz +iSk +kvm +aij +aGa +apz +cpS +aql +aqm +aqm +agw +tww +tww +tww +tww +rio +tww +agw +tww +aKa +tww +tww +cya +cya +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +agw +tww +tww +tww +tww +tww +tww +asq +asq +asq +tAt +tAt +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ijl +ncP +ncP +vaA +ubd +vaA +ncP +ncP +fcb +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(165,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aLj +jlw +aLj +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +apS +apI +imQ +kQk +apz +asq +asq +apz +aIt +dQX +auR +ajC +apz +aum +atV +obP +apz +aqP +aqP +aqO +apz +asy +tcf +aiz +apz +ait +aim +aGn +aGc +apz +asq +asq +asq +aRX +aqm +rio +tww +tww +tww +tww +tww +tww +tww +rio +tww +cya +cya +gAG +aOY +tww +tww +rio +tww +tww +tww +tww +agw +rio +tww +tww +tww +tww +tww +tww +tww +tww +tww +asq +asq +asq +tAt +tAt +tAt +qHa +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wsJ +eyY +iqV +vaA +ubd +vaA +iqV +eyY +hLp +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(166,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pRd +oNK +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +kQk +kQk +kzp +asf +awj +asq +asq +apS +aIl +auR +ajC +apz +apz +apz +apz +apz +aqO +aqO +aRp +apz +apz +apz +apz +apz +ait +aim +aGo +ahQ +apz +asq +atm +asq +asq +aqm +tww +aqm +tww +tww +tww +tww +tww +tww +tww +tww +gAG +gAG +cya +rio +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +asq +rio +asq +asq +asq +tAt +tAt +tAt +tAt +abO +aEd +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +azj +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(167,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asf +asf +apI +asf +asf +apT +apz +asq +asq +aJM +auR +ajC +apz +ajz +uxb +mno +apz +aqO +aqO +aqO +apz +aiQ +aiJ +aiA +apz +ait +aim +aGo +dPu +apz +apz +ehA +apz +asq +asq +asq +asq +asq +tww +rio +tww +tww +tww +tww +tww +tww +cya +cya +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +rio +tww +tww +dLv +asq +asq +asq +asq +asq +asq +asq +asq +ayI +abO +gWg +mfg +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +azj +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(168,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +apz +awF +asf +avS +avS +rVx +avS +avS +asq +asq +dQh +ary +izT +apz +wEH +ajt +aSh +atC +oFE +aqP +obO +gYL +aiP +qTP +aiB +apz +ait +aim +aGo +dPu +apz +vUE +vUE +agK +bjk +rkF +asq +kJj +asq +asq +tww +tww +tww +tww +tww +agw +tww +tww +wxU +tww +tww +tww +agw +tww +tww +tww +tww +tww +tww +tww +tww +tww +tww +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +abO +lQi +tAt +tAt +tAt +pjZ +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +azj +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(169,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mBb +asq +asq +asq +asq +apz +axn +asf +awk +avT +awk +awk +avT +asq +asq +aJM +ary +ajD +apz +piJ +bAK +atN +apz +aqO +aqP +aqO +apz +lYF +aiK +dpf +apz +ait +aim +aGo +dPu +apz +ahv +aqE +rkF +kIk +rkF +afx +rkF +apz +asq +asq +asq +tww +tww +tww +tww +tww +rio +wxU +agw +tww +tww +tww +tww +tww +rio +tww +tww +tww +asq +tww +asq +aJw +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(170,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +avS +avS +awE +avS +avS +apS +asq +cCc +aIl +auR +ajC +apz +apz +apz +apz +apz +aqO +aqP +aqO +apz +apz +apz +apz +apz +ait +aim +aGo +dPu +apz +eXf +rkF +rkF +kIk +rkF +rkF +rkF +apA +asq +asq +tww +tww +rio +tww +tww +tww +tww +wxU +tww +tww +tww +tww +tww +dLv +tww +tww +tww +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +abO +lQi +asq +asq +asq +asq +asq +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(171,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +fqa +avS +eQp +awE +avS +avS +myH +asq +apS +aIl +aKz +ajC +apz +uxb +atV +ajp +apz +aqO +aqP +aqO +apz +aiR +hNi +nEm +apz +iSk +ain +aGo +dPu +apz +mWQ +mWQ +dze +bjk +afQ +rkF +afc +apz +asq +asq +asq +asq +tww +tww +asq +tww +tww +asq +tww +tww +rio +tww +tww +asq +tww +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(172,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +apz +avS +avS +akm +nHl +avS +sId +avS +apz +ajP +aIm +ajM +ajC +apz +ivQ +ajo +aSi +atC +fXs +aqP +tQM +gYL +aSg +qTP +uNL +apz +iSk +arI +arz +ahP +apz +ahw +bjk +agL +kIk +afS +rkF +rkF +apz +asq +bHT +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tww +tww +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(173,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +lwA +apz +apz +apz +apz +awF +xFa +apz +apz +apz +aRu +aFI +aqP +ajC +apz +piJ +cbD +ajq +apz +aqO +aqO +aqP +apz +aiS +aiL +aiD +apz +iSk +aqO +aik +dPu +apz +apz +apz +apz +aqn +apz +apz +apz +apz +asq +lBV +lBV +tAt +tAt +asq +asq +asq +asq +psN +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(174,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +lwA +apz +apT +apT +apT +kCS +apT +apA +rHA +rHA +nmP +aFI +aqP +ajC +apz +apz +apz +apz +apz +aqO +aqO +aqO +apz +apz +apz +apz +apz +iSk +aio +aFI +ldH +abJ +abJ +apA +apT +agj +afT +apS +asq +asq +asq +asq +lBV +lBV +tAt +mBb +asq +asq +asq +lBV +lsv +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(175,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +acO +apA +aIX +aIP +aIP +aIP +aka +ood +aFr +avJ +avv +aGp +aFr +mkS +aIh +aIh +ajr +ajr +ajj +aFr +aFr +aFr +aHw +aGC +aGC +aKn +aGC +lbQ +aip +aGp +qOb +ipY +aFr +aEW +agM +aqo +aEP +aEI +asq +apA +fMe +asq +asq +aAq +qxU +asq +asq +asq +lBV +lBV +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(176,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +acO +apz +akw +akt +apT +tUr +apT +apA +aqO +ajT +ajQ +aqO +auS +aqP +aqP +aqP +aqO +aqO +aqO +atj +aqO +aqO +apS +aCa +arw +apI +aqO +aJG +aJG +aqO +eFs +rCg +aqP +ahm +apT +agk +apT +apT +apI +apz +fMe +xEC +cCP +ycI +aDE +asq +asq +asq +asq +asq +asq +asq +asq +tAt +xdq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(177,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +acO +apz +apz +apz +apz +aqn +apz +apz +aRx +aqP +aIu +aqO +otw +aqP +aun +ebP +aQr +aqO +aqO +aqO +aqO +apI +apI +apI +wpF +aqO +aJG +asq +asq +pWK +aqO +aFI +aRj +ahn +apz +aqn +apz +apz +apz +apz +fMe +tAt +cCP +cCP +aDE +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +xdq +asq +asq +aTm +aTm +aTm +aTm +azW +tAt +abO +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(178,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +acO +atX +akx +awP +akn +mAm +akb +atX +plk +atE +veD +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +apT +apT +apT +apT +apT +apT +apT +apz +aEI +asq +asq +asq +asq +kVP +aFJ +ccL +aqF +agN +agl +afU +afy +afd +apk +fMe +xEC +cCP +jUb +aDE +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +dvZ +dvZ +dvZ +dvZ +aaa +syq +lQi +tAt +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +pjZ +tAt +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(179,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +aky +awP +awP +mAm +akc +atX +ozC +atE +sCv +aqZ +uTF +uTF +ohK +xDV +aqZ +sEF +sEF +sEF +sEF +sEF +sEF +sEF +asq +apS +asq +qdL +qdL +asq +asq +aFJ +agR +aqF +agO +agm +lnM +lnM +afe +apk +fMe +tAt +cCP +cCP +aDE +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +jOx +asq +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aEb +azW +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +pjZ +tAt +tAt +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(180,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pRd +oNK +acO +avA +eRp +eRp +eRp +bPl +akd +atX +aKD +atE +sCv +aqZ +pPg +ajE +pPg +pPg +aqZ +tAA +tAA +tAA +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +aFJ +gBJ +apk +agP +agn +afW +klk +klk +apl +fMe +xEC +cCP +ycI +aDE +tAt +tAt +asq +asq +asq +asq +asq +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(181,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +pRd +acq +atX +axo +atX +avz +avz +eRp +atX +ozC +aJQ +aJO +aqZ +aqZ +aqZ +bNk +hVX +nqc +dQr +pvA +aqZ +aqZ +aqZ +aqZ +aiT +asq +asq +asq +asq +arJ +aqZ +bAC +aFK +gBJ +apk +klk +ago +cqf +apk +mVj +apk +fMe +tAt +cCP +cCP +aDE +tAt +asq +asq +asq +tAt +asq +asq +tAt +tAt +tAt +ack +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +kVD +asq +asq +kVD +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(182,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aHn +atX +gSr +atX +ako +akh +avz +atX +aTD +atk +aJO +aqZ +ucd +vjq +hVX +hVX +hVX +vjq +hVX +aqZ +hSG +hSG +aqZ +hVX +arK +asg +asq +asq +arK +arA +aGd +aDP +gBJ +apk +agQ +agp +cqf +apk +qfw +apk +asq +asq +sFj +sFj +uIn +asq +asq +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +ack +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +asq +azj +akI +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(183,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aAs +atX +atX +atX +atX +atX +atX +atX +awl +ajV +ajU +aJO +aqZ +hVX +hVX +hVX +hVX +hVX +bNk +hVX +ase +hSG +hSG +ase +hVX +arJ +asq +asq +asq +hVX +arB +aGd +aDP +gBJ +apk +apk +apk +apk +apk +apk +apk +apk +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +azj +akI +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(184,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +atX +jCt +atX +eOL +akp +atX +ozr +klF +siU +atk +quv +aqZ +aOv +igN +liV +nWU +afV +nqc +afV +aqZ +iXw +dIA +aqZ +hVX +hVX +asq +nGP +asq +aiq +aqZ +abj +qJn +shC +tay +deG +apk +afX +vqb +sRX +qCo +apk +apk +fMe +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +joh +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aBD +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +akI +azj +hRK +azv +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(185,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +atX +axw +atX +awZ +akq +atX +ozC +atE +atE +atk +aKA +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +tAA +tAA +tAA +aqZ +aqZ +sQI +aqZ +asq +asq +aqZ +aqZ +aFL +aDP +qJn +qJn +agR +apk +aRW +apo +dMn +qCo +xmI +apk +fMe +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jgG +ace +dvZ +dvZ +dvZ +dvZ +aBD +lYd +nxB +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +xAK +aBB +aBB +aDi +aFE +aBB +ewh +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(186,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +avA +wKn +ato +akz +axa +eOL +atX +ozC +atE +ajW +avK +ajR +gjW +aHh +aHg +aqZ +goW +aju +goW +aqZ +fZl +hII +ucg +aqZ +fdJ +ahS +goW +aqZ +lEF +lEF +aqZ +aFS +raF +kOx +qJn +agS +apk +qCo +lFl +aph +aph +apn +apl +fMe +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +abO +lQi +aEh +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +xAK +aDy +aAN +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(187,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +eOL +atF +ato +gnn +eOL +atX +ozC +atE +avU +aqZ +aGf +gjW +aHi +ajF +aGD +aGG +aGI +aGq +aGD +mvA +mvA +mvA +aGD +aGG +aGI +aGG +aGD +aGq +aGr +aqZ +aGf +aqZ +ahx +qJn +agT +apk +pAy +lvI +qCo +apn +pcG +apk +fMe +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +xAK +ayQ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(188,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +jjs +eOL +eOL +axb +awm +atX +ozC +atE +avU +aqZ +aGh +goW +aGh +ajH +aqZ +eAG +aGh +goW +aqZ +ajh +aiY +aiY +aqZ +aDI +aGh +aiE +aqZ +nFe +pVA +fhM +pVA +aqZ +glY +aDP +gBJ +apk +pAy +lvI +qCo +aeS +apo +asq +fMe +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +hTO +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(189,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +atX +atX +atX +awH +awm +awm +ozC +atk +avV +aqZ +aIv +ajF +aIk +goW +aqZ +aqZ +aGf +aqZ +aqZ +aqZ +pdD +aqZ +aqZ +aqZ +aGf +aqZ +aqZ +isx +aGs +aGq +ahR +aqZ +aqQ +aDP +tRj +apk +apk +vwN +apk +apk +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +hTO +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(190,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +avz +avz +avz +aku +avz +awm +awm +atk +avW +aqZ +aIw +aHk +aHj +goW +aqZ +arL +aGM +blW +nac +lpI +asz +jHf +rfD +wPY +aGJ +cNj +aqZ +lmR +lWc +goW +aGh +aqZ +ahx +qJn +aph +izA +izA +rRx +izA +asq +asq +asq +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +hTO +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(191,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +avA +aII +aIM +aIM +aIM +aIM +aIM +aIL +aIL +aIK +aqZ +aGf +aqZ +aqZ +aqZ +aqZ +ajA +aGM +asz +asz +asz +asz +aiU +aiU +aiU +aGM +aiF +aqZ +aqZ +aqZ +aqZ +pdD +aqZ +aFs +aEX +apn +aqp +izA +izA +izA +apB +aph +asq +aph +kVD +tAt +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +hTO +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(192,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +avz +awm +avz +avz +avz +awm +plk +atk +avX +avL +aIx +aqZ +ajN +rsV +aRn +arL +aGM +aiU +ajl +aiU +asz +asz +asz +aiU +aiN +arL +aRn +rsV +rsV +aqZ +aGk +pIW +bvw +apn +aph +asq +apo +aph +aph +aph +qXE +qqp +aph +kVD +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +hTO +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(193,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +atX +awm +awm +avz +awm +atX +ozC +aSm +aIA +atP +atF +aqZ +ajN +ajI +rsV +aiM +aGM +aiU +aiU +aiU +asz +asz +asz +aiU +aGM +arL +aiv +rsV +rsV +aqZ +qJn +arb +qJn +qJn +aph +asq +asq +jEk +apk +apk +apn +aph +kVD +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +jpC +aDF +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(194,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +awQ +awQ +awQ +awG +awQ +atX +ato +atk +awm +dXj +asq +aqZ +hVp +ajJ +gWi +aiM +aGM +asz +aiW +wrc +fQZ +bRo +aiW +asz +aGJ +arL +rKZ +rsV +air +aqZ +ahT +aFL +qJn +qJn +asq +asq +asq +asq +asq +asq +asq +kVD +tAt +tAt +tAt +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +aDz +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(195,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +awQ +awm +awQ +awG +awQ +ato +ozC +atk +atF +asq +asq +aqZ +asq +asq +asq +aiM +aGM +asz +aqZ +aqZ +aqZ +aqZ +aqZ +asz +aGJ +aiG +aHb +rsV +rsV +aqZ +ahU +aFL +aRk +apk +asq +qdL +qdL +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +jpC +gbu +pnH +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(196,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +avA +awQ +awQ +awQ +awG +awQ +atF +ato +asq +asq +asq +asq +asq +asq +arK +arL +aiM +aGM +sSs +hmE +hmE +hmE +hmE +hek +asz +aGJ +arL +arL +arL +arL +aqZ +ahU +aFL +qJn +apk +asq +asq +asq +apB +asq +asq +asq +asq +lsv +asq +asq +abO +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(197,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +akK +ato +aSn +axc +hJb +asq +asq +asq +asq +asq +asq +asq +asq +arL +aiM +aiM +ajv +aiM +aiM +arL +aHG +aiM +arL +arL +aGJ +arL +arL +arL +arL +aqZ +fKm +aFJ +qJn +apk +asq +asJ +twr +qxs +xmK +vQo +asq +asq +aRD +asq +asq +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(198,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +bEc +ato +mFF +axd +asq +asq +asq +asq +asq +asq +asq +aqZ +uKm +arL +aiM +arL +aIe +aHE +aHE +aHl +aHH +aHE +aHl +aHl +aGN +arL +aRM +arL +arL +aqZ +ahU +aFJ +apn +vaw +apn +apo +asJ +bqU +iPS +qxs +asq +asq +asq +asq +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(199,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +atX +atP +ato +ato +atF +asq +asq +asq +avY +ccl +asq +aqZ +aqZ +cMh +aqZ +aqZ +aqZ +xBU +xBU +xBU +ajc +xBU +xBU +aiV +sAw +aqZ +asq +arK +aqZ +aqZ +ahU +aFJ +aph +apn +apv +gEr +asJ +hSo +kJe +aph +asq +asq +qdL +lQi +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(200,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +mjf +atX +atX +pre +ato +awt +aki +asq +atX +atk +ato +jrG +aqZ +vjq +hVX +dQr +aqZ +ajw +xBU +xBU +xBU +xBU +xBU +xBU +xBU +aDH +aqZ +asq +arV +asq +aqZ +fKm +aFJ +qJn +apk +qxT +iTk +nJG +xmK +jXI +apk +asq +asq +asq +qdL +qxU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(201,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +mjf +atX +axp +awm +awt +awt +ato +awm +atk +awm +ato +aqZ +ajO +hVX +hVX +aqZ +ajw +xBU +xBU +xBU +xBU +xBU +xBU +arK +asq +asq +asq +asq +qdL +asq +pxX +aFM +qJn +apk +rxO +rOw +rEg +apU +rdD +apk +asq +asq +asq +mKt +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(202,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +avA +axe +axe +awR +tXp +aws +atX +atE +aIA +jrG +aqZ +vII +qyx +nlT +aqZ +ajy +ajs +ajm +aji +ajd +aiZ +aiX +asq +asq +asq +asq +qdL +asq +asq +apo +aFM +apB +apk +qSe +bAB +jOo +jOo +hLs +apl +asq +asq +asq +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(203,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +awt +awt +awt +awG +awt +awm +atE +aHQ +jrG +aqZ +aqZ +aqZ +aqZ +aqZ +aqZ +gDz +gDz +gDz +gDz +gDz +gDz +gDz +aqZ +aqZ +aqZ +asq +aqZ +aqZ +fKm +aFJ +qJn +apk +agU +isU +jOo +jOo +jOo +apk +asq +asq +asq +mKt +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +xAK +aBB +aBB +aBB +aBB +aBB +akI +pDO +aDG +akI +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(204,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +awt +axg +awt +awG +awt +atX +atk +aIB +aIy +aRs +auT +aHY +pSA +abK +atX +unR +atD +wPp +aje +qEC +aHx +eSn +apk +eKa +aGE +owN +ein +aRm +aGm +aFO +qJn +apk +rAw +bAB +oyC +jOo +iaR +apk +asq +asq +asq +asq +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +xAK +aDy +aAN +dvZ +dvZ +dvZ +dvZ +bDY +uFg +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(205,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +awm +atX +awm +awH +awm +awm +atk +aHP +atE +atE +atE +atE +atk +acg +fvJ +abF +aHP +atk +ajf +qJn +aFL +abA +sVb +aab +qJn +apB +qJn +qJn +qJn +aFJ +qJn +apk +apk +seA +apk +apk +apk +apk +asq +aph +aph +aph +lPn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +xAK +ayQ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(206,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +akA +axh +awS +akj +avz +eAa +atk +aHQ +atk +atk +atk +atk +atk +auo +atW +atO +aHQ +atk +qJn +qJn +aFL +kBz +qUm +fXH +aiw +aiu +qJn +qJn +qJn +aFJ +aHa +apn +izA +gtC +izA +afz +izA +apn +aph +aph +apo +aph +lPn +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +hTO +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(207,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +avA +aIY +aIM +aIM +aIM +aIM +awn +aIL +aIC +wkp +atX +atX +atX +atX +atX +auY +qbh +aHR +atl +asI +flf +aHy +tYn +dCO +apk +apk +apk +apk +apk +jhC +aFS +aFt +aEY +aEU +aEU +afY +afA +aEB +apn +aph +aph +aph +aph +aFn +azp +azp +azp +azp +azp +azp +azp +azp +azp +azp +tXj +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(208,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +akB +avz +awS +akk +avz +avA +pfi +aHQ +kWk +atX +nfK +kWf +dUG +atX +atX +kFG +aHS +atn +flf +flf +aHz +xor +apk +apk +aix +eGn +nZc +apk +vdF +aFJ +grj +apn +agV +agq +afZ +afB +izA +apU +aph +aph +aph +aph +pIV +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +aOa +azn +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(209,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +atX +atX +atX +awI +atX +atX +sHu +aHQ +atk +avf +kcU +kcU +bPl +oOx +atX +aNP +atn +wjM +seC +jGW +aNO +aNN +apk +tmR +imn +klk +imn +eBl +ahV +xdp +sWp +apk +apk +vwN +apk +apk +apk +apk +aph +asq +aph +aOj +dpD +azr +azr +azr +azr +azr +azr +azr +azr +azr +azr +aDN +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(210,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +akC +akv +awT +akl +ake +atX +xDC +aHQ +wkp +atX +vmD +ajK +iTX +lQm +atX +atP +atF +xYy +ydM +tSv +apB +asq +apk +lDY +lDY +pXf +xNp +apk +ahW +aFL +mfH +apk +mkg +agr +eTv +tsq +afg +apk +asq +asq +asq +asq +asq +asq +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +hTO +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(211,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +atX +akD +qUE +akr +xxV +xbb +atX +okp +aHQ +jrG +atX +vKb +oOx +iTX +ajB +atX +asq +drK +ato +apB +aph +aph +asq +apk +uKC +lDY +pXf +rAS +apk +ahU +aFL +ugd +apk +agW +agr +apJ +pIb +afh +apk +asq +asq +asq +asq +asq +asq +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +stz +fon +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(212,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +acO +avA +axq +awU +awU +xxV +sSM +atX +xDC +aHQ +jrG +aSj +aSj +aSj +aSj +aSj +aSj +asq +atI +atp +asY +qch +asJ +asq +asq +aRY +aRY +aRY +aRY +aRY +ahU +aFL +mfH +apk +saD +agr +aga +bgW +apJ +apl +azX +asq +asq +asq +tAt +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(213,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mBb +asq +asq +acO +atX +axo +atX +dzw +atl +akf +atX +ajX +aHQ +jrG +aSj +eTj +xAm +xAm +aSC +atY +asq +urt +qGh +urt +iSa +qGh +urt +asq +qGh +aSC +xAm +xAm +aRY +fKm +aFJ +mfH +apk +lDI +kAa +rOw +apk +qJo +apk +asq +asq +asq +asq +asq +asq +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(214,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +acO +atX +akE +atX +bGb +pmc +dun +atX +xDC +aHQ +bic +tAA +etI +ara +vEh +vEh +vEh +vEh +leQ +hgL +asZ +tCN +vEh +vEh +vEh +vEh +vEh +gOc +xAm +aRY +rld +vjO +mfH +apk +lWl +bJS +vRQ +apk +afi +apk +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(215,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +acO +tAA +tAA +tAA +tAA +atX +atX +atX +bCi +aHQ +atk +asq +qGh +eHk +obT +obT +asa +obT +asa +obT +asa +obT +asa +obT +asa +obT +obT +bmF +urt +xmK +qJn +aFJ +xnn +apk +apk +apk +apk +apk +apk +apk +asq +qdL +qdL +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(216,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +aEh +oMG +sjK +ylj +tAA +avw +akg +ajS +avw +aID +avw +avg +urt +eHk +obT +asa +asa +asa +asa +asa +smb +asa +asa +smb +asa +asa +obT +bmF +urt +arj +lkn +aFU +lkn +lkn +lkn +lkn +apk +asq +asq +asq +asq +qdL +qdL +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(217,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +pAB +iaX +tAA +aRy +avw +avw +avw +aIE +avw +avh +qGh +eHk +asa +asa +obT +obT +asa +asa +asa +asa +asa +obT +obT +asa +asa +bmF +urt +bUf +lkn +aFW +lkn +lkn +lkn +aRe +apk +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(218,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +tAt +tAt +tAt +kkk +fbt +ajS +avw +avw +ajY +aIE +avw +asq +xAm +eHk +obT +asa +mLa +obT +asa +asa +aCf +asa +asa +obT +obT +asa +obT +bmF +qGh +xmK +lkn +aFW +lkn +lkn +lkn +aph +apl +asq +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(219,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +mBb +asq +asq +tAt +tAt +qdL +bcR +asq +asq +asq +asq +acO +tAA +atF +ajS +avw +avw +aIE +ajS +aSj +xAm +eHk +asa +asa +obT +obT +asa +asa +asa +asa +asa +obT +obT +asa +asa +bmF +xAm +aRY +lkn +aFW +lkn +apB +aph +mEO +asq +asq +asq +asq +aAw +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(220,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +qdL +qdL +asq +asq +asq +asq +asq +asq +kZQ +atP +avw +aIE +avw +aSj +aSI +eHk +obT +asa +obT +obT +asa +asa +smb +asa +asa +obT +mLa +asa +obT +bmF +aSz +aRY +lkn +aFW +lkn +lkn +qdH +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(221,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +qdL +asq +asq +asq +tAA +asq +asq +atF +avw +aIE +avx +aSj +xAm +auG +asa +asa +obT +obT +obT +obT +obT +obT +obT +obT +obT +asa +asa +cFJ +xAm +aRY +lkn +ahF +lkn +lkn +lkn +pJC +apk +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(222,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +gtF +avZ +aIE +avw +asq +qGh +auG +obT +asa +obT +obT +mLa +obT +hzD +obT +mLa +obT +obT +asa +obT +tUE +xAm +aRY +lkn +aFW +lkn +fEk +fEk +oNk +apk +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(223,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +atX +atX +tAA +tAA +aIG +avh +asq +xAm +auG +asa +smb +obT +obT +obT +obT +obT +obT +obT +obT +obT +asa +asa +oOK +qGh +xmK +arj +aFX +xmK +tAA +tAA +apk +apk +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(224,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +acO +asq +asq +tuy +ajZ +ajZ +aIH +avy +aSj +xAm +eHk +obT +asa +obT +obT +asa +asa +smb +asa +asa +obT +obT +asa +obT +bmF +urt +xmK +agX +aFY +aFu +kAa +kAa +ags +apk +asq +aHA +aAq +aAq +qxU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(225,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +acO +atX +uoG +avM +avw +avw +aIH +sEW +aSj +qGh +eHk +asa +asa +obT +obT +asa +asa +asa +asa +asa +obT +obT +asa +asa +bmF +urt +xmK +kAa +kAa +ahy +kAa +agX +agt +apk +asq +vxj +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(226,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +acO +atX +atX +atX +atX +atX +aIH +avz +avi +urt +eHk +obT +asa +obT +obT +asa +asa +asa +asa +asa +obT +obT +smb +obT +bmF +urt +arj +kAa +kAa +aFv +kAa +kAa +kAa +apk +asq +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(227,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +asq +asq +acO +atX +avw +avw +avw +avw +aIH +avz +avg +urt +eHk +asa +asa +obT +obT +smb +asa +asa +asa +asa +obT +obT +asa +asa +bmF +urt +arj +kAa +kAa +aFv +aho +kAa +kAa +apl +asq +vxj +cCP +jUb +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(228,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +asq +acO +atX +dsu +avM +ajZ +ajZ +aIH +avz +avg +urt +eHk +obT +asa +asa +asa +asa +asa +asa +asa +smb +asa +asa +asa +obT +bmF +qGh +xmK +kAa +apo +aFv +kAa +kAa +agu +apl +lJH +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(229,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mBb +asq +asq +asq +asq +atX +atX +atX +pAF +sEW +avi +urt +eHk +obT +obT +asa +obT +asa +obT +asa +obT +asa +obT +asa +obT +obT +bmF +xAm +asq +aNN +ahH +aFv +kAa +kAa +agt +apk +fMe +vxj +cCP +ycI +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(230,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +acO +atX +atF +avw +avw +avw +aIH +avz +aSj +qGh +wQe +gdc +vCX +gdc +gdc +aCj +sTd +ata +vWb +gdc +gdc +gdc +gdc +gdc +hDy +xAm +asq +asq +kAa +aFv +agX +kAa +kAa +apk +fMe +tAt +cCP +cCP +aDE +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(231,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +atX +atX +bTU +ajZ +ajZ +aII +avz +aSj +qeB +urt +pob +asq +asq +qGh +urt +aCb +eiL +mRZ +aCb +urt +qGh +asq +asq +asq +asq +asq +ahX +agt +aFx +kAa +agt +apk +apk +fMe +nxB +sFj +sFj +uIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(232,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +atX +atX +atX +atX +avA +avA +aSj +aah +aae +aae +asq +asq +gAG +qdm +pGZ +tyk +qdL +gAG +gAG +asq +asq +lgZ +asq +cAv +apk +apk +apk +apl +apl +apk +apk +pVf +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(233,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +pnH +pnH +asq +lgZ +cMj +aae +aae +aad +tAt +asq +asq +asq +ehZ +ehZ +ehZ +ehZ +ehZ +ehZ +gAG +asq +asq +asq +kVD +azd +pnH +pnH +asq +pnH +pnH +pnH +qZs +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(234,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +kVD +asq +tAt +fHK +asq +asq +asq +asq +ehZ +ehZ +ehZ +ehZ +ehZ +ehZ +asq +asq +asq +tAt +iOL +kVD +kVD +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(235,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +ehZ +fki +fki +fki +ehZ +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(236,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(237,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(238,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(239,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(240,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +tAt +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(241,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(242,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(243,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(244,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(245,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(246,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(247,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(248,1,3) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} + +(1,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(2,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(3,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(4,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(5,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(6,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(7,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(8,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(9,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(10,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(11,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(12,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(13,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(14,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(15,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(16,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(17,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(18,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(19,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(20,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(21,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(22,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(23,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(24,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(25,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(26,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(27,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(28,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(29,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(30,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(31,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(32,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(33,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(34,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(35,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(36,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(37,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(38,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(39,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(40,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +oJq +cAM +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +ftM +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(41,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +kVD +tAt +rMv +rMv +gVz +baK +baK +baK +baK +baK +baK +baK +gVz +rMv +rMv +rMv +rMv +hfZ +eAj +eAj +eAj +eAj +eAj +eAj +mgc +rMv +rMv +rMv +oGD +oGD +izg +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(42,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +kVD +rMv +rMv +gVz +gVz +hGp +fsJ +lER +aLs +aLs +sbR +bpe +gVz +rMv +rMv +rMv +hfZ +pZw +ldP +aMe +aMe +aMe +aMe +uaG +lWf +mgc +rMv +rMv +oGD +oGD +rMv +jAE +ftM +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(43,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +rMv +rMv +uVv +gVz +nBu +ibm +gSb +iAA +gSb +wIJ +kzc +sJe +gVz +rMv +rMv +hfZ +pZw +aMe +aMe +bEf +vdv +vdv +gPx +aMe +aMe +lWf +mgc +nIm +aKv +aKv +aKv +aKv +izg +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(44,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +oJq +rMv +rMv +uVv +uVv +gwY +sIY +oqy +kqt +csm +csm +csm +hAM +ufE +rCE +rMv +rMv +xli +ldP +aMe +bEf +vdv +rpi +rpi +vdv +gPx +aMe +uaG +txX +hTP +aKv +tfC +bpW +aKv +rMv +jAE +ftM +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(45,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +uVv +uVv +uVv +kZL +gwY +nnR +dre +rPG +fbV +jTX +vvf +iHs +num +rCE +rMv +rMv +xli +aMe +aMe +vdv +rpi +rpi +rpi +rpi +vdv +aMe +aMe +txX +hTP +aKv +ltn +nyX +aKv +aKv +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(46,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +uVv +lrF +hnd +jvy +gwY +jNo +hqt +csm +csm +kqt +csm +iHs +rKm +rCE +rMv +rMv +xli +aMe +aMe +vdv +rpi +rpi +rpi +rpi +vdv +aMe +aMe +txX +hTP +aKv +xub +aAW +aAW +dCF +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(47,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +uVv +tel +qQI +jpN +gwY +cEf +tEH +kTQ +aLs +lER +lER +aLs +qJT +gVz +rMv +rMv +xli +eHq +aMe +dLB +vdv +rpi +rpi +vdv +pEW +aMe +lwh +txX +nIm +aKv +qkB +qYg +pqV +eTO +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(48,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +uVv +kZL +reu +kZL +gwY +gwY +gwY +gwY +rFc +rFc +rFc +ylC +rFc +gVz +rMv +rMv +mgH +qgR +aMe +aMe +dLB +vdv +vdv +pEW +aMe +aMe +xTJ +vIV +rMv +aKv +bnd +qYg +pqV +nlu +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(49,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +pwH +mZj +jCJ +bbX +aZP +lxY +kau +tJE +tJE +tJE +gtS +kSA +cqQ +pwH +rMv +rMv +rMv +mgH +dOT +eHq +aMe +aMe +aMe +aMe +lwh +xTJ +vIV +rMv +rMv +aKv +jyI +rGy +rGy +pIv +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(50,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +pwH +qBf +gge +eFH +iVi +iVi +iVi +jdV +eFH +eFH +sSH +iUR +hsb +pwH +rMv +rMv +rMv +rMv +niU +jRu +ooV +ooV +wkl +sZs +hCB +vIV +rMv +rMv +rMv +aKv +bJG +hLn +aSy +uvV +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(51,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +pwH +nsw +fCc +jWf +dXX +dXX +tNB +kSA +wCn +opu +qbx +kSA +lMJ +pwH +rMv +rMv +rMv +fTs +izg +nJz +qoC +qoC +jsi +mtm +rMv +rMv +rMv +rMv +azT +aKv +aAz +vZQ +lcN +rIk +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(52,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +ifO +diA +diA +diA +diA +diA +pha +oeU +pha +diA +lIO +kSA +dcd +pwH +pwH +rMv +rMv +ien +izg +miy +wPk +xog +jsi +mtm +gVE +gVE +gVE +gVE +gVE +aKv +lBR +aAO +ucq +lBR +aKv +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(53,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +ifO +kBq +tyb +ccb +rCh +oET +oET +hTv +mZX +diA +tkI +kSA +qJR +drW +pwH +pwH +rMv +rMv +izg +miy +wPk +xog +jsi +mtm +gVE +rTb +ocd +gvv +ffo +ffo +ffo +ffo +ffo +oaf +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(54,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +mih +gzo +kDZ +bvZ +srB +oET +npk +pKO +cuX +diA +hXw +kSA +qJR +poP +nbx +bwo +rMv +rMv +izg +miy +qoC +qoC +jsi +mtm +gVE +sCx +bsG +djx +rwH +aNJ +aNJ +azR +crO +vNq +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(55,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +mih +gzo +qhR +clu +jcA +hTv +iMP +fMT +qpj +diA +jKY +kSA +bMe +poP +vZl +bwo +rMv +rMv +izg +miy +qoC +qoC +jsi +mtm +gVE +rpj +ocd +aNH +rwH +cdC +cdC +cdC +crO +pAO +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(56,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +mih +lDA +kDZ +usD +cUH +oEF +iMP +keC +bSp +diA +grP +kSA +bMe +poP +vZl +bwo +rMv +rMv +izg +miy +qoC +qoC +jsi +mtm +gVE +fml +epI +djx +rwH +dmx +lcr +fGT +aLW +gXH +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(57,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +mih +htE +wxI +iXq +gxJ +hTv +oWj +sDy +tWB +diA +grP +kSA +bMe +poP +vZl +pwH +rMv +rMv +izg +miy +qoC +qoC +jsi +mtm +gVE +fGT +fjy +aNH +aNJ +hgW +wAO +xrQ +rwH +gXH +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(58,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +ifO +lCu +ilQ +ilQ +vCg +pEt +diA +diA +diA +diA +grP +kSA +bMe +poP +vZl +pwH +rMv +rMv +izg +miy +wPk +xog +jsi +mtm +gVE +gVE +gVE +uET +sQo +rRU +rRU +fkx +rwH +gyZ +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(59,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +ifO +eum +tTo +ilQ +eum +jQJ +oXd +oYg +wlA +jQJ +grP +wBd +qJR +poP +vZl +bwo +rMv +rMv +izg +miy +nvZ +kBt +jsi +mZF +bAL +bAL +gVE +aNH +nmz +iQx +iQx +iQx +lxu +vNq +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(60,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +ifO +eum +sQV +czW +eum +jQJ +kvy +bLq +dVY +jQJ +pYN +kSA +bMe +poP +vZl +bwo +rMv +rMv +izg +miy +qoC +qoC +hyE +rpg +tuU +ble +gVE +lzb +fkD +rwn +rwn +rwn +bhs +gXH +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(61,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +ifO +diA +diA +diA +diA +jQJ +tAe +iHf +ugH +jQJ +isN +kSA +bMe +poP +wdt +bwo +rMv +rMv +izg +miy +qoC +qoC +qoC +xog +kBt +mPQ +gVE +aNH +tQt +hNu +hNu +hNu +oTo +vNq +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(62,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +nvA +sjy +sjy +sjy +sjy +isz +kho +dKd +aAi +jQJ +lUx +kSA +lIc +kVA +pwH +pwH +rMv +rMv +izg +xeq +qoC +qoC +qoC +xog +wPk +jsi +gVE +aNH +mIQ +rwn +rwn +rwn +bfL +pAO +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(63,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +nvA +ixA +orG +kRI +cqI +kRI +cuO +aek +rnI +bld +eFH +bbX +sIP +pwH +pwH +rMv +rMv +rMv +izg +bNU +iBh +gXh +gXh +njV +wPk +jsi +gVE +aNH +nUG +gLO +gLO +qak +orQ +vNq +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(64,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +nvA +nKn +izE +gkN +wHp +umH +riK +vcU +sud +jQJ +bMr +kSA +cvm +pwH +rMv +rMv +rMv +rMv +rMv +jAE +jAE +jAE +ftM +miy +qoC +jsi +gVE +idw +cdC +cdC +cdC +cdC +cdC +ujm +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(65,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +nvA +jQJ +jQJ +jQJ +jQJ +jQJ +jQJ +jQJ +jQJ +jQJ +gtV +ioy +gtV +mcY +bAL +bAL +bAL +bAL +bAL +bAL +bAL +bAL +jXP +miy +qoC +jsi +aKi +xXz +fDh +gtN +xXz +xXz +hIw +oMm +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(66,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +rHi +bry +wEu +xjJ +cKx +qSH +dLf +bAi +mDG +uav +kiZ +iRo +vcH +nmS +rpg +rpg +rpg +rpg +rpg +rpg +rpg +rpg +rpg +tuf +qoC +jsi +aKi +aKh +waE +waE +hLj +xXz +cvJ +lrf +gVE +izg +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(67,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +nmS +paV +nWo +rGw +cko +dvS +mHU +xqz +eyG +rUh +lTL +ilx +aYk +xqz +qoC +xog +cmb +qoC +qoC +uLq +eyI +qoC +qoC +qoC +wPk +jsi +aKi +aMw +wyt +iNQ +lSX +xXz +osa +lLy +gVE +izg +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(68,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +nmS +gvL +lPZ +tec +tec +lPZ +iKi +fXU +eyG +rZz +cXN +rUh +aYk +fXU +qoC +cdT +fAZ +qoC +qoC +cdT +cdT +qoC +qoC +qoC +gxh +jsi +aKi +kpw +iNQ +iNQ +aAV +xXz +gBV +enL +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(69,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +rHi +sIL +kBN +bXM +myz +ezM +eaE +bAi +fuS +xSX +gxR +qOh +nnx +nmS +gXh +gXh +gXh +gXh +gXh +gXh +gXh +gXh +gXh +njV +qoC +jsi +aKi +ueN +kAP +mue +aAV +xXz +gBV +enL +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(70,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +rHi +rHi +tqc +tqc +mHT +mHT +sPc +mHT +sPc +mHT +mHT +tqc +rHi +rHi +jAE +jAE +jAE +jAE +jAE +jAE +jAE +jAE +ftM +miy +qoC +jsi +aKi +ueN +kAP +mue +tMi +xXz +hsd +tVG +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(71,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mtm +rMv +rHi +rHi +tqc +mHT +nyk +rOe +rRn +uvY +xje +mHT +tqc +rHi +rMv +rMv +rMv +rMv +rMv +rMv +rMv +rMv +cXJ +izg +miy +qoC +jsi +aKi +aKh +gAI +aMc +uPn +xXz +gVE +gVE +gVE +izg +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(72,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +mZF +bAL +rMv +rHi +tqc +mHT +mKV +bbj +xzT +kli +nrc +mHT +tqc +rHi +rMv +bAL +bAL +bAL +bAL +bAL +bAL +rMv +rMv +izg +miy +qoC +jsi +aKi +aAy +fDh +byE +aKi +aKi +gVE +rMv +bAL +jXP +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(73,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +mtm +rHi +rHi +ije +gwA +dzI +lKy +nEy +mNp +ije +rHi +rMv +jXP +tAt +tAt +tAt +tAt +tAt +tAt +mZF +rMv +izg +miy +wPk +hyE +rpg +rpg +tuf +kIF +mtm +rMv +rMv +izg +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(74,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +mZF +bAL +rMv +ije +sGW +ttA +fBd +tEc +nlz +ije +rMv +jXP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mZF +izg +miy +gvo +iXi +gXh +gXh +vyC +qzB +mtm +fLv +bAL +jXP +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(75,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +kVD +kVD +kVD +tAt +tAt +kVD +kVD +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mtm +ije +ije +fIl +fIl +fIl +ije +ije +izg +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +izg +miy +xog +jsi +oJq +jAE +jAE +jAE +rMv +izg +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(76,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +mZF +bAL +bAL +bAL +bAL +bAL +bAL +bAL +jXP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jXP +xUl +gfb +vvo +mZF +bAL +bAL +bAL +bAL +jXP +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(77,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mIp +rIA +fBe +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(78,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +mIp +rIA +fBe +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(79,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +urX +tKp +tKp +tKp +tKp +tIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +bjh +qKh +vej +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +udB +bkp +bkp +bkp +bkp +sKU +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(80,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +tAt +urX +tKp +eJV +eJV +eJV +eJV +eJV +eJV +tKp +tKp +tIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +urX +tKp +tKp +tKp +tKp +tKp +tKp +tKp +tIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tJP +hlF +tkb +exQ +udB +bkp +bkp +bkp +bkp +sKU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +udB +bkp +cFv +xNr +xNr +gIE +xNr +cFv +bkp +sKU +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(81,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +tAt +tAt +naP +nzU +nzU +aXD +aXD +aXD +aXD +aXD +nzU +nzU +efR +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +naP +eJV +eJV +eJV +dDP +eJV +eJV +eJV +efR +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tJP +jdf +cGP +usj +bAm +icG +icG +icG +icG +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +bAm +xNr +xNr +xNr +riA +riA +xNr +xNr +xNr +cFv +bkp +sKU +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(82,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +tAt +urX +tKp +eJV +nzU +kwe +rsl +enK +sLl +nWR +nWR +fUd +nzU +eJV +tKp +tKp +tKp +tKp +tKp +tKp +tKp +tKp +tKp +eJV +eJV +qeL +sao +eJV +fEs +eJV +eJV +eJV +tIn +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +udB +tJP +jdf +gEX +usj +bAm +icG +fhb +nZB +icG +cFv +bkp +bkp +bkp +bkp +bkp +bkp +bkp +bkp +bkp +cFv +xNr +qtx +qtx +ciM +sUN +izk +peZ +xNr +xNr +xNr +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(83,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +tAt +tAt +naP +nzU +nzU +nzU +jXL +diL +ygb +wik +diL +ygb +kpo +nzU +nzU +nzU +nzU +nzU +aXD +aXD +aXD +nzU +nzU +nzU +rBO +rBO +rBO +rBO +rBO +rBO +rBO +rBO +eJV +eJV +tIn +tAt +tAt +tAt +tAt +tAt +tAt +udB +cFv +tJP +jdf +xnW +usj +bAm +icG +fhb +nkk +icG +cFv +cFv +jUU +jUU +jUU +jUU +jUU +jUU +ipN +ipN +kst +jUU +jkb +jkb +jkb +jkb +jyM +jkb +qtx +qfo +xNr +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(84,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +urX +tKp +tKp +eJV +nzU +ijZ +haU +ebl +ebl +wiV +wiV +wiV +ebl +ebl +xEF +wJR +mmQ +iCb +axK +wiV +wiV +wiV +sqh +fhX +uxQ +mJh +dQF +dQF +dQF +dQF +dQF +bCp +klG +naP +eJV +eJV +tIn +tAt +tAt +tAt +udB +bkp +cFv +llU +tJP +jdf +xnW +usj +bAm +icG +fVP +fVP +icG +cFv +cFv +jUU +hZb +ukC +fWh +mmU +gdM +gdM +eeY +gdM +gdM +gdM +dnc +gdM +gdM +gdM +jiK +qtx +pta +xNr +cFv +bkp +bkp +sKU +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(85,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +nzU +nzU +nzU +fYI +vdn +kkQ +kkQ +vmL +vmL +vmL +kkQ +kkQ +kkQ +kkQ +hsk +kkQ +kkQ +kkQ +kkQ +kkQ +vdn +qUT +oKk +tIJ +wey +jBH +jBH +wey +jBH +byk +hog +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +llU +cFv +tJP +jdf +gEX +usj +bAm +icG +aFe +kpy +icG +cFv +cFv +jUU +czB +kVu +cOP +jkb +oZL +qCE +fgp +oZL +tom +pvc +lOK +lOK +lOK +lOK +fhz +qtx +ckk +xNr +xNr +xNr +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(86,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +nNU +ebl +xEF +duj +tvo +uNg +yfU +lij +lij +lij +lij +lij +lij +opr +opr +opr +heF +qjR +wnM +wnM +nIP +tpJ +uxQ +ykS +oYP +oYP +oYP +oYP +wVU +byk +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +gEX +usj +bAm +icG +hla +ixc +icG +cFv +cFv +jUU +hrS +eQt +lkA +iYT +dKZ +aYJ +fgp +dKZ +ncD +opd +okw +okw +okw +fdR +fhz +oUW +jKV +peZ +jKV +gIE +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(87,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +mtI +prz +vmL +vmL +wjO +bJd +elY +kxV +cBO +nWR +sLl +nWR +enK +dLC +dxj +dxj +ugI +xpj +fuG +kpY +tvo +bJd +nzU +tKp +tKp +tKp +tKp +tIn +dBJ +wey +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +fZp +icG +hla +ixc +icG +cFv +cFv +jUU +nNc +jkb +iYT +iYT +maz +tty +fgp +maz +okw +okw +okw +okw +okw +okw +fhz +qtx +pta +nUq +jKV +xNr +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(88,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +qla +nIP +heF +wnM +nIP +sll +vfx +pfV +vfx +mKL +mKL +mKL +mKL +vfx +vfx +vfx +sVG +fNm +duN +kpY +tvo +eFc +nzU +eJV +eJV +eJV +wMI +efR +dBJ +wey +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +gEX +blI +cQV +tGE +hla +ixc +tGE +cFv +cFv +jUU +oGw +erm +lOK +lOK +okw +tty +fgp +maz +okw +okw +okw +okw +okw +okw +fhz +xNr +xNr +oHa +dED +xNr +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(89,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +ouc +nIP +sll +vfx +jGm +mKL +vfx +aYq +lJe +rim +rim +fND +rim +kEf +fPN +mKL +soG +onE +mXD +kpY +tvo +wve +nzU +eJV +eJV +eJV +eJV +efR +dBJ +wey +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +vIi +ujw +xnW +jrp +hla +ixc +tGE +cFv +cFv +jUU +oGw +maz +okw +okw +okw +tty +fgp +maz +okw +okw +okw +okw +okw +okw +nOp +jUU +tJP +owT +vHm +oAS +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(90,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +oRV +tvo +sll +pfV +bVb +gLr +gLr +gLr +gLr +gLr +tQP +ngi +tQP +eQm +caD +mKL +fAF +rDG +mXD +kpY +tvo +sll +uxQ +eJV +eJV +eJV +eJV +efR +dBJ +byk +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +uMN +vzW +cKJ +tGE +lXx +ixc +tGE +cFv +cFv +jUU +oQx +maz +okw +okw +okw +tty +fgp +maz +okw +okw +okw +okw +okw +okw +fhz +jUU +tJP +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(91,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +rnA +tvo +bJd +vfx +uYQ +nYL +nYL +nYL +nYL +nYL +nYL +nYL +nYL +spH +mWe +pfV +suq +gJo +mXD +fuG +nIP +vTG +uxQ +eJV +eJV +eJV +eJV +efR +dBJ +byk +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +udB +icG +icG +icG +icG +cFv +cFv +kst +oGw +maz +okw +okw +nUa +uXu +fgp +vuB +nUa +nUa +okw +okw +okw +fdR +fhz +jUU +tJP +jdf +ewU +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jyc +aTb +aTi +aTf +aTd +aTb +aTi +aTf +aTd +vZk +tWS +aTf +aTd +aTb +aTi +aTf +aTd +aTb +aTi +aTf +aTd +aTb +xNB +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(92,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nzU +kpY +tvo +gDV +vfx +hjt +nYL +oZR +mJk +evP +nYL +evP +oZR +mJk +spH +aKV +vfx +hwS +rbf +dnN +fuG +nIP +uKv +nzU +eJV +eJV +eJV +eJV +efR +dBJ +wey +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +uMN +usj +bAm +cFv +cFv +cFv +cFv +cFv +cFv +jUU +oGw +maz +okw +okw +okw +tty +fgp +eUJ +okw +okw +okw +okw +okw +okw +fhz +jUU +tJP +jdf +ewU +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aTk +mSw +aEa +mSw +mSw +mSw +mSw +mSw +mSw +mSw +mSw +aEa +mSw +mSw +mSw +mSw +mSw +mSw +mSw +mSw +aEa +mSw +aFl +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(93,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +uxQ +fuG +nIP +bJd +mKL +hKm +nYL +nYL +nYL +fTg +nYL +iST +njc +iST +spH +fQy +vfx +uiI +eEe +dnN +kpY +tvo +uKv +nzU +eJV +eJV +eJV +eJV +efR +dBJ +wey +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +uMN +usj +bAm +cFv +cFv +cFv +cFv +cFv +cFv +jUU +oGw +maz +okw +okw +okw +tty +fgp +dKZ +okw +okw +okw +okw +okw +okw +fhz +hBr +tJP +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aTl +mSw +mSw +mSw +mSw +mSw +mSw +juA +aTh +aTh +aTh +aTh +aTh +aTh +aTh +qho +mSw +mSw +mSw +mSw +mSw +mSw +aPw +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(94,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +uxQ +fuG +nIP +bJd +mKL +hKm +nYL +nYL +nYL +nYL +nYL +nYL +xIn +nYL +pLz +uzP +vfx +nDe +nDe +exc +tEk +yaN +bii +nDe +eJV +eJV +eJV +eJV +efR +dBJ +wey +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +bAm +dOq +dOq +tNa +tNa +dOq +xkK +jUU +oGw +uWC +xua +xua +xua +mSE +fgp +uWC +xua +xua +xua +xua +xua +xua +fhz +hBr +tJP +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aTn +mSw +mSw +mSw +mSw +mSw +mSw +aTh +mSw +juA +aTh +qiV +mSw +juA +aTh +aTh +mSw +mSw +mSw +mSw +mSw +mSw +aSZ +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(95,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +uxQ +oho +nIP +bJd +mKL +hKm +nYL +mJk +evP +oZR +nYL +oZR +mJk +evP +pLz +fQy +vfx +nDe +nDe +mEy +fff +uoQ +bii +nDe +oEl +mQs +mQs +mQs +rXN +dBJ +byk +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +bAm +dOq +jcz +pPB +vEL +kEL +fwH +mmU +eeY +nqJ +nqJ +nqJ +nqJ +nqJ +eeY +dlI +dlI +dlI +dlI +dlI +dlI +dlI +gdM +hBr +tJP +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +fVx +mSw +mSw +mSw +mSw +mSw +mSw +aTh +juA +aTh +qiV +mSw +juA +aTh +qiV +aTh +mSw +mSw +mSw +mSw +mSw +mSw +kbb +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(96,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nDe +fWH +keo +tDM +vfx +caW +nYL +nYL +krK +bgt +nYL +nYL +nYL +xzN +spH +sxy +vfx +pZu +nNC +ffn +oQQ +yaN +cyC +vih +aTX +aTX +aTX +aTX +bUB +dBJ +byk +wAM +naP +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +hdr +usj +bAm +lZD +pPB +nVK +vEL +xLq +xLq +iYT +oGw +erm +lOK +lOK +lOK +wFn +fgp +erm +lOK +lOK +lOK +lOK +lOK +lOK +ttc +hBr +tJP +jdf +ewU +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +fKE +mSw +mSw +mSw +mSw +mSw +mSw +aTh +aTh +qiV +mSw +juA +aTh +qiV +mSw +aTh +mSw +mSw +mSw +mSw +mSw +mSw +tjn +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(97,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nDe +nwD +rXV +tDM +vfx +gFk +nYL +nYL +nYL +nYL +nYL +nYL +nYL +sQb +spH +iHj +pfV +tYG +bjf +ffn +hfG +yaN +tDM +vih +aTX +cQr +cQr +aTX +bUB +dBJ +wey +wAM +naP +yed +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +fvE +tJP +jdf +uMN +usj +bAm +lZD +mqF +nVK +pPB +nHn +nGH +jkb +oGw +maz +okw +okw +okw +tty +fgp +maz +okw +okw +okw +okw +okw +okw +tty +hBr +tJP +jdf +ewU +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +eKb +mSw +mSw +mSw +mSw +mSw +mSw +aTh +qiV +mSw +juA +qEG +qiV +mSw +juA +aTh +mSw +mSw +mSw +mSw +mSw +mSw +nmp +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(98,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +naP +nDe +dNM +rXV +tDM +pfV +kYY +ilO +ocr +ykL +cQS +cQS +cQS +dpw +dpw +dsJ +nkz +vfx +gKi +yal +kGi +hfG +yaN +tDM +nDe +aTX +cQr +cQr +aTX +bUB +dBJ +wey +wAM +naP +eJV +rBO +joM +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +bAm +lZD +tlY +nVK +vEL +kmY +bZh +jkb +oGw +maz +okw +okw +okw +tty +fgp +maz +okw +okw +xua +xua +xNd +xua +mSE +mkX +tJP +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +veg +mSw +mSw +mSw +mSw +mSw +mSw +aTh +mSw +juA +aTh +qiV +mSw +juA +aTh +aTh +mSw +mSw +mSw +mSw +mSw +mSw +kie +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(99,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +naP +nDe +fWH +xNu +tDM +vfx +vfx +vfx +vfx +pfV +vfx +mKL +mKL +mKL +mKL +jGm +mKL +vfx +gkf +mcJ +gpl +lZl +kUw +aBW +nDe +aTX +aTX +aTX +aTX +bUB +dBJ +wey +wAM +naP +efR +hsx +hsx +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +bAm +dOq +asV +nVK +vFs +ghj +ghj +jkb +oQx +maz +okw +okw +okw +tty +fgp +maz +okw +tty +jUU +jUU +jUU +jUU +jUU +jUU +tJP +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +rHC +mSw +mSw +mSw +mSw +mSw +mSw +aTh +juA +aTh +qiV +mSw +juA +aTh +qiV +aTh +mSw +mSw +mSw +mSw +mSw +mSw +kbb +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(100,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +naP +nDe +exc +kUw +tDM +ghL +ghL +iVY +xXl +xXl +pPt +hmm +jtY +chK +pQb +yaN +lWE +iEs +iWI +gjJ +enR +tEk +kUw +tDM +nDe +jda +bNc +bNc +bNc +lSf +dBJ +wey +wAM +qnr +joM +hsx +hsx +tAt +tAt +tAt +fZp +hPY +hPY +hPY +tNM +jdf +xnW +usj +fZp +dOq +vEL +pPB +vEL +vEL +xoZ +jkb +oGw +maz +okw +okw +okw +tty +fgp +maz +okw +tty +jUU +hPY +hPY +hPY +hPY +hPY +tNM +jdf +xnW +usj +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aTk +mSw +mSw +mSw +mSw +mSw +mSw +aTh +aTh +qiV +mSw +juA +aTh +qiV +mSw +aTh +mSw +mSw +mSw +mSw +mSw +mSw +aFl +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(101,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nDe +fbE +yaN +fKk +dTY +dTY +dTY +mef +xVz +mef +dTY +dTY +dTY +ofU +kUw +fKk +iHC +sNr +fwY +iHC +ofU +kUw +wDq +vih +mJh +dQF +dQF +dQF +dQF +qnH +byk +sTc +dQF +dQF +uNq +fCp +mxF +vqU +vqU +uEm +cQV +cQV +cQV +cQV +bvE +uMN +blI +sFM +lZD +dDp +sGY +sGY +dDp +sGY +iYT +oGw +uWC +xua +xua +xRA +pfo +fgp +qPM +xRA +pfo +hBr +uEm +cQV +cQV +cQV +cQV +cQV +bvE +ewU +slU +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aTl +mSw +mSw +mSw +mSw +mSw +mSw +qpt +aTh +aTh +aTh +aTh +aTh +aTh +aTh +qiV +mSw +mSw +mSw +mSw +mSw +mSw +aPw +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(102,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +aza +aza +aza +ncP +ncP +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nDe +qGS +xFG +dlq +jGq +dlq +mZH +jGq +dlq +jGq +jGq +jGq +jGq +dlq +mZH +jGq +jGq +jGq +jGq +jGq +dlq +nvk +dAm +wHW +tIJ +wey +nLd +nLd +uIF +wey +fZk +nLd +wey +nLd +ofW +fCp +dKG +oFk +oFk +cMv +pjT +hdr +xnW +xnW +hdr +hdr +hdr +tAO +pUj +xqB +fSp +xqB +wJg +wJg +mmU +eeY +nqJ +nqJ +nqJ +nqJ +nqJ +eeY +nqJ +nqJ +nqJ +mmU +cMv +hdr +hdr +xnW +xnW +xnW +hdr +ngr +slU +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aTn +mSw +aEa +mSw +mSw +mSw +mSw +mSw +mSw +mSw +mSw +aEa +mSw +mSw +mSw +mSw +mSw +mSw +mSw +mSw +aEa +mSw +aSZ +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(103,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +njj +rpn +njj +ncP +ncP +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +nDe +gwQ +brA +gjJ +juj +vaN +yaN +iWI +hEC +kwZ +kwZ +kwZ +iWX +enR +kUw +iWI +wqb +gjJ +brA +aQG +exc +kUw +ivS +vih +ykS +oYP +dxu +jBH +uRZ +oYP +oYP +oYP +oYP +tvY +bkz +fCp +ddK +dKB +dKB +ewF +cKJ +cKJ +cKJ +cKJ +qqK +uMN +vzW +bEw +lZD +lTC +eRx +mGC +ikT +vvg +iYT +sph +weK +vah +vah +vah +rSO +fgp +eQH +vah +dQV +hBr +ewF +cKJ +cKJ +cKJ +cKJ +cKJ +cKJ +qsM +dmQ +bAm +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jyc +aTc +aTj +aTg +aTe +aTc +aTj +aTg +aTe +llH +pjR +aTg +aTe +aTc +aTj +aTg +aTe +aTc +aTj +aTg +aTe +aTc +jyc +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(104,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +eyY +iqV +njj +rpn +njj +iqV +eyY +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +ydL +ydL +ogg +pXn +pXn +jwe +fJh +jwe +pXn +xSY +xSY +xSY +xSY +hou +smG +hou +xSY +xSY +xSY +xSY +eJP +sMx +aUl +nDe +tKp +tIn +dBJ +wey +wAM +urX +tKp +tKp +tKp +tIn +hsx +hsx +tAt +tAt +tAt +udB +bkp +bkp +bkp +sKU +jdf +xnW +usj +udB +mhc +fBf +eBS +fBf +fBf +fBf +gzH +gzH +gzH +gXr +gXr +lLh +lLh +lnI +lLh +lLh +gXr +lKH +bkp +bkp +bkp +bkp +bkp +bkp +bkp +bkp +bkp +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(105,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +sfT +jgW +hiK +pXn +myp +oTe +oTe +mro +fjo +xSY +mLK +qUP +qSa +bBm +olG +pQp +wyf +oGi +mqG +xSY +wYr +qAE +wYr +nDe +lvP +efR +dBJ +wey +wAM +naP +eJV +eJV +eJV +efR +hsx +hsx +tAt +tAt +tAt +bAm +jIw +cFv +cFv +tJP +jdf +xnW +usj +bAm +mhc +kRQ +pIL +rVs +aZH +uLa +pFq +hUY +loI +gXr +rex +gTw +ufT +gTw +gTw +ufT +xMJ +lKH +guz +dwW +dwW +dwW +dwW +guz +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(106,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +ydL +brj +hiK +pXn +ezq +vlu +hwD +piA +rNg +xSY +xqc +mgp +mgp +sOL +uIX +ows +gcW +wsE +vpC +xSY +mSs +tIJ +jMA +naP +lvP +efR +dBJ +wey +wAM +naP +eJV +eJV +eJV +eJV +tKp +tIn +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +bAm +jRd +gzg +aTY +gmI +mTy +uJZ +low +dZT +oCH +gXr +kLW +dgc +inH +inH +inH +bsv +jjJ +iEU +sIn +tXO +tXO +tXO +tXO +sRM +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(107,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +ydL +smL +gHu +pXn +irH +piA +oOE +piA +sYW +hou +mAh +thC +pxU +vEp +guA +tEh +bwt +igs +jUS +tDl +dBJ +wey +wAM +qnr +rBO +joM +dBJ +wey +wAM +naP +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +uMN +usj +bAm +jRd +mVt +nza +aVz +xSA +aVz +xSA +aTY +tEz +gXr +vGh +mbp +inH +cma +inH +kWK +oXM +iEU +sIn +tXO +tXO +tXO +tXO +sRM +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(108,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +ydL +xhx +gHu +pXn +lyn +iOc +icc +tIB +vVS +smG +ykT +dHq +oxX +qxj +sQT +mgp +fVy +rjv +wmZ +tDl +dBJ +jBH +ccw +dQF +dQF +dQF +qnH +rqT +wAM +naP +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +uMN +usj +bAm +jRd +mVt +aTY +aTY +iej +aTY +aTY +aTY +tEz +gXr +umo +ubD +uQD +nVc +inH +jKK +oXM +lKH +sIn +tXO +tXO +tXO +tXO +sRM +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(109,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +sfT +oMD +eRg +pXn +rDu +nXA +jwA +hfV +sYW +hou +ePz +thC +lpP +njy +qzV +pxU +lWv +thC +mkL +tDl +moF +nLd +nLd +wey +wey +wey +nLd +uox +dmp +naP +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +bAm +mhc +iuF +ulJ +jHs +lSv +vtc +tXK +aYx +jcZ +gXr +mAc +dgc +uQD +pzO +inH +dgc +oXM +lKH +sIn +tXO +tXO +tXO +tXO +sRM +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(110,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +ydL +biX +qFs +pXn +pMv +dCY +sIN +sIN +vVS +xSY +vet +tCR +thC +pMC +ckX +ckX +fqb +thC +iNk +xSY +ctZ +xlX +oYP +oYP +oYP +oYP +oYP +pWv +tTK +naP +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +xnW +usj +fZp +mhc +egi +egi +gzH +gzH +xbT +gzH +nwA +egi +gXr +mAc +jql +inH +szy +inH +mTK +oXM +lKH +guz +nro +nro +nro +nro +guz +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(111,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +naP +ydL +ydL +ydL +pXn +qVq +dCY +dUh +kGY +vVS +xSY +bYG +iyD +kwF +mgp +mgp +mgp +xZV +rXj +nFO +xSY +tKp +tKp +tKp +tKp +tKp +tKp +tKp +tKp +tKp +eJV +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +bAm +cFv +cFv +cFv +tJP +jdf +uMN +blI +cQV +jRd +bPA +bPA +uoC +bSG +pJK +uHB +bPA +dvv +gXr +bUd +bKO +inH +inH +inH +gDA +uVH +lKH +cFv +cFv +cFv +cFv +cFv +cFv +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(112,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +qnr +rBO +eJV +pXn +pXn +uLH +dCY +xSB +xSB +sYW +xSY +pSE +tGt +feC +hXf +hXf +hXf +aXq +eYm +cjE +xSY +eJV +huQ +eJV +eJV +eJV +eJV +nbP +wMI +eJV +eJV +eJV +eJV +eJV +eJV +rBO +joM +tAt +tAt +tAt +fZp +hPY +cFv +cFv +tJP +qor +ujw +ujw +xnW +xFw +bPA +iLx +kuu +kuu +qPY +iLx +xbl +iLx +gXr +rzP +kcL +dgc +pqx +ryZ +dgc +jjJ +iEU +cFv +cFv +cFv +cFv +cFv +cFv +cFv +cFv +hPY +hPY +tNM +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(113,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +naP +pXn +pXn +pXn +rzk +mgv +gSO +pAi +hrY +fxI +fVM +mui +ddD +qmb +uTJ +uTJ +gue +gNS +hrY +eJV +eJV +eJV +eJV +eJV +eJV +eJV +yed +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +tAt +tAt +tAt +tAt +bAm +cFv +tJP +qdF +qLq +cKJ +cKJ +jRd +ufa +iLx +gEK +kuu +iLx +iLx +dvv +uBD +gXr +vce +oQp +wud +hMW +bMS +xRx +iCt +iEU +cFv +cFv +cFv +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(114,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +qnr +rBO +eJV +pXn +xfb +hVQ +jbZ +dvr +xSY +pXu +iea +pTW +oOy +phq +phq +voa +guG +rRg +xSY +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +rBO +joM +tAt +tAt +tAt +tAt +tAt +tAt +tAt +fZp +hPY +cFv +bkp +bkp +bkp +bkp +mhc +mhc +sHa +cOw +drj +vbA +dca +cwW +hbW +gXr +dgc +uyn +iko +xtk +fFx +jKK +lKH +lKH +cFv +cFv +cFv +cFv +cFv +cFv +hPY +tNM +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +dvZ +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(115,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +naP +pXn +pXn +qhd +qhd +pXn +xSY +xSY +dUA +dUA +dUA +dUA +dUA +dUA +dUA +xSY +xSY +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +eJV +efR +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +bAm +cFv +gKR +gKR +cFv +cFv +mhc +ucK +mhc +mhc +mhc +mhc +ucK +mhc +lKH +ojG +ojG +lKH +lKH +ojG +ojG +lKH +cFv +cFv +cFv +cFv +cFv +cFv +tJP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(116,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qnr +rBO +rBO +rBO +rBO +rBO +rBO +goe +rBO +rBO +rBO +rBO +rBO +rBO +rBO +ojx +rBO +rBO +rBO +rBO +rBO +rBO +rBO +rBO +rBO +rBO +rBO +rBO +joM +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +fZp +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +hPY +tNM +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +dvZ +dvZ +dvZ +aRD +aRD +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(117,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tHP +tAt +tAt +tAt +tAt +ete +fGf +tAt +tAt +tAt +tAt +tAt +tAt +ete +fGf +tAt +tAt +tAt +tAt +ete +fGf +tAt +tAt +tAt +tAt +ete +fGf +tAt +tAt +dvZ +dvZ +aRD +aRD +aRD +aRD +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(118,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +api +api +api +api +api +api +api +api +nyg +nyg +nyg +nyg +api +api +api +api +api +api +bdL +bdL +bdL +pNx +pNx +pNx +pNx +bdL +bdL +bdL +bdL +dvZ +dvZ +aRD +aRD +aRD +aRD +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(119,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +vZH +lJR +cEG +icw +icw +wIx +rMK +cEG +icw +icw +icw +icw +icw +icw +wIx +rMK +cEG +icw +anm +geS +kKR +aVQ +geS +geS +geS +geS +kKR +aVQ +geS +bdL +dvZ +dvZ +dvZ +aRD +aRD +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(120,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +vZH +lJR +cEG +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +anm +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(121,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +tAt +kVD +kVD +kVD +kVD +kVD +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +vZH +lJR +cEG +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +lJR +anm +rsz +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +dvZ +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(122,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aMQ +aMQ +tAt +tAt +tAt +kYL +kYL +hoK +api +lJR +cEG +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +anm +geS +geS +geS +geS +geS +geS +geS +qLp +qLp +geS +geS +geS +geS +bdL +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(123,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +kVD +kVD +api +cEG +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +anm +geS +geS +geS +geS +geS +geS +geS +qLp +kIy +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(124,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +tAt +kVD +kVD +kVD +kVD +tAt +kVD +kVD +tAt +tAt +api +icw +icw +icw +icw +jAf +bXx +lJR +icw +icw +icw +icw +jAf +tfI +tfI +bXx +icw +icw +icw +icw +lJR +anm +rsz +geS +geS +geS +geS +geS +geS +hqv +rKf +tXJ +gwb +ltI +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(125,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +kVD +tAt +tAt +tAt +kVD +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +aol +aol +aol +aol +aol +aol +aol +aol +aol +aol +aol +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +wIx +cEG +icw +icw +icw +icw +lJR +wIx +rMK +rMK +cEG +lJR +icw +icw +icw +icw +anm +geS +geS +geS +geS +geS +geS +geS +dLn +geS +geS +hqv +kIy +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(126,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aMQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +kVD +kVD +kVD +aol +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +aol +kVD +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +lJR +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +anm +geS +geS +geS +geS +geS +dmH +dmH +kIy +geS +geS +hqv +kIy +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(127,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +aMQ +aMQ +tAt +tAt +tAt +aMQ +aMQ +aMQ +tAt +tAt +tAt +aMQ +aMQ +aMQ +tAt +tAt +tAt +aMQ +aMQ +tAt +tAt +tAt +tAt +tAt +aMQ +aMQ +aMQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +kVD +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +kVD +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +lJR +anm +rsz +geS +geS +geS +dmH +dmH +arF +kIy +geS +geS +hqv +tEN +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(128,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +aMQ +aMQ +aMQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +kVD +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +geS +geS +geS +geS +dmH +rKf +rKf +kIy +geS +geS +hqv +qLp +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(129,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +kVD +tAt +tAt +kVD +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +kVD +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +icw +icw +icw +icw +icw +lJR +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +geS +geS +geS +geS +dmH +geS +geS +hqv +gwb +gwb +arF +qLp +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(130,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +asq +tAt +kVD +tAt +kVD +aol +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +icw +icw +icw +lJR +lJR +lJR +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +geS +geS +geS +geS +dmH +geS +geS +hqv +rKf +rKf +arF +qLp +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(131,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jwI +jwI +tAt +tAt +tAt +asq +asq +tAt +kVD +kVD +tHP +aol +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +aol +aol +aol +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +icw +icw +icw +lJR +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +geS +geS +geS +geS +dmH +gwb +gwb +kIy +geS +geS +hqv +qLp +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(132,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hCk +hCk +hCk +jwI +tAt +tAt +tAt +asq +asq +tAt +aol +aol +aol +gIb +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +ctC +aol +aol +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +api +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +icw +lJR +anm +rsz +geS +geS +geS +dmH +dmH +arF +kIy +geS +geS +hqv +tEN +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(133,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hCk +hCk +hCk +jwI +tAt +tAt +asq +asq +tAt +tAt +aol +aol +aBl +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aol +aol +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +api +icw +icw +lJR +icw +lJR +icw +icw +icw +icw +icw +icw +icw +lJR +icw +lJR +icw +icw +icw +icw +icw +anm +geS +geS +geS +geS +geS +dmH +dmH +kIy +geS +geS +hqv +kIy +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(134,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hCk +hCk +hCk +jwI +tAt +tAt +asq +asq +tAt +aol +aol +aoz +aBl +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aol +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +api +api +api +api +nyg +api +api +api +api +api +api +api +api +api +nyg +api +api +api +api +api +api +anm +geS +geS +geS +geS +geS +dmH +rKf +kIy +geS +geS +hqv +kIy +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(135,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hCk +hCk +hCk +jwI +tAt +tAt +tAt +asq +asq +asq +aoz +aoz +aBl +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aoz +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +kKq +ale +cxE +iyO +iyO +iyO +iyO +iyO +iyO +iyO +fYw +cyp +kKq +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +geS +geS +hqv +gwb +vVA +rKf +uCR +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(136,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +hCk +hCk +hCk +asq +tAt +tAt +tAt +asq +aoz +aoz +aoz +aoz +aBl +mre +cmK +aoz +aoz +aoz +aoz +adp +aAG +aAG +aAG +aAG +aAG +aAG +aAG +azN +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aoz +aoz +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +mwR +fAt +fAt +fAt +fAt +fAt +hvy +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +geS +geS +qLp +kIy +geS +geS +geS +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(137,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +hCk +hCk +hCk +jwI +tAt +tAt +asq +asq +aAG +aAG +aAG +aAG +kuC +hpv +aKw +aAG +aAG +aAG +aAG +kuC +azH +dFa +dFa +dFa +dFa +dFa +wrA +aKw +aAG +aAG +aAG +aAG +kuC +fuU +aKw +aAG +aAG +aAG +aAG +npT +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +kKq +amz +rsz +geS +geS +geS +geS +geS +geS +qLp +qLp +geS +geS +geS +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(138,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +jwI +tAt +tAt +asq +asq +asq +lfp +hhH +lfp +lfp +tOZ +aov +lfp +lfp +lfp +lfp +lfp +dFa +aBp +aKu +aKu +aKu +aKu +aKu +aBp +dFa +lfp +lfp +lfp +lfp +lfp +azQ +qPX +dFa +dFa +dFa +aol +aol +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +kKq +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(139,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kYL +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +jwI +jwI +asq +asq +asq +asq +hDM +hDM +hDM +hDM +aZF +mre +aAS +hDM +hDM +hDM +aZF +ctC +aKu +aKu +aRD +aRD +aRD +aKu +aKu +gIb +aAS +hDM +hDM +hDM +hDM +rYV +mre +vpZ +hDM +hDM +hDM +aKJ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(140,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +jwI +asq +asq +asq +asq +asq +aoz +aoz +aoz +aoz +aBl +mre +cmK +aoz +aoz +aoz +aBl +aKu +aKu +aRD +aRD +aRD +aRD +aRD +aKu +aKu +cmK +aoz +aoz +aoz +aoz +aBl +mre +cmK +aoz +aoz +aoz +aoz +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +geS +rsz +geS +geS +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(141,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +aMQ +aMQ +aMQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aAG +aAG +aAG +aAG +kuC +mre +cmK +aoz +aoz +aoz +aBl +aKu +aRD +aRD +aRD +aRD +aRD +aRD +aRD +aKu +cmK +aoz +aoz +aoz +aoz +xyE +mre +adI +aAG +aAG +aAG +azN +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +kKq +amz +rsz +geS +geS +rsz +rsz +rsz +rsz +geS +geS +geS +rsz +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(142,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +aMQ +aMQ +tAt +tAt +tAt +aMQ +aMQ +aMQ +tAt +tAt +tAt +aMQ +aMQ +aMQ +tAt +asq +tAt +aMQ +aMQ +aMQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +lfp +lfp +lfp +tOZ +tOZ +tMz +cmK +aoz +aoz +aoz +aBl +aKu +aRD +aRD +aRD +aRD +aRD +aRD +aRD +aKu +cmK +aoz +aoz +aoz +aoz +sWt +azQ +tOZ +lfp +lfp +aol +aol +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +kKq +eEP +eEP +ale +mWG +cyp +eEP +eEP +feI +feI +feI +szt +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +rsz +geS +geS +rsz +geS +geS +geS +rsz +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(143,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +hDM +hDM +hDM +hDM +aZF +mre +cmK +aoz +aoz +aoz +aBl +aKu +aRD +aRD +aRD +aRD +aRD +aRD +aRD +aKu +cmK +aoz +aoz +aoz +aoz +rYV +pQM +aAS +hDM +hDM +hDM +aKJ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +eXW +feI +szt +hAb +cMi +cMi +cMi +fYw +eXW +feI +feI +feI +feI +feI +feI +amz +geS +geS +geS +geS +geS +geS +geS +geS +geS +rsz +rsz +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(144,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +kVD +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aoz +aoz +aoz +aoz +aBl +mre +cmK +aoz +aoz +aoz +aBl +aKu +aKu +aRD +aRD +aRD +aRD +aRD +aKu +aKu +cmK +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aoz +aoz +aoz +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +cxE +oUM +oUM +oUM +uEV +anx +anx +aMt +uEV +oUM +oUM +oUM +oUM +oUM +oUM +oUM +fcu +rsz +geS +geS +geS +geS +geS +geS +geS +geS +rsz +rsz +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(145,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aAG +aAG +aAG +aAG +kuC +mre +aKw +aAG +aAG +aAG +kuC +aBp +aKu +aKu +aRD +aRD +aRD +aKu +aKu +gIb +aKw +aAG +aAG +aAG +aAG +kuC +pQM +aKw +aAG +aAG +aAG +azN +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +mwR +fAt +hvy +xHJ +xRs +xRs +xRs +fYw +mwR +fAt +fAt +fAt +fAt +fAt +fAt +eEP +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +rsz +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(146,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +rVq +rVq +rVq +rVq +wZS +aov +rVq +rVq +rVq +rVq +rVq +gjc +aBp +aKu +aKu +aKu +aKu +aKu +aBp +gjc +rVq +rVq +rVq +rVq +rVq +aov +wZS +rVq +rVq +rVq +aol +aol +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +kKq +eEP +eEP +ale +mWG +cyp +eEP +eEP +fAt +fAt +fAt +owU +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +rsz +geS +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(147,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +hDM +hDM +hDM +hDM +aZF +hpv +aAS +hDM +hDM +hDM +hDM +aZF +azK +gjc +gjc +gjc +gjc +gjc +rFP +aAS +hDM +hDM +hDM +hDM +aZF +fuU +aAS +hDM +hDM +hDM +hDM +hLp +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(148,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aoz +aoz +aoz +hlE +asq +cmK +aoz +aoz +aoz +aoz +aKo +hDM +hDM +hDM +hDM +hDM +hDM +hDM +aKJ +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aoz +aoz +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(149,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aBl +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aoz +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +cBs +eEP +eEP +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(150,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +asq +aBl +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aoz +aol +kVD +kVD +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +kVD +cBs +cBs +cBs +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +bdL +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(151,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aBl +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +cmK +aol +aol +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +cBs +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +geS +rsz +geS +geS +geS +geS +rsz +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(152,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +mre +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +pQM +aol +aol +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +cBs +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +rsz +rsz +rsz +geS +geS +rsz +rsz +rsz +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(153,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +cmK +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aBl +aol +aol +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +cBs +eEP +ale +mWG +cyp +eEP +eEP +eEP +eEP +eEP +ale +xbF +cyp +eEP +eEP +eEP +eEP +eEP +eEP +eEP +geS +geS +rsz +geS +rsz +geS +geS +rsz +geS +rsz +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(154,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +cBs +eEP +ale +mWG +eXW +feI +feI +feI +feI +feI +szt +xbF +eXW +feI +feI +feI +feI +feI +feI +eEP +geS +geS +rsz +geS +rsz +geS +geS +rsz +geS +rsz +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(155,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +dvZ +dvZ +dvZ +dvZ +dvZ +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +cBs +feI +szt +cxE +dyy +cMi +cMi +cMi +dyy +dyy +dyy +uEV +cMi +cMi +cMi +dyy +dyy +dyy +lmm +cyp +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +pNx +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(156,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aRv +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +cBs +dyy +dyy +uEV +uEV +anx +anx +aMt +uEV +uEV +uEV +uEV +anx +anx +aMt +uEV +iyO +iyO +hhu +amz +rsz +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +geS +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(157,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +cBs +uEV +rcF +uEV +iyO +xRs +xRs +xRs +iyO +iyO +iyO +uEV +xRs +xRs +xRs +oGN +mwR +fAt +eEP +amz +geS +geS +geS +geS +geS +rsz +rsz +geS +geS +geS +geS +bdL +bdL +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(158,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aoz +aol +aol +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +cBs +cBs +cBs +ale +fYw +bXC +fAt +fAt +fAt +fAt +fAt +owU +xbF +mwR +fAt +fAt +fAt +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +rsz +rsz +geS +geS +geS +bdL +dvZ +dvZ +dvZ +dvZ +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(159,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +usc +usc +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aol +aol +aol +aol +aol +aol +aol +aol +aol +aol +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aRD +aRD +asq +asq +dvZ +dvZ +dvZ +dvZ +cBs +uEV +lmm +eXW +feI +feI +feI +feI +szt +xbF +cyp +eEP +eEP +eEP +eEP +eEP +kKq +amz +rsz +geS +geS +geS +geS +geS +geS +geS +geS +bdL +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(160,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +pdb +pdb +pdb +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aRD +asq +asq +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +isl +uEV +dyy +dyy +dyy +dyy +dyy +dyy +fYw +cyp +eEP +eEP +eEP +eEP +eEP +eEP +amz +geS +geS +geS +geS +geS +geS +geS +geS +bdL +dvZ +dvZ +dvZ +pdb +usc +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(161,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +dvZ +dvZ +dvZ +aRD +aRD +dvZ +dvZ +dvZ +cBs +cBs +sur +sur +cBs +cBs +cBs +cBs +cBs +cBs +cBs +cBs +cBs +cBs +cBs +cBs +bdL +bdL +pNx +pNx +pNx +pNx +pNx +bdL +bdL +dvZ +dvZ +pdb +usc +pdb +usc +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(162,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +dvZ +dvZ +aRD +aRD +aRD +aRD +dvZ +dvZ +isl +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dvZ +dvZ +pdb +pdb +usc +pdb +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(163,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +dvZ +dvZ +dvZ +dvZ +dvZ +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +dvZ +dvZ +aRD +aRD +aRD +aRD +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +ncP +ncP +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +dvZ +dvZ +dvZ +pdb +pdb +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(164,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +dvZ +dvZ +dvZ +aRD +aRD +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ncP +ncP +tAt +tAt +tAt +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(165,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +dvZ +dvZ +dvZ +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +dvZ +dvZ +dvZ +dvZ +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(166,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +dvZ +dvZ +dvZ +dvZ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(167,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(168,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(169,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +dtA +lei +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(170,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +pqy +bFF +lei +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(171,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +cSZ +pYw +qOr +asq +asq +tAA +tAA +asq +asq +asq +asq +asq +tAA +tAA +tAA +tAA +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(172,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aXP +kYT +lNs +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(173,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +rky +hGe +pWQ +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(174,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +rky +rky +rky +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(175,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +hfe +mNU +gAG +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(176,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +vkr +cEJ +gAG +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(177,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +pny +iaG +med +asq +oDV +oDV +tAA +tAA +tAA +tAA +tAA +tAA +tAA +oDV +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +tAA +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(178,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +viE +hfe +iaG +med +tcK +viE +viE +bYO +bYO +bYO +bYO +bYO +bYO +bYO +viE +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(179,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAA +asq +asq +asq +tAA +tAA +tAA +tAA +viE +hfe +iaG +med +gkw +ubV +pHv +bYO +bYO +bYO +bYO +bYO +bYO +bYO +pHv +aAI +tAA +vTx +xNo +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +aRD +asq +asq +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +asq +ncP +ncP +ncP +ncP +ncP +ncP +phQ +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(180,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +viE +sJx +cEJ +uoV +oCA +oCA +oCA +dAk +dAk +dAk +dAk +dAk +dAk +dAk +oCA +blN +oCA +iAe +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oxI +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(181,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +vKO +cEJ +iaG +iaG +cEJ +cEJ +cEJ +cEJ +xNo +cEJ +nAE +oRk +cEJ +cEJ +cEJ +iaG +nyR +iaG +laz +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +asq +asq +tAt +tAt +tAt +tAt +ncP +ncP +oMM +oxI +oMM +oxI +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(182,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +hfe +cEJ +cEJ +aZf +qKH +qKH +sZk +qKH +fFV +acR +fFV +fFV +fFV +fFV +fFV +iaG +iaG +cEJ +laz +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +asq +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +ncP +ncP +oMM +oMM +oxI +oMM +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(183,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +hfe +cEJ +lfM +paj +vTx +iaG +vfH +vfH +vfH +vfH +vfH +vfH +vfH +iaG +med +lck +fLz +iaG +kAC +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +ncP +ncP +ncP +oMM +oMM +ncP +ncP +ncP +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(184,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +asq +asq +viE +hfe +cEJ +dXJ +sqk +vTx +iaG +gFS +xWY +xWY +xWY +xWY +okl +gFS +iaG +med +oBW +nsW +xiC +laz +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(185,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +viE +vkr +cEJ +dXJ +sqk +vTx +iaG +fBN +tiQ +wjJ +wjJ +wjJ +tiQ +fBN +iaG +med +oBW +sqk +cEJ +wfQ +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +qHa +ncP +ncP +ncP +ncP +kZO +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(186,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +viE +hfe +iaG +oBW +sqk +vTx +viE +viE +xMW +bYO +bYO +bYO +bGr +viE +viE +med +oBW +sqk +iaG +laz +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(187,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +viE +bLu +iaG +oBW +sqk +flK +viE +vqh +tiQ +vWA +tiQ +tiQ +tiQ +xzX +viE +uKr +oBW +sqk +iaG +cSG +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(188,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +tAA +tAA +tAA +tAA +tAA +viE +vKO +iaG +kve +xsQ +vTx +viE +viE +dJd +tiQ +tiQ +bGr +btR +viE +viE +med +kve +sXe +iaG +laz +viE +viE +asq +asq +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(189,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +wnO +wnO +gea +iaG +iaG +iaG +vTx +mPV +viE +gDQ +xAk +cRQ +cUV +mtv +viE +mPV +med +iaG +cEJ +iaG +lYQ +asd +asd +qzf +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(190,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +cEJ +nAE +iaG +iaG +iaG +vTx +wgF +beq +ruO +gEs +eTr +nsJ +umt +beq +wgF +med +gsa +iaG +iaG +iaG +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(191,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +iaG +oRk +iaG +iaG +iaG +vTx +wgF +nsJ +nsJ +nsJ +nsJ +kZm +nsJ +nsJ +wgF +med +iaG +iaG +iaG +iaG +smS +cEJ +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(192,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +byZ +ldC +fGD +iaG +iaG +iaG +vTx +mPV +dWw +nhq +nsJ +bAs +nsJ +frp +hrV +wgF +med +iaG +iaG +nyR +tHs +pAm +mMZ +hPv +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(193,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +asq +asq +asq +asq +tAA +asq +tAA +tAA +tAA +asq +asq +asq +viE +tQI +iaG +iaG +iaG +vTx +mPV +dWw +vpV +wQY +vgg +eOe +eSR +hrV +mPV +med +iaG +iaG +cEJ +vUx +viE +viE +viE +tAA +tAA +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(194,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tQI +iaG +iaG +iaG +vTx +wgF +nsJ +nsJ +oOp +nsJ +nsJ +nsJ +bWj +mPV +med +iaG +iaG +cEJ +dej +viE +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(195,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +tQI +iaG +aUA +ycg +vTx +wgF +dWw +oKT +umt +dWw +nsJ +vpV +hrV +mPV +med +aUA +hgJ +cEJ +vUx +viE +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(196,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +xNo +cIB +eet +vTx +wgF +dWw +vvq +umt +vpV +nsJ +ghN +hrV +mPV +med +wPh +ryB +cEJ +uIu +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(197,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +wPh +eet +vTx +mPV +nsJ +nsJ +nsJ +xAW +umt +nsJ +xUO +mPV +vaQ +wPh +ryB +cEJ +vUx +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(198,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +tQI +iaG +wPh +eet +vTx +mPV +dWw +vpV +nsJ +efu +nsJ +vpV +hrV +wgF +med +wPh +ryB +cEJ +kbE +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(199,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tQI +iaG +wPh +eet +vTx +mPV +jFk +deF +umt +mjs +nsJ +cHh +hrV +mPV +med +wPh +eet +iaG +vUx +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(200,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +tQI +nAE +nky +gCI +vTx +mPV +pkR +mPV +mPV +mPV +mPV +dtH +mPV +mPV +med +hfH +gCI +iaG +iaG +viE +asq +asq +tAA +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(201,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +viE +tQI +cEJ +cEJ +iaG +oCA +oCA +oCA +oCA +oCA +oCA +oCA +oCA +oCA +oCA +oCA +iaG +iaG +xNo +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(202,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +iaG +xiC +iaG +iaG +iaG +sKX +cEJ +iaG +iaG +iaG +iaG +cEJ +cEJ +iaG +iaG +iaG +lyT +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(203,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +jeL +asq +waU +fFV +fFV +fFV +epZ +epZ +wjJ +wjJ +wjJ +wjJ +wjJ +fFV +fFV +qVQ +wsK +iaG +xFO +viE +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aTm +aTm +aTm +aTm +aTm +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(204,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +jeL +asq +med +asq +pVx +luq +bYO +bYO +bYO +bYO +bYO +bYO +bYO +luq +pVx +viE +vTx +oRk +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +jOx +aGv +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(205,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +viE +viE +viE +tAA +tAA +tAA +tAA +tAA +tAA +tAA +viE +viE +viE +gTn +asq +asq +tAA +tAA +asq +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +wCD +aGv +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ayU +azW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(206,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(207,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(208,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +qQO +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oxI +oxI +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(209,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asd +wnl +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +oMM +oMM +oMM +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(210,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +ePD +eUs +ePD +ePD +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +ack +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +ncP +cYW +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(211,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +ePD +pFT +rVO +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(212,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +ePD +qut +pGH +asq +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +aEh +fon +ncP +ncP +ncP +ncP +ncP +aFV +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(213,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +ePD +qut +pGH +xeD +okQ +okQ +okQ +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +aEh +lgZ +lgZ +lgZ +lgZ +lgZ +lYd +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(214,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +ePD +qut +nYr +okQ +okQ +okQ +okQ +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(215,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAA +tAA +tAA +eUs +cCU +jJU +xeD +okQ +okQ +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(216,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAA +asq +asq +eUs +cCU +jJU +xeD +okQ +okQ +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(217,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +asq +asq +tAA +asq +asq +ePD +qut +pGH +xeD +okQ +okQ +okQ +okQ +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(218,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +asq +asq +tAA +asq +asq +ePD +asq +asq +xeD +okQ +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(219,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +xeD +okQ +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(220,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(221,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(222,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(223,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(224,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(225,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(226,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(227,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(228,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(229,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(230,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(231,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +tAA +asq +tAA +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(232,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAA +tAA +tAA +tAA +tAA +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(233,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +tAt +tAt +hhH +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(234,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +asq +asq +asq +tAt +asq +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(235,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(236,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(237,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(238,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(239,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +asq +asq +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(240,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(241,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(242,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(243,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(244,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(245,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(246,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(247,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} +(248,1,4) = {" +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +tAt +"} diff --git a/maps/navalis_platform_13.json b/maps/navalis_platform_13.json new file mode 100644 index 000000000000..a51bde3adda5 --- /dev/null +++ b/maps/navalis_platform_13.json @@ -0,0 +1,73 @@ +{ + "map_name": "Navalis Platform 13", + "short_name": "Navalis", + "map_path": "map_files/Navalis_Platform_13", + "map_file": "Navalis_Platform_13.dmm", + + "weather_holder": "/datum/weather_ss_map_holder/navalis_platform_13", + "survivor_types": [ + "/datum/equipment_preset/survivor/navalis/automation_specialist", + "/datum/equipment_preset/survivor/navalis/radio_operator", + "/datum/equipment_preset/survivor/navalis/platform_guard", + "/datum/equipment_preset/survivor/navalis/exo_geologist", + "/datum/equipment_preset/survivor/navalis/medic", + "/datum/equipment_preset/survivor/navalis/first_officer", + "/datum/equipment_preset/survivor/navalis/operations_engineer", + "/datum/equipment_preset/survivor/navalis/maint_tech", + "/datum/equipment_preset/survivor/navalis/clf_wet_ops" + ], + "defcon_triggers": [ + 3750, + 2600, + 1450, + 580, + 0.0 + ], + "survivor_message": "It has been weeks since the outbreak began. What started as whispers in the dark and the sounds of something crawling in the dank and murky corners of the platform, quickly blossomed into an orgy of violence and chaos, all culminating as a cyclone descended upon the rig. Now, the lifeboats are gone, the upper-decks are sealed, and something worse cries out from the deepest parts of the residential deck, something so alien that even the Xenomorphs appear to shudder at those sounds. The cyclone has given you and your fellows a brief reprieve, but as it lifts, only one question now remains. Can you survive until help arrives?", + "announce_text": "An automated distress signal has been received from \"Navalis Platform 13\" on the planet Aires.\n\nNP-13 is an off-shore platform that acts as the command and control hub for dozens of other resource extraction platforms. The strategic value of the continued operation of these platforms is sufficent to authorize deployment of military assets to resolve the issue.\n\nThe ###SHIPNAME### has been dispatched.", + "liaison_briefing": "maps/map_briefings/cl_brief_navalis.html", + "map_item_type": "/obj/item/map/navalis", + "monkey_types": [ + "stok" + ], + "environment_traits": { "Fog": true }, + "traits": [ + { + "Ground": true, + "Up": 1 + }, + { + "Ground": true, + "Up": 1, + "Down": -1 + }, + { + "Ground": true, + "Up": 1, + "Down": -1 + }, + { + "Ground": true, + "Up": 1, + "Down": -1 + }, + { + "Ground": true, + "Down": -1 + } + ], + "xvx_hives": { + "xeno_hive_alpha": 0, + "xeno_hive_bravo": 0, + "xeno_hive_charlie": 0, + "xeno_hive_delta": 0 + }, + "camouflage": "classic", + "gamemodes": [ + "Distress Signal", + "Hunter Games", + "Hive Wars", + "Faction Clash", + "Infection" + ] +}