From 56b137014459a888a6f85f4bb82b9b8b4b95d6dd Mon Sep 17 00:00:00 2001 From: hazelrat <83198434+hazelrat@users.noreply.github.com> Date: Wed, 11 Dec 2024 12:59:21 +0000 Subject: [PATCH] SPLF Auxiliary ghostrole (#20197) Adds the SPLF Raider offship, a repurposed freighter used by the Solarian People's Liberation Fleet to raid corporate assets in the CRZ. This is a piratical offship, but they are not antagonists. - In terms of ghostroles, this ship is comprised of four volunteer militants, one repurposed civilian synthetic, and one actual naval petty officer from the 35th splinter to moderate the volunteers. - My hope is that the ship should avoid independent ships and only attack corporate vessels, which I hope is communicated in the ghostrole descriptions. - For now, the uniforms and voidsuits are all generic Solarian assets, which may spark some confusion over how the SPLF is meant to be an entirely seperate faction to the mainline ASSN. With some luck, we'll have unique SPLF suits to work with soon. --- aurorastation.dme | 5 + code/__DEFINES/access.dm | 5 + code/game/machinery/suit_cycler_units.dm | 1 + code/game/objects/items/devices/modkit.dm | 4 +- code/game/objects/structures/lattice.dm | 3 + html/changelogs/hazelmouse-splfraider.yml | 58 + maps/away/ships/sol/sol_splf/splf_raider.dm | 83 + maps/away/ships/sol/sol_splf/splf_raider.dmm | 74421 ++++++++++++++++ .../ships/sol/sol_splf/splf_raider_areas.dm | 77 + .../sol/sol_splf/splf_raider_ghostroles.dm | 94 + .../sol/sol_splf/splf_raider_landmarks.dm | 92 + .../ships/sol/sol_splf/splf_raider_shuttle.dm | 73 + 12 files changed, 74914 insertions(+), 2 deletions(-) create mode 100644 html/changelogs/hazelmouse-splfraider.yml create mode 100644 maps/away/ships/sol/sol_splf/splf_raider.dm create mode 100644 maps/away/ships/sol/sol_splf/splf_raider.dmm create mode 100644 maps/away/ships/sol/sol_splf/splf_raider_areas.dm create mode 100644 maps/away/ships/sol/sol_splf/splf_raider_ghostroles.dm create mode 100644 maps/away/ships/sol/sol_splf/splf_raider_landmarks.dm create mode 100644 maps/away/ships/sol/sol_splf/splf_raider_shuttle.dm diff --git a/aurorastation.dme b/aurorastation.dme index dcabadf4079..5d0414f1f38 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -4029,6 +4029,11 @@ #include "maps\away\ships\sol\sol_merc\fsf_patrol_ship_ghostroles.dm" #include "maps\away\ships\sol\sol_pirate\sfa_patrol_ship.dm" #include "maps\away\ships\sol\sol_pirate\sfa_patrol_ship_ghostroles.dm" +#include "maps\away\ships\sol\sol_splf\splf_raider.dm" +#include "maps\away\ships\sol\sol_splf\splf_raider_areas.dm" +#include "maps\away\ships\sol\sol_splf\splf_raider_ghostroles.dm" +#include "maps\away\ships\sol\sol_splf\splf_raider_landmarks.dm" +#include "maps\away\ships\sol\sol_splf\splf_raider_shuttle.dm" #include "maps\away\ships\sol\sol_ssmd\ssmd_ship.dm" #include "maps\away\ships\sol\sol_ssmd\ssmd_ship_ghostroles.dm" #include "maps\away\ships\tajara\circus\adhomian_circus.dm" diff --git a/code/__DEFINES/access.dm b/code/__DEFINES/access.dm index 461aa24f29d..2876be391e5 100644 --- a/code/__DEFINES/access.dm +++ b/code/__DEFINES/access.dm @@ -833,3 +833,8 @@ /datum/access/ruined_propellant_depot_access id = ACCESS_RUINED_PROPELLANT_DEPOT desc = "Propellant Depot AG5 Access" + +#define ACCESS_SPLF 246 +/datum/access/splf_access + id = ACCESS_SPLF + desc = "SPLF Access" diff --git a/code/game/machinery/suit_cycler_units.dm b/code/game/machinery/suit_cycler_units.dm index f70fdd624b6..2d63df60461 100644 --- a/code/game/machinery/suit_cycler_units.dm +++ b/code/game/machinery/suit_cycler_units.dm @@ -287,6 +287,7 @@ helmet = /obj/item/clothing/head/helmet/space/void/sol/ssmd /obj/machinery/suit_cycler/offship/sol/splf + req_access = list(ACCESS_SPLF) suit = /obj/item/clothing/suit/space/void/sol/splf helmet = /obj/item/clothing/head/helmet/space/void/sol/splf diff --git a/code/game/objects/items/devices/modkit.dm b/code/game/objects/items/devices/modkit.dm index 1f8cb6f000b..ab78a040583 100644 --- a/code/game/objects/items/devices/modkit.dm +++ b/code/game/objects/items/devices/modkit.dm @@ -306,7 +306,7 @@ "Solarian Provisional Government" = /obj/item/clothing/suit/space/void/sol/spg, "Solarian Restoration Front" = /obj/item/clothing/suit/space/void/sol/srf, "Southern Solarian Military District" = /obj/item/clothing/suit/space/void/sol/ssmd, - "Solarian People's Liberation Front" = /obj/item/clothing/suit/space/void/sol/splf + "Solarian People's Liberation Fleet" = /obj/item/clothing/suit/space/void/sol/splf ) helmet_options = list( "Solarian Armed Forces" = /obj/item/clothing/head/helmet/space/void/sol, @@ -317,7 +317,7 @@ "Solarian Provisional Government" = /obj/item/clothing/head/helmet/space/void/sol/spg, "Solarian Restoration Front" = /obj/item/clothing/head/helmet/space/void/sol/srf, "Southern Solarian Military District" = /obj/item/clothing/head/helmet/space/void/sol/ssmd, - "Solarian People's Liberation Front" = /obj/item/clothing/head/helmet/space/void/sol/splf + "Solarian People's Liberation Fleet" = /obj/item/clothing/head/helmet/space/void/sol/splf ) /obj/item/voidsuit_modkit_multi/unathi_pirate diff --git a/code/game/objects/structures/lattice.dm b/code/game/objects/structures/lattice.dm index 13ba2fa2727..b895beb5083 100644 --- a/code/game/objects/structures/lattice.dm +++ b/code/game/objects/structures/lattice.dm @@ -186,6 +186,9 @@ /obj/structure/lattice/catwalk/indoor/grate/dark color = COLOR_DARK_GUNMETAL +/obj/structure/lattice/catwalk/indoor/grate/gridded + color = COLOR_GRAY40 + /obj/structure/lattice/catwalk/indoor/grate/gunmetal color = COLOR_DARK_GUNMETAL diff --git a/html/changelogs/hazelmouse-splfraider.yml b/html/changelogs/hazelmouse-splfraider.yml new file mode 100644 index 00000000000..c6c3f25ed92 --- /dev/null +++ b/html/changelogs/hazelmouse-splfraider.yml @@ -0,0 +1,58 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: hazelmouse + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Added the SPLF Raider ghostrole to the Corporate Reconstruction Zone sector. To be considered either a gaggle of unruly pirates or a heroic band of freedom fighters, depending on one's perspective." diff --git a/maps/away/ships/sol/sol_splf/splf_raider.dm b/maps/away/ships/sol/sol_splf/splf_raider.dm new file mode 100644 index 00000000000..bf48fd273fc --- /dev/null +++ b/maps/away/ships/sol/sol_splf/splf_raider.dm @@ -0,0 +1,83 @@ +/datum/map_template/ruin/away_site/splf_raider + name = "SPLF Auxiliary Vessel" + description = "A repurposed hauler operated by the Solarian People's Liberation Fleet, sent to raid corporate holdings in the CRZ." + + prefix = "ships/sol/sol_splf/" + suffix = "splf_raider.dmm" + + sectors = list(SECTOR_CORP_ZONE) + spawn_weight = 1 + ship_cost = 1 + id = "splf_raider" + shuttles_to_initialise = list(/datum/shuttle/autodock/overmap/splf_shuttle) + + unit_test_groups = list(3) + +/singleton/submap_archetype/splf_raider + map = "SPLF Auxiliary Vessel" + descriptor = "A repurposed hauler operated by the Solarian People's Liberation Fleet, sent to raid corporate holdings in the CRZ." + +/obj/effect/overmap/visitable/ship/splf_raider + name = "SPLF Auxiliary Vessel" + class = "SPLFV" // Solarian People's Liberation Fleet Vessel. This is not an anonymous or 'undercover' ship, they openly fly their colours. + desc = "The Laksamana-class hauling vessel is a relatively unusual sighting in the wider spur, native almost exclusively to the shipyards of Hang Tuah's Rest and the surrounding space. Unlike its more successful competitors, it vests less of its space in its cargo capacity and more of its space in crew compartments - though, despite this, it remains quite cramped. This one appears to have been substantially modified, boasting a heavily armed gunnery pod slotted into its starboard cargo pod port, apparently feeding two moderately sized ballistic cannons. The hull also appears to have been strengthened, and the exterior has been painted a dull military green." + icon_state = "freighter" + moving_state = "freighter_moving" + colors = list("#5a644e", "#6a7e53") + max_speed = 1/(2 SECONDS) + burn_delay = 1 SECONDS + vessel_mass = 5000 + fore_dir = SOUTH + vessel_size = SHIP_SIZE_SMALL + scanimage = "tramp_freighter.png" // Looks close enough. + designer = "Einstein Engines, Hang Tuah's Rest Orbital Shipyards" + volume = "50 meters length, 36 meters beam/width, 13 meters vertical height" + weapons = "Heavily modified ballistic gunnery pod starboard, shuttle bay portside" + sizeclass = "Laksamana-class hauler" + shiptype = "Remote hauling operations, long-term crew habitation" + + initial_restricted_waypoints = list( + "SPLF Shuttle" = list("nav_hangar_splf") + ) + + initial_generic_waypoints = list( + "splf_raider_nav1", + "splf_raider_nav2", + "splf_raider_nav3", + "splf_raider_nav4", + "splf_raider_starboard_dock", + "splf_raider_port_dock", + "splf_raider_aft_dock", + "splf_raider_fore_dock" + ) + + invisible_until_ghostrole_spawn = TRUE + +/obj/effect/overmap/visitable/ship/splf_raider/New() + designation = "[pick("Not A Fan Of The Government", "National Liberation", "Free Spirit", "Not Wanted Here", "Tight-knit", "Silat", "Sejarah Melayu", "As They Were Before", "Hand of Cabanas", "Justice for Mictlan", "Not One Step More", "Fraternity", "Culpability", "Magistrate", "Equity", " Sic Semper Tyrannis")]" + ..() + +// Using the freighter sprite. +/obj/effect/overmap/visitable/ship/splf_raider/get_skybox_representation() + var/image/skybox_image = image('icons/skybox/subcapital_ships.dmi', "tramp_freighter") + skybox_image.pixel_x = rand(0,64) + skybox_image.pixel_y = rand(128,256) + return skybox_image + +/// So people know how to use the engine. There's also a pre-wired spare PACMAN. +/obj/item/paper/fluff/splf_raider_engine_guide + name = "Laksamana-class engine operational notes" + desc = "This is a series of harshly written notes on how to operate the combustion engine of a Laksamana-class hauling vessel." + info = "Follow these notes and you should be fine. Don't burn the ship down again, yeah? Christ.
\ +
Step one: Enable the connectors to cold loop pump and the cooling array to generator pump. This circulates the cold look through the turbine.
\ +
Step two: Set the gas mixer to output south, enable the pump, enable fuel injection. This will inject fuel mix into the chamber. \ + Feel free to put in as many canisters as you like, just make sure they're being mixed at a ratio of 60% oxidiser to 40% fuel. \ + The more burning mix you inject into there, the longer it'll last before you need to vent the inject more.
\ +
Step three: Disable injection on the fuel injection console. If you leave injection on, we'll have a bad time.
\ +
Step four: Ignition! Wait for the fire to fully burn out before proceeding to the next step. \ + If the glass makes a weird noise, that's normal.
\ +
Step five: After the fire has stopped, the contents of the chamber should be entirely carbon dioxidie. At this point, \ + enable circulation: 700L/s input and 1500kpa output should suffice. The higher you raise the output, \ + the more power it produces, but the quicker it cools.
\ +
If you get the feeling the glass will break, immediately vent the chamber and report to your commanding officer.
" + language = LANGUAGE_SOL_COMMON diff --git a/maps/away/ships/sol/sol_splf/splf_raider.dmm b/maps/away/ships/sol/sol_splf/splf_raider.dmm new file mode 100644 index 00000000000..f7f2d7f97b3 --- /dev/null +++ b/maps/away/ships/sol/sol_splf/splf_raider.dmm @@ -0,0 +1,74421 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"ak" = ( +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/south{ + req_access = list(246) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/splf_raider/freezer) +"al" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/sleeping_agent, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_2) +"am" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/effect/floor_decal/spline/plain/grey, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/bridge) +"ao" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/structure/table/rack, +/obj/random/dirt_75, +/obj/item/storage/bag/inflatable, +/obj/item/storage/backpack/duffel/eng{ + pixel_y = 6; + pixel_x = -1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"ap" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/yellow, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"as" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"aB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"aE" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 4 + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"aJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Portside Hall"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"aN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"aQ" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/door/airlock/command/gold{ + name = "Officer's Quarters"; + req_access = list(246) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/full, +/area/splf_raider/office) +"aR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/turf/simulated/floor, +/area/splf_raider/starboard_slot) +"aY" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + req_access = list(246); + name = "Sensitive Storage" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"bc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Starboard Hall"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"bd" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/washroom) +"bf" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 26 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/lounge) +"bh" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/overmap/visitable/ship/splf_raider, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"bo" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/random/dirt_75, +/obj/machinery/telecomms/allinone/ship, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"bq" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"bv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/splf_raider/engine) +"bx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"by" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Infirmary"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/medical) +"bD" = ( +/obj/structure/bed/padded/bunk, +/obj/structure/bed/padded, +/obj/item/bedsheet/brown, +/obj/item/bedsheet/black{ + pixel_y = 16 + }, +/obj/effect/ghostspawpoint{ + name = "igs - splf_crewman"; + identifier = "splf_crewman" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"bF" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/table/wood, +/obj/item/paper_bin{ + pixel_y = 5; + pixel_x = 5 + }, +/obj/item/pen/fountain/black{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/storage/box/fancy/cigarettes/cigar{ + pixel_x = -9; + pixel_y = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"bI" = ( +/obj/machinery/alarm/freezer/north{ + req_one_access = null; + req_access = list(246) + }, +/obj/structure/closet/secure_closet/freezer/meat, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/meat/chicken, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/obj/item/reagent_containers/food/snacks/fish/fishfillet, +/turf/simulated/floor/tiled/freezer, +/area/splf_raider/freezer) +"bJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"bR" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/access_button{ + pixel_x = 30; + pixel_y = -6 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock, +/obj/effect/shuttle_landmark/splf_raider/dock_fore{ + dir = 1 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"bU" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"bW" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/platform_deco{ + dir = 8 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"bX" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"cc" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/machinery/access_button{ + pixel_y = -24; + pixel_x = -27; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"ce" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"cf" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/docking) +"ci" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"cw" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"cA" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"cE" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/ready) +"cG" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"cH" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, engine" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"cN" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/random/dirt_75, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"cQ" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"cU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"db" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/effect/landmark/entry_point/aft{ + name = "aft, port thrusters" + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"dg" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "Longarms"; + req_access = list(246) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/gun/projectile/automatic/rifle/carbine, +/obj/item/ammo_magazine/a556/carbine, +/obj/item/ammo_magazine/a556/carbine, +/obj/item/gun/projectile/shotgun/pump, +/obj/item/storage/box/shotgunshells, +/obj/item/storage/box/shotgunshells, +/obj/item/gun/projectile/automatic/c20r/sol, +/obj/item/gun/projectile/automatic/c20r/sol, +/obj/item/ammo_magazine/a10mm, +/obj/item/ammo_magazine/a10mm, +/obj/item/ammo_magazine/a10mm, +/obj/item/ammo_magazine/a10mm, +/obj/item/gun/energy/blaster/carbine, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"dh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"do" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"dp" = ( +/obj/machinery/cryopod, +/obj/machinery/computer/cryopod{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"dr" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"ds" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/starboard_slot) +"dv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"dw" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/carpet/lightblue, +/area/splf_raider/office) +"dx" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"dA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/washing_machine, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"dB" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/lightblue, +/area/splf_raider/office) +"dD" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/propulsion) +"dH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"dI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/ready) +"dJ" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"dK" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"dM" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows"; + dir = 4 + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, rotary" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"dR" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/carpet/lightblue, +/area/splf_raider/office) +"dT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-2" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"dW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_portside, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"dX" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/machinery/access_button{ + pixel_y = -28; + pixel_x = -2; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"ea" = ( +/obj/machinery/power/smes/buildable/main_engine{ + charge = 3e+007 + }, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"ef" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"eh" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"ek" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/random/dirt_75, +/obj/item/reagent_containers/food/drinks/cans/iced_tea{ + pixel_x = 9; + pixel_y = 8 + }, +/obj/item/reagent_containers/food/snacks/ricetub{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"ep" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/ship_weapon_dummy, +/turf/space/dynamic, +/area/splf_raider/gunnery) +"ev" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/slide_projector{ + pixel_y = 4 + }, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"ex" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/docking) +"eA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"eB" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"eL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"eM" = ( +/obj/machinery/air_sensor, +/obj/effect/map_effect/marker/large_tank{ + name = "splf_co2"; + master_tag = "splf_co2" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/splf_raider/propulsion) +"eS" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"eT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ + pixel_x = 3; + pixel_y = -3 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ + pixel_x = 8; + pixel_y = 8 + }, +/obj/item/trash/can{ + pixel_x = -6; + pixel_y = 10 + }, +/obj/item/reagent_containers/food/condiment/shaker/peppermill{ + pixel_x = -9; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/condiment/shaker/salt{ + pixel_x = -9; + pixel_y = -9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"eV" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"eY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/ship/navigation/terminal{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"eZ" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/obj/effect/landmark/entry_point/port{ + name = "port, hydroponics" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"fd" = ( +/obj/machinery/door/firedoor/noid, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/full, +/area/splf_raider/central) +"fe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"ff" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/door/blast/regular/open{ + id = "splf_co2"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"fi" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, gunnery" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/gunnery) +"fm" = ( +/obj/machinery/power/smes/buildable/third_party_shuttle, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"fn" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"fp" = ( +/obj/machinery/air_sensor{ + frequency = 1441; + id_tag = "splf_sensor"; + output = 31 + }, +/turf/simulated/floor/reinforced/airless, +/area/splf_raider/engine) +"fs" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 26 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/turf/simulated/floor, +/area/shuttle/splf) +"fA" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/obj/structure/filingcabinet/chestdrawer{ + pixel_x = 6 + }, +/obj/structure/filingcabinet/filingcabinet{ + pixel_x = -9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"fC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"fL" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"fM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/light/small, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"fN" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/obj/machinery/meter, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"fR" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"fU" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cargo Hold #1"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/cargo_1) +"fX" = ( +/obj/machinery/appliance/cooker/oven, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"fZ" = ( +/obj/effect/shuttle_landmark/splf_raider/nav4, +/turf/template_noop, +/area/space) +"gc" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"gg" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/obj/structure/toilet, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "splf_stall_2"; + name = "Stall #2 Bolt Control"; + specialfunctions = 4; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"gi" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"gj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/turf/simulated/floor, +/area/shuttle/splf) +"gl" = ( +/obj/machinery/door/firedoor/noid, +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/central) +"gI" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"gL" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/ship_ammunition/autocannon/frag{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/frag{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/frag{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/frag{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/frag{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/frag{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"gP" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"gS" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "splf_kitchen" + }, +/obj/machinery/smartfridge/foodheater, +/turf/simulated/floor/tiled/full, +/area/splf_raider/kitchen) +"gT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"gU" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/gunnery) +"hb" = ( +/obj/effect/shuttle_landmark/splf_raider/nav3, +/turf/template_noop, +/area/space) +"hc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"ho" = ( +/obj/machinery/bodyscanner, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/full, +/area/splf_raider/medical) +"hr" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor/plating, +/area/shuttle/splf) +"hs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/structure/closet/crate/hydroponics, +/obj/item/reagent_containers/glass/bucket, +/obj/item/material/minihoe, +/obj/item/material/scythe/sickle, +/obj/item/wirecutters/clippers, +/obj/item/material/hatchet, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"hu" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"hw" = ( +/obj/machinery/appliance/cooker/fryer, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"hz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"hB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/turf/simulated/floor, +/area/shuttle/splf) +"hH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/plating, +/area/shuttle/splf) +"hL" = ( +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/machinery/alarm/south, +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/machinery/suit_cycler/offship/sol/splf, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"hT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/table/rack, +/obj/item/stack/material/graphite/full{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"hV" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"ie" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/arrow/yellow{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"if" = ( +/obj/structure/platform, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"ih" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"in" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/structure/reagent_dispensers/watertank, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"ip" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/washroom) +"iq" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"ir" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/splf_raider/quarters) +"iv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"iw" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"iy" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"iA" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/access_button{ + pixel_x = -32; + pixel_y = -25; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_portside, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"iC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"iE" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"iL" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, utilities closet" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/closet) +"iZ" = ( +/obj/effect/floor_decal/corner_wide/brown/full, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"jb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"jd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 33; + pixel_y = 2 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 33; + pixel_y = -8 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/ready) +"jh" = ( +/obj/structure/platform, +/obj/effect/floor_decal/corner/paleblue, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"jj" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"jk" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4; + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"js" = ( +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/structure/closet/cabinet{ + name = "Personal Wear" + }, +/obj/item/clothing/suit/storage/toggle/leather_jacket/military/old/alt, +/obj/item/clothing/suit/storage/toggle/leather_jacket/military/old/alt, +/obj/item/clothing/suit/storage/toggle/leather_jacket/military/old, +/obj/item/clothing/suit/storage/toggle/leather_jacket/flight, +/obj/item/clothing/suit/storage/toggle/bomber, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/accessory/storage/pouches/brown, +/obj/item/clothing/accessory/bandanna, +/obj/item/clothing/accessory/bandanna/black, +/obj/item/clothing/accessory/bandanna/blue, +/obj/item/clothing/accessory/temperature/cold, +/obj/item/clothing/accessory/temperature/cold, +/obj/item/clothing/accessory/temperature/warm, +/obj/item/clothing/accessory/temperature/warm, +/obj/item/clothing/head/bandana, +/obj/item/clothing/head/bandana, +/obj/item/clothing/gloves/fingerless, +/obj/item/clothing/gloves/fingerless, +/obj/item/eightball, +/obj/item/material/knife/butterfly/switchblade, +/obj/item/material/knife/butterfly/switchblade, +/obj/structure/sign/flag/mictlan{ + dir = 8; + pixel_y = 32 + }, +/obj/item/clothing/accessory/flagpatch/mictlan, +/obj/item/clothing/accessory/flagpatch/mictlan, +/obj/random/arcade, +/obj/random/arcade, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"jv" = ( +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/obj/machinery/recharger{ + pixel_x = 6; + pixel_y = 4 + }, +/obj/machinery/recharger{ + pixel_x = -6; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"jy" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/atmos{ + id_tag = "splf_teg_out"; + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/splf_raider/engine) +"jA" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/lounge) +"jB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/machinery/light/small, +/obj/machinery/airlock_sensor{ + pixel_y = -24; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/docking) +"jC" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"jF" = ( +/obj/effect/floor_decal/industrial/loading/yellow{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"jL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/computer/ship/engines/terminal{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"jM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"jT" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/item/trash/liquidfood{ + pixel_x = 6; + pixel_y = 8 + }, +/obj/item/trash/can{ + pixel_x = -8; + pixel_y = -2 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "splf_kitchen" + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/kitchen) +"jW" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"ke" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/portside_slot) +"kj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"kq" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Thrusters"; + target_pressure = 15000; + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor/plating, +/area/shuttle/splf) +"kt" = ( +/obj/machinery/shipsensors, +/obj/structure/lattice/catwalk/indoor, +/turf/space/dynamic, +/area/splf_raider/bridge) +"kz" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 5 + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"kA" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/bridge) +"kC" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 10 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/ready) +"kF" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, ready room" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/ready) +"kH" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"kI" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"kN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/south, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"kS" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"kT" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"kU" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/table/wood, +/obj/item/flame/lighter/zippo/sol{ + pixel_x = -6; + pixel_y = 3 + }, +/obj/item/storage/box/fancy/cigarettes/rugged{ + pixel_x = 7; + pixel_y = 10 + }, +/obj/item/storage/box/fancy/cigarettes/dromedaryco{ + pixel_x = 7; + pixel_y = 2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"la" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"lc" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"ld" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"lf" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"lh" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"li" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"lk" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced/steel, +/obj/machinery/photocopier/faxmachine{ + pixel_y = 6; + req_one_access = null; + req_access = list(246) + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/splf_raider/bridge) +"ll" = ( +/obj/machinery/hologram/holopad/long_range, +/obj/effect/floor_decal/industrial/outline/research, +/obj/effect/overmap/visitable/ship/landable/splf_shuttle, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"ln" = ( +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"lt" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"lu" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"lv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/airlock/service{ + req_access = list(246); + name = "Utilities Closet" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/splf_raider/closet) +"lz" = ( +/obj/structure/table/reinforced/steel, +/obj/item/device/taperecorder{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"lE" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"lF" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/airless, +/area/space) +"lP" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock, +/obj/effect/shuttle_landmark/splf_raider/dock_port{ + dir = 8 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"lQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"lR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"lW" = ( +/obj/effect/floor_decal/corner_wide/brown/full, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"mb" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"ml" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"mm" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = -23; + dir = 1; + pixel_x = -6 + }, +/obj/machinery/airlock_sensor{ + pixel_y = -25; + pixel_x = 5 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_portside, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"mr" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"mv" = ( +/obj/structure/bed/padded/bunk, +/obj/structure/bed/padded, +/obj/item/bedsheet/brown{ + pixel_y = 16 + }, +/obj/item/bedsheet/black, +/obj/effect/ghostspawpoint{ + name = "igs - splf_crewman"; + identifier = "splf_crewman" + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"mG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"mJ" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"mK" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/service{ + dir = 4; + req_one_access = list(246); + name = "Crew Bunks" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/quarters) +"mP" = ( +/obj/machinery/door/blast/regular{ + dir = 4; + id = "splf_chamber_vent" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"mT" = ( +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"mV" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/splf_raider/gunnery) +"mY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/mech_recharger, +/mob/living/heavy_vehicle/premade/ripley/loader/sol, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"nc" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/machinery/access_button{ + pixel_y = -30; + pixel_x = 5; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"ng" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/airlock_sensor/airlock_exterior{ + pixel_y = -7; + pixel_x = -24; + dir = 4 + }, +/obj/machinery/access_button{ + pixel_x = -25; + pixel_y = 5; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"nj" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/closet/walllocker/firecloset{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"nn" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"no" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/power/portgen/basic{ + anchored = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"nr" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/closet/crate/drop/grey, +/obj/effect/floor_decal/industrial/outline/medical, +/obj/item/reagent_containers/glass/bottle/antitoxin, +/obj/item/reagent_containers/glass/bottle/inaprovaline, +/obj/item/reagent_containers/glass/bottle/perconol, +/obj/item/reagent_containers/glass/bottle/mortaphenyl, +/obj/item/reagent_containers/glass/bottle/thetamycin, +/obj/item/clothing/accessory/stethoscope, +/obj/item/cane/crutch, +/obj/item/clothing/accessory/armband/medgreen, +/obj/item/storage/belt/medical/paramedic, +/obj/item/reagent_containers/hypospray, +/obj/item/device/mass_spectrometer, +/obj/item/reagent_containers/glass/bottle/polysomnine, +/obj/item/storage/box/syringes, +/obj/item/material/stool/chair/wheelchair, +/obj/item/storage/box/gloves, +/obj/item/storage/box/masks, +/obj/item/storage/box/bodybags, +/turf/simulated/floor/tiled/full, +/area/splf_raider/medical) +"nt" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/chemical_dispenser/full{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"ny" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"nB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/splf_raider/central) +"nH" = ( +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"nO" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/access_button{ + pixel_x = 25; + pixel_y = -28; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_portside, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"nQ" = ( +/obj/structure/window/shuttle/scc_space_ship, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"ob" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"oc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"oe" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"og" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/bridge) +"oj" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/template_noop, +/area/space) +"ok" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/button/ignition{ + id = "splf_igniter_tank"; + pixel_y = -22; + dir = 1; + pixel_x = -7 + }, +/obj/machinery/button/remote/blast_door{ + id = "splf_co2"; + name = "Chamber Blast Doors"; + pixel_y = -21; + pixel_x = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"on" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/cargo_1) +"oo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/dirt_75, +/obj/machinery/suit_cycler/offship/sol/splf, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"os" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"ot" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/shipsensors, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/splf) +"ov" = ( +/obj/machinery/alarm/south, +/obj/machinery/vending/dinnerware, +/obj/effect/floor_decal/industrial/outline/service, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"oA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"oC" = ( +/obj/structure/bed/padded/bunk, +/obj/structure/bed/padded, +/obj/item/bedsheet/brown, +/obj/item/bedsheet/brown{ + pixel_y = 16 + }, +/obj/effect/ghostspawpoint{ + name = "igs - splf_crewman"; + identifier = "splf_crewman" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"oD" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/alarm/east, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"oF" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"oG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8; + level = 2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"oI" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"oK" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"oT" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/table/rack, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/dirt_75, +/obj/item/device/lightreplacer, +/obj/item/storage/box/lights/mixed, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"oV" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 9 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"oW" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_x = 8; + pixel_y = 28; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_portside, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"oY" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"pc" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 4; + name = "Thrusters to Canister"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"pj" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"po" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"pw" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"px" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/machinery/light/colored/decayed, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"pB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/south, +/obj/structure/closet/crate/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_2) +"pE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 9 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"pF" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"pH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 8; + name = "Combustion Engine"; + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"pN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"pQ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/central) +"pT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/splf_raider/bridge) +"pU" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"qb" = ( +/obj/structure/platform, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"qf" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"qr" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"qt" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + pixel_x = -25 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/gunnery, +/turf/simulated/floor/plating, +/area/splf_raider/gunnery) +"qx" = ( +/obj/machinery/atmospherics/binary/passive_gate/on{ + dir = 8; + target_pressure = 250; + name = "Air Supply to Distro" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"qz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_engineering{ + dir = 8; + name = "Propellant Management"; + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"qB" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/table/steel, +/obj/item/reagent_containers/toothpaste{ + pixel_x = 2; + pixel_y = 14 + }, +/obj/item/reagent_containers/toothpaste{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/item/reagent_containers/toothbrush{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/toothbrush/green{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"qL" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/full, +/area/splf_raider/closet) +"qN" = ( +/obj/effect/landmark/entry_point/aft{ + name = "aft, washroom" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/washroom) +"qO" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"qS" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/ready) +"qT" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/meter, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor/plating, +/area/splf_raider/portside_hall) +"qU" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"qV" = ( +/obj/structure/platform_stairs/full/south_north_cap, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"qW" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east{ + req_access = list(246) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"qY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"qZ" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/space/dynamic, +/area/splf_raider/gunnery) +"rd" = ( +/obj/structure/bed/stool/chair/office/bridge/generic, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"re" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"rf" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"rg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/reinforced/steel, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_x = 6; + pixel_y = 14 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -10; + pixel_y = -2 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -10; + pixel_y = 10 + }, +/obj/item/reagent_containers/syringe{ + pixel_x = -10; + pixel_y = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"rj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"rm" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"ro" = ( +/obj/effect/floor_decal/corner_wide/brown/full, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"rq" = ( +/obj/structure/table/wood, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/alarm/north{ + req_one_access = null; + req_access = list(246) + }, +/obj/item/modular_computer/laptop/preset/civilian{ + pixel_y = 13; + pixel_x = -3 + }, +/obj/random/pottedplant_small{ + pixel_x = 3; + pixel_y = -2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"rr" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ + pixel_x = -7; + pixel_y = 12 + }, +/obj/item/trash/snack_bowl{ + pixel_x = 3; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"rs" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"rw" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"rB" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_2) +"rC" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"rE" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"rG" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Canister to Tank"; + target_pressure = 15000 + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"rQ" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 13 + }, +/obj/item/reagent_containers/food/drinks/cans/root_beer{ + pixel_x = 4; + pixel_y = 1 + }, +/obj/item/reagent_containers/food/drinks/cans/root_beer{ + pixel_x = -7; + pixel_y = 3 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"rT" = ( +/obj/structure/table/steel, +/obj/machinery/reagentgrinder{ + pixel_x = 6; + pixel_y = 9 + }, +/obj/item/reagent_containers/glass/beaker{ + pixel_x = -6; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/shaker{ + pixel_x = -6; + pixel_y = 21 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"rU" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"rV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/pipewrench{ + pixel_x = -1; + pixel_y = 5 + }, +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"rW" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 26 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_slot) +"rY" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"rZ" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/undies_wardrobe, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"sg" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"sj" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"sk" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"sn" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/west{ + req_access = list(246) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/structure/table/reinforced/steel, +/obj/item/storage/box/fancy/chewables/tobacco/nico{ + pixel_x = -5; + pixel_y = 8 + }, +/obj/item/reagent_containers/pill/nicotine{ + pixel_x = 6; + pixel_y = -1 + }, +/obj/item/reagent_containers/pill/nicotine{ + pixel_x = 8; + pixel_y = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"sr" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"sx" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/splf_raider/engine) +"sz" = ( +/obj/structure/plasticflaps/airtight, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/noid, +/obj/machinery/door/airlock/glass{ + door_color = "#909299"; + name = "Freezer"; + id_tag = "splf_freezer" + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/freezer) +"sA" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Bridge"; + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/full, +/area/splf_raider/bridge) +"sD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/pipedispenser, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"sE" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"sN" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/alarm/north, +/obj/item/clothing/glasses/safety/goggles{ + pixel_y = -2; + pixel_x = 4 + }, +/obj/item/device/binoculars{ + pixel_y = 8; + pixel_x = 7 + }, +/obj/item/clothing/ears/earmuffs{ + pixel_y = 3; + pixel_x = -13 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"sT" = ( +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"sU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"sW" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/rations, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/item/reagent_containers/food/snacks/liquidfood, +/obj/random/dirt_75, +/obj/random/smokable, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"sZ" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"td" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor, +/area/splf_raider/gunnery) +"th" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/office) +"tj" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"tq" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"tr" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/ready) +"tv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"tw" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/splf_raider/quarters) +"tz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/machinery/airlock_sensor{ + pixel_y = -24; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_slot) +"tA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_2) +"tD" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"tN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 9 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"tR" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/binary/pump{ + target_pressure = 15000; + name = "Connectors to Cold Loop"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"tT" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/binary/pump/high_power{ + dir = 8; + name = "Canister to Thrusters"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"tZ" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/medical) +"uk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel{ + dir = 8 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"un" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/kitchen) +"uy" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/west{ + req_access = list(246) + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/medical/dark_green, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"uI" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"uJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"uO" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/template_noop, +/area/space) +"uP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"uQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"uS" = ( +/obj/effect/step_trigger/teleporter, +/turf/space/transit/north, +/area/space) +"uX" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"vb" = ( +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/machinery/atmospherics/portables_connector/supply{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/shuttle/splf) +"vf" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/table/standard, +/obj/random/dirt_75, +/obj/random/pottedplant_small{ + pixel_x = -5; + pixel_y = 5 + }, +/obj/item/reagent_containers/food/drinks/flask/vacuumflask/mouthwash{ + pixel_x = 6; + pixel_y = 10 + }, +/obj/item/reagent_containers/toothpaste{ + pixel_x = 11; + pixel_y = -2 + }, +/obj/item/reagent_containers/spray{ + pixel_x = 17; + pixel_y = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"vk" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"vl" = ( +/obj/machinery/computer/ship/sensors/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"vp" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_starboard, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"vt" = ( +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/closet/cabinet{ + name = "Personal Wear" + }, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/spacecash/c1000, +/obj/item/reagent_containers/food/drinks/flask, +/obj/item/storage/secure/briefcase, +/obj/item/device/megaphone, +/obj/item/flame/lighter/zippo/sol, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"vE" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 8 + }, +/obj/machinery/access_button{ + pixel_x = -25; + pixel_y = 33; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"vH" = ( +/obj/machinery/door/airlock{ + dir = 1; + name = "Stall #1"; + id_tag = "splf_stall_1" + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/washroom) +"vI" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/freezer) +"vK" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 8; + pixel_x = 25 + }, +/obj/machinery/airlock_sensor{ + dir = 4; + pixel_x = -25 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_portside, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"vO" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4; + req_access = list(246) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"vZ" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/closet) +"wc" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/splf_raider/quarters) +"wh" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"wj" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/structure/fuel_port/phoron{ + pixel_y = 32 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"wr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"ws" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/bridge) +"wD" = ( +/obj/structure/table/steel, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/item/material/hatchet/butch{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"wF" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"wH" = ( +/obj/item/storage/firstaid/surgery{ + pixel_y = 18; + pixel_x = -1 + }, +/obj/item/storage/firstaid/toxin{ + pixel_x = -9; + pixel_y = 8 + }, +/obj/item/storage/firstaid/adv{ + pixel_y = 1; + pixel_x = -9 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/firstaid/fire{ + pixel_x = 7; + pixel_y = 8 + }, +/obj/item/storage/firstaid/o2{ + pixel_x = 7; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/medical) +"wI" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"wJ" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/machinery/media/jukebox{ + anchored = 1 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"wO" = ( +/obj/effect/shuttle_landmark/splf_raider/nav2, +/turf/template_noop, +/area/space) +"wR" = ( +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"wT" = ( +/obj/structure/platform_stairs, +/obj/structure/platform{ + dir = 8 + }, +/obj/structure/platform{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"wV" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/freezer) +"wX" = ( +/obj/machinery/computer/ship/sensors/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"xa" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"xe" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 8 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/ready) +"xg" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/portside_slot) +"xi" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"xr" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Starboard Module"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/starboard_slot) +"xy" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"xz" = ( +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_door/red, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"xD" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 9 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"xL" = ( +/obj/machinery/appliance/cooker/grill, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"xN" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"xQ" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"xT" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 9 + }, +/obj/structure/platform, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/bridge) +"xX" = ( +/obj/structure/platform_deco{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"xZ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"yb" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/central) +"yc" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"yd" = ( +/obj/effect/floor_decal/corner_wide/brown, +/obj/structure/platform, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"ye" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"yg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/autolathe, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"yh" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"yi" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/freezer) +"yk" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/atmospherics/omni/mixer{ + tag_west = 1; + tag_west_con = 0.4; + active_power_usage = 7500; + tag_south = null; + tag_north_con = 0.6; + tag_north = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"yu" = ( +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"yw" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1 + }, +/obj/effect/map_effect/marker/large_tank{ + name = "splf_co2"; + master_tag = "splf_co2" + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/splf_raider/propulsion) +"yx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 14 + }, +/obj/item/device/hand_labeler{ + pixel_y = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"yC" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/manifold/hidden/aux{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"yE" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/gunnery) +"yF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/structure/closet/crate/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_2) +"yH" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"yN" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock/glass{ + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"yO" = ( +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/obj/item/device/radio/hailing{ + pixel_x = -4; + pixel_y = 4 + }, +/obj/item/device/radio/hailing{ + pixel_x = 8; + pixel_y = 7 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"yT" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/medical) +"yW" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/structure/closet/crate/trashcart, +/obj/item/storage/bag/trash{ + pixel_x = -9; + pixel_y = 2 + }, +/obj/item/storage/bag/trash{ + pixel_x = 4 + }, +/obj/item/storage/bag/trash{ + pixel_x = -4; + pixel_y = -2 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"yZ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"zl" = ( +/obj/effect/landmark{ + name = "carpspawn" + }, +/turf/template_noop, +/area/space) +"zo" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/computer/shuttle_control/explore/terminal/splf_shuttle{ + dir = 4 + }, +/obj/item/device/radio/intercom/expedition/hailing/west, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"zs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"zx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/splf_raider/central) +"zy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/tool, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"zB" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"zF" = ( +/obj/random/pottedplant_small{ + pixel_x = -6; + pixel_y = 10 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/lounge) +"zG" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc/super/west{ + req_access = list(246) + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"zH" = ( +/obj/effect/floor_decal/industrial/loading/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"zJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/splf_raider/engine) +"zP" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"zQ" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, propellant tank" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/propulsion) +"zR" = ( +/obj/effect/shuttle_landmark/splf_shuttle/transit{ + dir = 8 + }, +/turf/space/transit/north, +/area/space) +"zV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 6000 + }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_hall) +"zY" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = 24; + dir = 8; + frequency = 1380 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"Af" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Am" = ( +/obj/machinery/computer/ship/targeting/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"An" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"Ao" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"Ar" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"Au" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"Aw" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Ay" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/computer/ship/targeting/terminal{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"AB" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"AC" = ( +/obj/structure/table/reinforced/steel, +/obj/item/folder/blue{ + pixel_y = 6; + pixel_x = 7 + }, +/obj/item/folder/red{ + pixel_y = -1; + pixel_x = 7 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"AE" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"AG" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "Ancillary Tools"; + req_access = list(246) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/storage/belt/security/full/alt, +/obj/item/storage/belt/security/full/alt, +/obj/item/storage/belt/security/full/alt, +/obj/item/grenade/flashbang, +/obj/item/grenade/flashbang, +/obj/item/grenade/stinger, +/obj/item/grenade/stinger, +/obj/item/grenade/smokebomb, +/obj/item/grenade/frag, +/obj/item/plastique/seismic, +/obj/item/plastique/seismic, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"AK" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"AL" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/freezer, +/area/splf_raider/freezer) +"AO" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/hydroponics, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"AP" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"AR" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_x = -8; + pixel_y = 28; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_starboard, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"AS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"AT" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/airlock{ + name = "Washroom" + }, +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/full, +/area/splf_raider/washroom) +"AY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_hall) +"Ba" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"Bc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"Bf" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"Bh" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/obj/machinery/meter, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Bi" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"Bj" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/access_button{ + pixel_x = -27; + pixel_y = -8 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/gunnery, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"Bp" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_x = -24; + dir = 4; + frequency = 1380 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/docking) +"Bq" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/ready) +"Bs" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"Bt" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Bv" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Bx" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"BA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/west, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"BG" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/alarm/east, +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin{ + pixel_y = 17; + pixel_x = 3 + }, +/obj/item/pen{ + pixel_x = 3; + pixel_y = 18 + }, +/obj/item/storage/toolbox/emergency, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"BM" = ( +/obj/machinery/ammunition_loader/autocannon{ + weapon_id = "SPLF Goshawk" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"BQ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/cable/green, +/obj/machinery/power/apc/west{ + req_access = list(246) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"BR" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"BS" = ( +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 4 + }, +/turf/simulated/floor/lino/diamond, +/area/splf_raider/lounge) +"Cb" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Tank to Thrusters"; + target_pressure = 15000; + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"Ce" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/east{ + req_access = list(246) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Ck" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/light/colored/decayed, +/obj/random/dirt_75, +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Cm" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/ready) +"Co" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/west{ + req_access = list(246) + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"Cq" = ( +/turf/template_noop, +/area/space) +"Cs" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/cargo_2) +"Cx" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"CF" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/medical) +"CM" = ( +/obj/structure/table/reinforced/steel, +/obj/item/toy/desk/fan{ + pixel_x = 7; + pixel_y = 15 + }, +/obj/item/paper_bin{ + pixel_y = 3; + pixel_x = -5 + }, +/obj/item/pen{ + pixel_x = -3; + pixel_y = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"CR" = ( +/obj/structure/window/shuttle/scc_space_ship, +/obj/effect/landmark/entry_point/fore, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"CS" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"CU" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"CZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"Db" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 8 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"Dj" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/universal, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"Dt" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/structure/sink{ + dir = 4; + pixel_x = 13 + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"Dy" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Cargo Hold #2"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/cargo_2) +"Dz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/table/standard, +/obj/structure/bedsheetbin{ + pixel_y = 7 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"DA" = ( +/obj/machinery/computer/ship/targeting/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"DB" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"DC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/stack/material/aluminium/full, +/obj/item/stack/material/glass/reinforced/full, +/obj/item/stack/rods/full, +/obj/item/stack/material/steel/full, +/obj/item/stack/material/plasteel/full, +/obj/random/dirt_75, +/obj/item/stack/material/plastic/full, +/obj/item/stack/material/lead/full, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"DD" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 5 + }, +/obj/machinery/access_button{ + pixel_x = -7; + pixel_y = -28; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/obj/effect/landmark/entry_point/starboard, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"DE" = ( +/obj/machinery/power/generator{ + anchored = 1; + dir = 1 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"DH" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/splf_raider/freezer) +"DJ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/turf/simulated/floor, +/area/splf_raider/engine) +"DK" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/item/device/binoculars{ + pixel_x = 1; + pixel_y = -2 + }, +/obj/item/device/binoculars/high_power{ + pixel_x = 1; + pixel_y = 7 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"DM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/turf/simulated/floor, +/area/splf_raider/engine) +"DO" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 8 + }, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"DS" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"DW" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"DY" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"DZ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/machinery/light/colored/decayed, +/obj/structure/table/standard, +/obj/item/towel{ + pixel_x = 15; + pixel_y = 7 + }, +/obj/item/towel{ + pixel_x = 6 + }, +/obj/item/towel{ + pixel_y = 7 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Eb" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/starboard_hall) +"Ee" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/turf/simulated/floor, +/area/splf_raider/starboard_slot) +"Ek" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"Em" = ( +/obj/effect/floor_decal/corner/brown/full, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"En" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Et" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"EI" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"EJ" = ( +/obj/machinery/appliance/cooker/stove, +/obj/machinery/button/remote/airlock{ + dir = 10; + id = "splf_freezer"; + name = "Freezer Bolt Control"; + specialfunctions = 4; + pixel_y = 27 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"EM" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"EN" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"EQ" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/blue, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor, +/area/splf_raider/portside_hall) +"ER" = ( +/obj/effect/landmark/entry_point/port, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"Fb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/valve{ + name = "Emergency Thermal Relief Valve" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor, +/area/splf_raider/engine) +"Fd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"Fg" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Fh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/alarm/south, +/obj/structure/table/reinforced/steel, +/obj/machinery/reagentgrinder{ + pixel_y = 17; + pixel_x = -6 + }, +/obj/item/reagent_containers/glass/beaker/large{ + pixel_y = 3 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"Fn" = ( +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Fq" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/machinery/door/airlock/glass{ + dir = 4; + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"Fu" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Fy" = ( +/obj/machinery/door/firedoor/noid, +/turf/simulated/floor/tiled/full, +/area/splf_raider/bridge) +"FC" = ( +/obj/effect/map_effect/window_spawner/full/borosilicate/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/machinery/door/blast/regular/open{ + id = "splf_burn"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"FE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/west, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"FG" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/item/vitals_monitor, +/obj/item/vitals_monitor, +/obj/item/tank/oxygen, +/obj/item/tank/oxygen, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/breath/medical, +/obj/item/roller, +/obj/item/reagent_containers/inhaler/pneumalin, +/obj/structure/closet/walllocker/medical/secure{ + pixel_y = -32; + req_access = list(246); + name = "Stabilization Kit" + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"FH" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"FP" = ( +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"FQ" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"FW" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/binary/pump{ + name = "Cooling Array to Generator"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/turf/simulated/floor, +/area/splf_raider/engine) +"FX" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/access_button{ + pixel_y = -30; + pixel_x = 5; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"Ga" = ( +/obj/structure/bed/padded, +/obj/item/bedsheet/brown, +/obj/structure/coatrack{ + pixel_x = 8; + pixel_y = 25 + }, +/obj/effect/floor_decal/industrial/outline/service, +/obj/effect/ghostspawpoint{ + name = "igs - splf_chief"; + identifier = "splf_chief" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"Gb" = ( +/obj/machinery/computer/general_air_control/large_tank_control/terminal{ + name = "Carbon Dioxide Supply Monitor"; + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/map_effect/marker/large_tank{ + name = "splf_co2"; + master_tag = "splf_co2" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"Gg" = ( +/obj/machinery/power/apc/east{ + req_access = list(246) + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/item/device/suit_cooling_unit, +/obj/structure/table/rack, +/obj/item/gun/energy/plasmacutter, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"Gh" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"Go" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/structure/bed/roller, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"Gp" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Gr" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/effect/landmark/entry_point/aft, +/turf/simulated/floor/plating, +/area/shuttle/splf) +"Gs" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"Gv" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"Gy" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"Gz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 5 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_starboard, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"GA" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/access_button{ + pixel_x = -30; + pixel_y = 6; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/effect/shuttle_landmark/splf_raider/dock_aft, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"GE" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + pixel_x = 28; + pixel_y = -28; + req_access = list(246) + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"GH" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/portable_atmospherics/canister/empty, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"GK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"GO" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"GT" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/closet/walllocker/emerglocker/west, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"GU" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/ship_weapon_dummy/barrel, +/obj/effect/landmark/entry_point/fore{ + name = "fore, autocannon" + }, +/turf/space/dynamic, +/area/splf_raider/gunnery) +"GY" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/steel, +/obj/item/trash/tray{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Ha" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"Hf" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/medical) +"Hh" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Hl" = ( +/obj/machinery/alarm/west, +/obj/effect/floor_decal/industrial/outline/operations, +/obj/random/dirt_75, +/obj/structure/janitorialcart/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"Hr" = ( +/obj/effect/floor_decal/spline/fancy/wood/cee{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/splf_raider/quarters) +"Hs" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"Hv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"HM" = ( +/obj/machinery/atmospherics/unary/engine, +/obj/effect/landmark/entry_point/aft{ + name = "aft, starboard thrusters" + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"HP" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"HQ" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"HR" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + dir = 4; + pixel_x = -25 + }, +/obj/machinery/airlock_sensor{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_starboard, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"HU" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_y = -30; + pixel_x = 5; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"Ia" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"If" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/cargo_1) +"Ig" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"Ir" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Is" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"It" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Iw" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/access_button{ + pixel_x = -25; + pixel_y = -28; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_starboard, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"Iz" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/access_button{ + pixel_x = -28; + pixel_y = 8; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/gunnery, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"IB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/suit_cycler/offship/sol/splf, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"IE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/machinery/alarm/south, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/item/ship_ammunition/francisca/frag{ + pixel_y = 6; + pixel_x = -4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"II" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/portside_slot) +"IJ" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"IW" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_hall) +"IX" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"Jd" = ( +/obj/structure/table/reinforced/steel, +/obj/item/clipboard{ + pixel_x = 6; + pixel_y = 3 + }, +/obj/item/pen/blue{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/pen/red{ + pixel_x = -2; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Jh" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Portside Module"; + req_access = list(246); + dir = 1 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/portside_slot) +"Ji" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"Jj" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Js" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/portside_hall) +"Ju" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/obj/machinery/iff_beacon/name_change, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/splf) +"Jv" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 1 + }, +/obj/structure/platform, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/bridge) +"Jw" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/structure/closet/crate/drop/grey, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/grenade/chem_grenade, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/device/assembly/igniter, +/obj/item/stack/material/phoron{ + amount = 6 + }, +/obj/item/storage/box/autoinjectors, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"Jz" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"JB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/yellow{ + dir = 5 + }, +/turf/simulated/wall/shuttle/scc_space_ship/cardinal, +/area/shuttle/splf) +"JF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/alarm/north, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"JG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"JM" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"JO" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"JQ" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"JW" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"JX" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 10 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"JY" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"Kc" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"Kd" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"Ke" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/suit_cycler/engineering/prepared{ + req_access = list(246) + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"Kh" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/alarm/east, +/obj/structure/bed/stool/chair/office/dark{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"Kk" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "splf_windows" + }, +/obj/effect/landmark/entry_point/fore{ + name = "fore, bridge" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Kl" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/structure/bed/stool/chair{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"Km" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Kn" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/ready) +"Kv" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"KB" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/obj/machinery/vending/cigarette/hacked, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"KD" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1; + level = 2 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"KG" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 8; + must_start_working = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_starboard, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"KL" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + pixel_x = 24; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/docking) +"KP" = ( +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, combustion chamber" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"KQ" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"KS" = ( +/obj/machinery/ship_weapon/francisca{ + pixel_x = -64; + pixel_y = -162; + weapon_id = "SPLF Rotary" + }, +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/airless, +/area/splf_raider/gunnery) +"KT" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"KU" = ( +/obj/structure/table/stone/marble, +/obj/machinery/chemical_dispenser/coffee/full{ + pixel_y = 8 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/item/reagent_containers/glass/rag{ + pixel_x = 5; + pixel_y = -7 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "splf_kitchen" + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/kitchen) +"Lg" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 10 + }, +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "splf_windows"; + name = "Window Shutters"; + pixel_y = -25; + pixel_x = 6 + }, +/obj/machinery/button/distress{ + pixel_y = -35; + pixel_x = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/bridge) +"Lp" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/engineering{ + req_access = null + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"Lz" = ( +/obj/machinery/atmospherics/unary/vent_pump/siphon/atmos{ + dir = 1 + }, +/obj/effect/map_effect/marker/large_tank{ + name = "splf_co2"; + master_tag = "splf_co2" + }, +/obj/machinery/sparker{ + id = "splf_igniter_tank"; + pixel_x = -10 + }, +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/splf_raider/propulsion) +"LA" = ( +/obj/machinery/mech_recharger, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"LB" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/structure/platform, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"LC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"LK" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"LP" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + pixel_y = 26 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/docking) +"LR" = ( +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/obj/structure/sink/kitchen{ + dir = 8; + name = "sink"; + pixel_x = 21 + }, +/obj/random/dirt_75, +/obj/item/reagent_containers/glass/bucket{ + pixel_x = 5; + pixel_y = 10 + }, +/turf/simulated/floor/tiled, +/area/splf_raider/closet) +"LS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/item/ship_ammunition/autocannon{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/ship_ammunition/autocannon{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/ship_ammunition/autocannon{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/ship_ammunition/autocannon{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/ship_ammunition/autocannon{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/item/ship_ammunition/autocannon{ + pixel_y = 6; + pixel_x = -1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"LT" = ( +/obj/structure/platform, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"LW" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/structure/table/rack, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/emergency_oxygen/double, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/tank/jetpack/carbondioxide, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/item/device/gps, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"Mb" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"Mi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"Mk" = ( +/obj/machinery/button/remote/blast_door{ + dir = 1; + id = "splf_windows"; + name = "Window Shutters"; + pixel_y = -25; + pixel_x = -6 + }, +/obj/machinery/button/distress{ + pixel_y = -35; + pixel_x = -6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"Ml" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"MA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector/aux{ + dir = 1 + }, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"MF" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, infirmary" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/medical) +"MJ" = ( +/turf/simulated/floor/carpet/lightblue, +/area/splf_raider/office) +"MO" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"MT" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/medical/dark_green, +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"MU" = ( +/obj/machinery/ammunition_loader/francisca{ + weapon_id = "SPLF Rotary" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"MV" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/ready) +"MW" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/platform, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"MY" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/alarm/west, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Nb" = ( +/obj/structure/table/reinforced/steel, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/item/storage/toolbox/mechanical, +/obj/item/device/multitool{ + pixel_x = 3; + pixel_y = 15 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Ni" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"Nl" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4; + id_tag = "splf_chamber" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/effect/map_effect/door_helper/lock, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"No" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/cargo_2) +"Np" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/propulsion) +"Nu" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/access_button{ + pixel_x = 25; + pixel_y = 28; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_portside, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"Nx" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/computer/ship/helm/terminal{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Nz" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + dir = 4; + pixel_y = 3; + pixel_x = -8 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"NA" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"NC" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/body_scanconsole{ + dir = 1; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"NF" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"NK" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"NP" = ( +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"NR" = ( +/obj/structure/table/stone/marble, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/item/toy/comic/inspector{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "splf_kitchen" + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/kitchen) +"NS" = ( +/obj/machinery/computer/ship/helm/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Og" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/glass_mining{ + dir = 4; + req_access = list(246); + name = "Sensitive Storage" + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"Ok" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/lore_radio{ + pixel_y = -3; + pixel_x = -4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Oo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/closet/crate/drop/grey, +/obj/item/sleeping_bag{ + color = "#574836" + }, +/obj/item/sleeping_bag{ + color = "#574836" + }, +/obj/item/sleeping_bag{ + color = "#574836" + }, +/obj/item/sleeping_bag{ + color = "#574836" + }, +/obj/item/sleeping_bag{ + color = "#574836" + }, +/obj/item/tent, +/obj/item/tent, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/folding_table, +/obj/item/material/stool/chair/folding/camping, +/obj/item/material/stool/chair/folding/camping, +/obj/item/material/stool/chair/folding/camping, +/obj/item/material/stool/chair/folding/camping, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"Oq" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/structure/bed/stool/bar/padded/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Ow" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/structure/ship_weapon_dummy, +/turf/space/dynamic, +/area/space) +"OB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"OD" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"OI" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 8; + start_pressure = 6000 + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_hall) +"OO" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/kitchen) +"OU" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + pixel_y = -32; + name = "Fuel Injection Control"; + input_tag = "splf_teg_fuel_in"; + sensors = list("splf_sensor"="Combustion Chamber") + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"OZ" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, officer's quarters" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/office) +"Pa" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 1 + }, +/obj/machinery/airlock_sensor{ + pixel_y = -24; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/turf/simulated/floor, +/area/shuttle/splf) +"Pd" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Docking Array"; + req_access = list(246); + dir = 1 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/docking) +"Pf" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/bed/stool/chair/office/bridge/generic, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Ph" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/table/reinforced/steel, +/obj/item/clothing/glasses/circuitry{ + pixel_y = 6; + pixel_x = 5 + }, +/obj/item/clothing/ears/circuitry{ + pixel_x = -7 + }, +/obj/machinery/recharger{ + pixel_x = 7 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"Pj" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/medical) +"Pk" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"Pp" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Pw" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"Py" = ( +/obj/structure/ship_weapon_dummy, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"Pz" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/sink/kitchen{ + pixel_y = 23; + name = "sink" + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"PB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/meter, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"PD" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 4 + }, +/obj/machinery/computer/general_air_control/large_tank_control/wall{ + pixel_y = -32; + name = "Chamber Circulation Control"; + input_tag = "splf_teg_in"; + output_tag = "splf_teg_out"; + sensors = list("splf_sensor"="Combustion Chamber") + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"PE" = ( +/obj/machinery/sleeper, +/obj/effect/floor_decal/industrial/outline/medical, +/turf/simulated/floor/tiled/full, +/area/splf_raider/medical) +"PI" = ( +/obj/structure/ship_weapon_dummy/barrel, +/turf/simulated/floor/airless, +/area/space) +"PO" = ( +/turf/space/transit/north, +/area/space) +"PQ" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/random/dirt_75, +/obj/machinery/suit_cycler/offship/sol/splf, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"PS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/structure/closet/crate/loot, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_2) +"PX" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/obj/effect/landmark/entry_point/port{ + name = "port, kitchen" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/kitchen) +"Qb" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Qe" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/ship_ammunition/autocannon/he{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/he{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/he{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/he{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/he{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/item/ship_ammunition/autocannon/he{ + pixel_x = -1; + pixel_y = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"Qj" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/iff_beacon/name_change, +/turf/space/dynamic, +/area/splf_raider/bridge) +"Ql" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"Qm" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/west{ + req_access = list(246) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/portside_hall) +"Qt" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"Qz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/portable_atmospherics/canister/empty/carbon_dioxide, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"QI" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"QK" = ( +/obj/machinery/alarm/south, +/obj/structure/table/wood, +/obj/item/device/synthesized_instrument/guitar{ + pixel_y = 6; + pixel_x = -2 + }, +/obj/item/storage/pill_bottle/dice{ + pixel_x = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"QN" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/table/reinforced/steel, +/obj/item/lore_radio{ + pixel_x = 2; + pixel_y = 8 + }, +/obj/random/dirt_75, +/obj/item/cell/apc{ + pixel_x = -5; + pixel_y = -10 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"QP" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, propulsion" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/propulsion) +"QQ" = ( +/obj/machinery/atmospherics/unary/outlet_injector{ + dir = 1; + frequency = 1441; + id = "splf_teg_fuel_in" + }, +/obj/machinery/sparker{ + id = "splf_igniter_engine"; + pixel_x = -10 + }, +/turf/simulated/floor/reinforced/airless, +/area/splf_raider/engine) +"QT" = ( +/obj/machinery/door/airlock{ + dir = 1; + name = "Stall #2"; + id_tag = "splf_stall_2" + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/washroom) +"QX" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"QY" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"QZ" = ( +/obj/structure/bed/padded/bunk, +/obj/structure/bed/padded, +/obj/item/bedsheet/black{ + pixel_y = 16 + }, +/obj/item/bedsheet/black, +/obj/effect/ghostspawpoint{ + name = "igs - splf_crewman"; + identifier = "splf_crewman" + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"Rc" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"Rd" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/closet/walllocker/emerglocker/north, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"Ri" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/splf_raider/engine) +"Ro" = ( +/obj/effect/floor_decal/corner_wide/brown/full, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/starboard_slot) +"Rq" = ( +/obj/effect/floor_decal/industrial/outline/operations, +/obj/machinery/recharge_station, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/closet) +"Rs" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/obj/effect/landmark/entry_point/starboard{ + name = "starboard, rotary" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"Rt" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/manifold/hidden/yellow{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"Rx" = ( +/obj/structure/bed/stool/bar/padded/red{ + dir = 4 + }, +/turf/simulated/floor/lino/diamond, +/area/splf_raider/lounge) +"RA" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + dir = 4; + id = "splf_windows" + }, +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"RE" = ( +/obj/effect/floor_decal/corner/green/diagonal, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"RF" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/door/blast/regular/open{ + id = "splf_windows" + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"RO" = ( +/obj/effect/floor_decal/industrial/outline/service, +/obj/structure/closet/secure_closet/refrigerator, +/obj/item/storage/box/produce, +/obj/item/storage/box/produce, +/obj/item/storage/box/fancy/egg_box, +/obj/item/storage/box/fancy/egg_box, +/obj/item/reagent_containers/food/condiment/enzyme, +/obj/item/reagent_containers/food/drinks/carton/milk, +/obj/item/reagent_containers/food/drinks/carton/milk, +/obj/item/reagent_containers/food/drinks/carton/soymilk, +/obj/item/reagent_containers/food/drinks/carton/soymilk, +/obj/item/reagent_containers/food/condiment/flour, +/obj/item/reagent_containers/food/condiment/sugar, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"RR" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/bed/stool/chair/office/dark, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_1) +"RT" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + req_access = list(246) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/door/firedoor/noid, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"RU" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"RX" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"Sc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/vending/engivend{ + req_access = null + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_hall) +"Sd" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/aux, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Sg" = ( +/obj/structure/platform_stairs/full/south_north_cap{ + dir = 4 + }, +/obj/structure/platform{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Sk" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/random/dirt_75, +/obj/structure/dispenser/oxygen, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"So" = ( +/obj/effect/floor_decal/industrial/hatch_door/yellow{ + dir = 8 + }, +/obj/machinery/door/airlock/glass{ + req_access = list(246) + }, +/obj/machinery/door/firedoor/noid, +/obj/random/dirt_75, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"Sp" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/aux, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + pixel_y = -23; + dir = 1; + pixel_x = 5 + }, +/obj/machinery/airlock_sensor{ + pixel_y = -25; + pixel_x = -7 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_starboard, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"St" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Su" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"SA" = ( +/obj/machinery/computer/ship/engines/terminal{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/grey, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"SC" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/access_button{ + pixel_y = -30; + pixel_x = -5; + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock, +/obj/effect/shuttle_landmark/splf_raider/dock_starboard{ + dir = 4 + }, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"SG" = ( +/obj/effect/floor_decal/corner/mauve/full, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"SI" = ( +/obj/machinery/atmospherics/binary/circulator{ + anchored = 1; + dir = 8 + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"SK" = ( +/obj/structure/bed/stool/bar/padded/red{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"SL" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"SM" = ( +/obj/structure/lattice/catwalk/indoor/grate, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/splf_raider/bridge) +"ST" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"SZ" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/propulsion) +"Ta" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker/airlock/splf_raider/gunnery, +/turf/simulated/floor/plating, +/area/splf_raider/gunnery) +"Th" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/light/colored/decayed, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Tm" = ( +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/structure/undies_wardrobe, +/obj/random/dirt_75, +/obj/structure/sign/flag/sol{ + pixel_y = -32 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/quarters) +"Tq" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"Tx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/blue{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_hall) +"Ty" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/green{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/floor, +/area/splf_raider/engine) +"TG" = ( +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/lightblue, +/area/splf_raider/office) +"TH" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"TJ" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"TL" = ( +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/obj/structure/bed/stool/bar/padded/brown{ + dir = 4 + }, +/obj/effect/ghostspawpoint{ + name = "igs - splf_ipc"; + identifier = "splf_ipc" + }, +/turf/simulated/floor/tiled, +/area/splf_raider/closet) +"TN" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"TU" = ( +/obj/machinery/vending/hydroseeds, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"Ua" = ( +/obj/structure/lattice/catwalk/indoor/grate/gridded, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"Uc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/item/storage/bag/circuits/all{ + pixel_y = 5 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"Uf" = ( +/obj/structure/platform_deco{ + dir = 8 + }, +/obj/structure/platform_deco{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/bridge) +"Uj" = ( +/obj/structure/closet/secure_closet/guncabinet{ + name = "Sidearms"; + req_access = list(246) + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/gun/projectile/colt/super, +/obj/item/gun/projectile/sec/lethal, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/ammo_magazine/c45m, +/obj/item/gun/projectile/pistol/sol, +/obj/item/gun/projectile/pistol/sol, +/obj/item/ammo_magazine/mc9mm, +/obj/item/ammo_magazine/mc9mm, +/obj/item/ammo_magazine/mc9mm, +/obj/item/ammo_magazine/mc9mm, +/obj/item/gun/energy/pistol, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/ready) +"Ul" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"Um" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Un" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/machinery/papershredder, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"Us" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Uu" = ( +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/docking) +"Uw" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/ready) +"Uz" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/machinery/light/small, +/obj/machinery/airlock_sensor{ + pixel_y = -24; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/lounge) +"UA" = ( +/obj/machinery/atmospherics/unary/engine, +/turf/simulated/floor, +/area/splf_raider/engine) +"UB" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/obj/machinery/access_button{ + pixel_x = -27; + pixel_y = -7 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/effect/map_effect/marker_helper/airlock/interior, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"UC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) +"UF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air, +/obj/machinery/atmospherics/portables_connector{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor, +/area/splf_raider/portside_hall) +"UG" = ( +/obj/structure/lattice/catwalk/indoor, +/turf/space/dynamic, +/area/space) +"UN" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet/west, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"US" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/computer/ship/sensors/terminal{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Vb" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume, +/obj/machinery/airlock_sensor/airlock_exterior{ + dir = 8; + pixel_x = 25 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/splf) +"Vd" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 6 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"Vh" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/atmospherics/valve{ + name = "Emergency Thermal Relief Valve" + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"Vi" = ( +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/carpet/lightblue, +/area/splf_raider/office) +"Vj" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/pump/high_power/on{ + dir = 1; + target_pressure = 15000; + name = "Scrubbers to Waste" + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Vl" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux{ + dir = 4 + }, +/obj/machinery/airlock_sensor{ + pixel_x = -24; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock, +/obj/random/dirt_75, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"Vo" = ( +/obj/structure/bed/stool/chair/shuttle{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Vr" = ( +/obj/effect/floor_decal/corner_wide/brown/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/cargo_2) +"Vt" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"VD" = ( +/obj/structure/lattice/catwalk/indoor, +/obj/machinery/ship_weapon/autocannon{ + weapon_id = "SPLF Goshawk" + }, +/obj/effect/map_effect/map_helper/ruler_tiles_3, +/turf/space/dynamic, +/area/splf_raider/gunnery) +"VF" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"VJ" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor, +/area/splf_raider/propulsion) +"VK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 + }, +/obj/machinery/meter, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/turf/simulated/floor, +/area/splf_raider/engine) +"VS" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"VW" = ( +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/machinery/power/apc/east{ + req_access = list(246) + }, +/obj/structure/table/steel, +/obj/item/storage/box/condiment{ + pixel_y = 14 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ + pixel_x = -7; + pixel_y = 2 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ + pixel_x = 1; + pixel_y = -1 + }, +/obj/item/reagent_containers/food/drinks/drinkingglass/newglass/coffeecup/metal{ + pixel_x = 10 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"VX" = ( +/obj/machinery/vending/boozeomat/abandoned, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"We" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/shuttle/splf) +"Wl" = ( +/obj/effect/map_effect/window_spawner/full/shuttle/raider, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/propulsion) +"Wo" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Wq" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"Wt" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + dir = 10 + }, +/turf/simulated/floor, +/area/splf_raider/engine) +"Wv" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/green, +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"WB" = ( +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/light/small{ + dir = 4; + must_start_working = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume/aux, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_portside, +/turf/simulated/floor/plating, +/area/splf_raider/central) +"WE" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/alarm/west, +/obj/structure/table/reinforced/steel, +/obj/random/survival_weapon, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tool, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"WI" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/obj/machinery/light/small{ + dir = 8; + must_start_working = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"WL" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/quarters) +"WM" = ( +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/hatch_door/yellow, +/turf/simulated/floor/tiled/full, +/area/splf_raider/starboard_slot) +"WU" = ( +/obj/machinery/alarm/south, +/turf/simulated/floor/lino/diamond, +/area/splf_raider/lounge) +"WV" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/button/remote/blast_door{ + id = "splf_chamber_vent"; + name = "Emergency Chamber Vent"; + pixel_y = -6; + pixel_x = 23; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"WY" = ( +/obj/machinery/atmospherics/binary/pump/high_power{ + name = "Fuel Injection Pump"; + target_pressure = 15000 + }, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/random/dirt_75, +/obj/machinery/button/remote/airlock{ + dir = 4; + id = "splf_chamber"; + name = "Combustion Chamber Bolt Control"; + specialfunctions = 4; + pixel_x = 23 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"WZ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/photocopier, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/full, +/area/splf_raider/bridge) +"Xa" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled, +/area/splf_raider/closet) +"Xe" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/button/ignition{ + id = "splf_igniter_engine"; + pixel_y = -4; + dir = 8; + pixel_x = 23 + }, +/obj/machinery/button/remote/blast_door{ + id = "splf_burn"; + name = "Chamber Blast Doors"; + pixel_y = 10; + pixel_x = 23; + dir = 4 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"Xk" = ( +/obj/effect/floor_decal/spline/plain/grey{ + dir = 5 + }, +/obj/structure/platform, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/bridge) +"Xm" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/glass_service{ + dir = 8; + name = "Kitchen" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/noid{ + dir = 8 + }, +/turf/simulated/floor/tiled/full, +/area/splf_raider/kitchen) +"Xq" = ( +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"Xs" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/closet/walllocker/medical/secure{ + pixel_y = -32; + req_access = list(246); + name = "O- Blood" + }, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/obj/item/reagent_containers/blood/OMinus, +/turf/simulated/floor/tiled/white, +/area/splf_raider/medical) +"Xt" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/structure/closet/walllocker/firecloset{ + pixel_y = 32 + }, +/obj/item/storage/bag/inflatable/emergency, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"Xv" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/machinery/light/small{ + dir = 1; + must_start_working = 1 + }, +/obj/structure/toilet, +/obj/machinery/button/remote/airlock{ + dir = 8; + id = "splf_stall_1"; + name = "Stall #1 Bolt Control"; + specialfunctions = 4; + pixel_x = -23 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/washroom) +"XA" = ( +/obj/effect/floor_decal/industrial/hatch/grey, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 10 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/lounge) +"XC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/black{ + dir = 1 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"XD" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"XE" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/fuel, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/propulsion) +"XF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 9 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_portside, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"XK" = ( +/obj/effect/floor_decal/corner/paleblue, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"XM" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"XO" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/ready) +"XT" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"Yc" = ( +/turf/simulated/floor/reinforced/carbon_dioxide, +/area/splf_raider/propulsion) +"Yd" = ( +/obj/effect/landmark/entry_point/port{ + name = "port, crew quarters" + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/quarters) +"Yf" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"Yg" = ( +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/kitchen) +"Yh" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + dir = 8 + }, +/obj/machinery/computer/ship/navigation/terminal{ + dir = 4 + }, +/obj/machinery/light/colored/decayed{ + dir = 1 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/lounge) +"Yi" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"Yn" = ( +/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ + dir = 5 + }, +/obj/structure/lattice, +/turf/space/dynamic, +/area/space) +"Yr" = ( +/obj/effect/floor_decal/spline/plain/yellow{ + dir = 6 + }, +/turf/simulated/floor/carpet/rubber, +/area/splf_raider/ready) +"Ys" = ( +/obj/effect/floor_decal/corner/mauve{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 8 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"Yu" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"Yw" = ( +/obj/machinery/power/breakerbox, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"Yx" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/random/bomb_supply, +/obj/random/bomb_supply, +/obj/random/barricade_kit, +/obj/random/barricade_materials, +/obj/random/tool, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/cargo_1) +"YB" = ( +/obj/effect/floor_decal/corner/lime/diagonal, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "splf_kitchen"; + name = "Kitchen Shutters"; + pixel_y = -1; + pixel_x = -20 + }, +/turf/simulated/floor/tiled/white, +/area/splf_raider/kitchen) +"YG" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/splf_raider/closet) +"YI" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/splf_raider/bridge) +"YK" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/gunnery) +"YL" = ( +/obj/effect/floor_decal/industrial/hatch_door/red{ + dir = 1 + }, +/obj/machinery/door/airlock/external{ + dir = 1 + }, +/obj/machinery/access_button{ + pixel_x = -25; + pixel_y = 28; + dir = 4 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/aft_starboard, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"YM" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 1 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/obj/structure/table/reinforced/steel, +/obj/item/paper_bin{ + pixel_y = 2; + pixel_x = -4 + }, +/obj/item/pen/black{ + pixel_x = -3; + pixel_y = 2 + }, +/obj/item/paper/fluff/splf_raider_engine_guide{ + pixel_x = -18 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"YY" = ( +/obj/effect/map_effect/map_helper/ruler_tiles_3{ + dir = 4 + }, +/turf/simulated/wall/shuttle/raider, +/area/splf_raider/engine) +"Za" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 8 + }, +/obj/machinery/access_button{ + pixel_x = 32; + pixel_y = -25; + dir = 1 + }, +/obj/effect/map_effect/marker/airlock/splf_raider/mid_starboard, +/obj/effect/map_effect/marker_helper/airlock/interior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/central) +"Zb" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/machinery/power/emitter{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/propulsion) +"Zd" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light/colored/decayed{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/aux, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/docking) +"Zj" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 5 + }, +/obj/random/dirt_75, +/obj/structure/closet/walllocker/emerglocker/north, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Zm" = ( +/obj/effect/floor_decal/corner/brown/full{ + dir = 8 + }, +/obj/structure/table/reinforced/steel, +/obj/machinery/recharger{ + pixel_x = 41 + }, +/obj/machinery/cell_charger{ + pixel_y = 2 + }, +/obj/random/dirt_75, +/obj/item/storage/toolbox/mechanical{ + pixel_y = 11; + pixel_x = 13 + }, +/obj/random/powercell{ + pixel_y = 2; + pixel_x = -2 + }, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/starboard_hall) +"Zp" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/structure/table/reinforced/steel, +/obj/random/dirt_75, +/obj/item/clothing/head/helmet/pilot{ + pixel_y = 4 + }, +/obj/item/clothing/head/helmet/pilot{ + pixel_y = -6 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/bridge) +"Zr" = ( +/obj/effect/floor_decal/corner/brown{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/fuel, +/turf/simulated/floor/tiled/dark, +/area/splf_raider/engine) +"Zs" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/hydrogen, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/engine) +"Zt" = ( +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/machinery/light/colored/decayed{ + dir = 4 + }, +/turf/simulated/floor/tiled/gridded, +/area/splf_raider/central) +"Zv" = ( +/obj/effect/floor_decal/corner/mauve/full{ + dir = 8 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc/north{ + req_access = list(246) + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark, +/area/shuttle/splf) +"Zy" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; + d1 = 4; + d2 = 8 + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8 + }, +/obj/structure/lattice/catwalk/indoor/grate/dark, +/obj/machinery/atmospherics/pipe/simple/hidden/aux{ + dir = 6 + }, +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle, +/turf/simulated/floor, +/area/shuttle/splf) +"ZC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/table/rack, +/obj/item/ship_ammunition/francisca/ap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/item/ship_ammunition/francisca/ap{ + pixel_x = -4; + pixel_y = 6 + }, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/starboard_slot) +"ZE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/reinforced/airless, +/area/shuttle/splf) +"ZI" = ( +/obj/effect/shuttle_landmark/splf_raider/nav1, +/turf/template_noop, +/area/space) +"ZK" = ( +/obj/effect/floor_decal/corner_wide/brown{ + dir = 1 + }, +/turf/simulated/floor/tiled/gunmetal, +/area/splf_raider/gunnery) +"ZO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/outlet_injector{ + frequency = 1441; + id = "splf_teg_in"; + dir = 1 + }, +/turf/simulated/floor/reinforced/airless, +/area/splf_raider/engine) +"ZV" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/alarm/north, +/obj/effect/floor_decal/industrial/hatch_tiny/yellow, +/obj/machinery/atmospherics/binary/passive_gate/supply{ + dir = 8; + target_pressure = 400 + }, +/turf/simulated/floor/plating, +/area/shuttle/splf) +"ZY" = ( +/obj/effect/floor_decal/industrial/hatch_door/red, +/obj/machinery/door/airlock/external{ + dir = 4 + }, +/obj/effect/shuttle_landmark/splf_shuttle/hangar{ + dir = 8 + }, +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port, +/obj/effect/map_effect/marker_helper/airlock/exterior, +/obj/random/dirt_75, +/turf/simulated/floor/tiled/dark/full, +/area/splf_raider/portside_slot) + +(1,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +"} +(2,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(3,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(4,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(5,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(6,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(7,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(8,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(9,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(10,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +zR +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(11,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(12,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(13,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(14,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(15,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(16,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(17,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(18,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(19,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(20,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(21,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(22,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(23,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +PO +uS +"} +(24,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +uS +"} +(25,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(26,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(27,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(28,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(29,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(30,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(31,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(32,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(33,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(34,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(35,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(36,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(37,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(38,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(39,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(40,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(41,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(42,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(43,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(44,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(45,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(46,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(47,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(48,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(49,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(50,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(51,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(52,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(53,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(54,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(55,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(56,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(57,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(58,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(59,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(60,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(61,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(62,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(63,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(64,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(65,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(66,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(67,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(68,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(69,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(70,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(71,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(72,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(73,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(74,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(75,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(76,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(77,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(78,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(79,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(80,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(81,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(82,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(83,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +fZ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(84,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(85,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(86,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(87,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(88,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(89,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(90,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(91,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(92,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(93,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(94,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(95,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(96,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(97,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(98,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(99,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(100,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(101,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(102,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(103,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(104,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(105,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(106,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(107,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(108,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +aN +mb +JQ +JQ +JQ +JQ +JQ +JQ +JQ +Yn +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(109,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +XC +mb +JQ +JQ +JQ +JQ +JQ +JQ +Yn +Db +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +UG +UG +UG +UG +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(110,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +XT +ob +XT +XT +cH +XT +XT +XT +XT +kT +xD +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +lF +lF +lF +lF +PI +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(111,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +XT +XT +PB +ea +Yw +DS +mG +rs +zG +XT +XT +KP +XT +XT +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +KS +Ow +UG +UG +UG +UG +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(112,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +XT +XT +eL +QI +dT +tR +RX +Yf +fR +yk +lc +WY +VK +Kd +XT +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +gU +MU +Rs +xQ +dM +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(113,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UA +uk +pj +ci +FW +Ri +Vh +sx +kz +OU +XT +XT +Nl +XT +XT +Cq +Cq +Cq +Cq +gU +gU +fi +gU +gU +dH +Ia +ih +pw +gU +gU +gU +gU +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(114,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +HM +Hs +eL +nn +bJ +aE +DE +SI +Wt +Gh +zJ +FC +ZO +QQ +mP +Cq +Cq +Cq +Cq +gU +rQ +dJ +eY +yd +Yu +Yi +KD +Py +Py +rf +qZ +VD +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(115,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UA +oV +Zs +xi +DM +bv +Fb +Ty +DJ +Wv +zJ +FC +jy +fp +mP +Cq +Cq +Cq +Cq +gU +sN +bX +Ay +MW +mV +tj +OB +Py +Py +rf +ep +GU +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(116,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +XT +XT +Zs +JX +Zr +oD +Ba +WV +Xe +PD +XT +XT +XT +XT +XT +Cq +Cq +Cq +Cq +gU +LA +Xq +wR +bW +mV +tj +OB +Py +Py +rf +qZ +qZ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(117,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +YY +XT +XT +YY +XT +XT +Eb +Eb +pH +Eb +Lp +Sc +zy +Eb +Eb +Eb +Cq +Cq +gU +gU +gU +gU +LB +td +Wq +YK +BM +gU +gU +gU +yE +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(118,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +oI +Zm +rj +Mb +Au +qU +qU +qO +DC +Eb +Cq +Cq +Iz +Ta +qt +Bj +po +lh +ZK +Qt +ie +gU +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(119,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +oI +YM +Kh +ny +qW +ny +ny +kS +ao +Eb +Cq +Cq +gU +gU +gU +ds +xz +os +ds +gU +gU +gU +Cq +Cq +Cq +Cq +qS +tr +Hf +yT +MF +CF +yT +jA +qf +SC +jA +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(120,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Eb +Eb +Eb +Eb +Eb +Eb +iq +bc +Eb +Eb +Cq +Cq +Cq +Cq +Cq +ds +aR +Ee +ds +Cq +Cq +Cq +Cq +tr +tr +kF +tr +tr +Hf +ho +NC +Go +uy +jA +bf +Uz +zF +th +th +OZ +cA +th +ws +RF +RF +ws +ws +kt +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(121,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +YL +KG +HR +Iw +zH +VS +kI +zx +If +If +If +If +If +ds +ds +EN +os +ds +ds +UG +UG +tr +tr +AE +LW +PQ +tr +Hf +PE +Ig +An +MT +jA +EM +nc +jA +th +th +Ga +rZ +th +Un +QN +yO +qb +ws +ws +ws +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(122,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +vZ +vZ +vZ +vZ +vZ +vZ +AK +OD +Sk +If +Uc +DO +ro +Jw +ds +AS +lu +Ro +hc +ds +yb +AR +tr +dg +MV +Bq +dI +oo +Hf +wH +Ig +RE +Xs +jA +CS +yC +LC +th +vt +dR +MJ +th +Rd +fe +wT +Uf +Jd +DK +ws +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(123,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +vZ +Rq +TL +Hl +yW +vZ +AK +OD +Ck +If +Ph +Ao +IX +Fh +ds +LS +xy +rU +IE +ds +vp +Gz +tr +Uj +Kn +xe +kC +IB +Hf +nr +eV +oK +FG +jA +CS +XA +JY +th +bF +dw +TG +aQ +lf +rd +SA +xT +Lg +Fn +HQ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(124,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +iL +Ke +YG +qL +Xa +lv +sk +Su +Bv +If +Yx +CU +RR +rg +ds +Qe +Ml +JM +ZC +ds +vp +Sp +tr +AG +cE +Cm +Yr +IB +Hf +Pj +Pj +tZ +by +jA +jk +jk +jA +th +rq +dB +Vi +th +Xt +bh +CM +Jv +am +vl +HQ +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(125,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +vZ +cN +LR +Gg +oT +vZ +HP +uQ +pF +If +yg +rm +zP +nt +ds +gL +jW +cQ +mY +ds +yb +Za +tr +yx +Uw +jd +XO +hL +jA +Yh +Jj +Gp +Aw +Gp +Gp +Jj +KB +th +th +th +th +th +DY +rd +wX +Jv +am +NS +Kk +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(126,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +vZ +vZ +vZ +vZ +vZ +vZ +vZ +MO +rE +jC +If +If +on +fU +If +ds +ds +WM +xr +ds +ds +sr +jF +tr +tr +Og +tr +aY +tr +jA +bq +FP +Oq +JW +SK +Oq +FP +cw +ws +fA +Co +WI +lk +if +Mk +AC +Jv +am +Am +RA +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +ZI +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(127,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +wO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +GA +Vl +aB +yb +kj +BA +yb +AK +OD +hV +GT +Af +Jz +eA +Jz +UN +Jz +Jz +eA +Af +MY +Jz +Jz +Jz +wF +ST +Af +Jz +do +gl +re +fn +Ok +eT +GY +rr +Pp +bU +sA +FQ +pT +sj +qV +xX +rd +DA +Xk +og +jv +HQ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(128,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +TJ +yh +QY +UB +gP +GK +yN +Fg +Bc +EI +EI +bx +EI +Kv +EI +bx +EI +EI +Kv +bx +Ha +EI +EI +bx +oe +Ua +EI +bx +sE +fd +NA +FP +NF +nH +nH +uP +oA +yZ +Fy +YI +SM +Gs +Sg +mJ +tq +wT +Uf +lz +Nb +ws +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(129,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +yb +zY +QX +yb +iC +XM +yb +AK +OD +XK +nj +Zt +Wo +mr +Wo +Wo +Wo +Wo +TH +Zt +Ce +Wo +Wo +Wo +cG +mr +Zt +Wo +zB +gl +TN +It +It +It +It +DB +Um +wJ +ws +ev +BG +JO +WZ +jh +Zp +yu +LT +ws +ws +kA +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(130,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +ip +bd +bd +bd +bd +bd +bd +dr +rE +jC +No +No +Cs +Dy +No +II +II +ke +Jh +II +II +sr +gc +WL +WL +mK +WL +yb +pQ +yb +BS +Rx +Rx +WU +cf +ex +Pd +cf +cf +cf +cf +cf +cf +cf +cf +cf +ws +ws +Qj +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(131,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +bd +Xv +vH +Ji +Nz +bd +Zj +uQ +dA +No +tA +Ek +iZ +al +II +sW +oF +lW +xN +II +yb +iA +WL +js +Hr +Tm +Yg +Xm +Yg +KU +NR +jT +gS +cf +KT +oc +lt +Fd +Zd +Fd +BQ +uJ +eS +MA +cf +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(132,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +qN +bd +bd +Pk +yc +AT +eB +Su +vf +No +rB +RU +SL +rB +II +UC +kH +xg +UC +II +dW +mm +WL +mv +wc +bD +Yg +Pz +YB +ld +sg +Is +px +cf +rY +IJ +rw +IJ +Et +Et +xZ +Vt +Tq +MA +cf +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(133,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +bd +gg +QT +Dt +qB +bd +AK +OD +DZ +No +PS +la +gi +pB +II +Oo +hu +oY +kN +II +dW +XF +WL +kU +ir +QK +Yg +VX +VW +rT +fX +iw +RO +cf +vO +Fq +cf +hs +yH +TU +cf +Hv +dv +cf +cf +cf +cf +cf +cf +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(134,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +bd +bd +bd +bd +bd +bd +AK +OD +Dz +No +yF +Vr +FH +yF +II +Mi +gI +lE +lQ +II +yb +oW +WL +oC +tw +QZ +yi +yi +yi +yi +EJ +Kc +ov +cf +sT +iy +cf +AO +NP +AO +cf +JF +VF +Em +RT +dx +vE +Bp +NK +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(135,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +Nu +WB +vK +nO +zH +Fu +ef +nB +No +No +No +No +No +II +II +iE +dX +II +II +UG +UG +WL +WL +dp +WL +yi +DH +AL +sz +XD +Bf +wD +cf +fL +cc +cf +as +NP +fM +cf +in +Ul +Cx +So +Uu +sZ +KL +bR +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(136,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Js +Js +Js +Js +Js +Js +wI +aJ +Js +Js +Cq +Cq +Cq +Cq +Cq +II +rW +tz +II +Cq +Cq +Cq +Cq +WL +Yd +WL +yi +bI +ak +yi +xL +hw +Yg +cf +LP +jB +cf +Bi +eZ +Bi +cf +cf +cf +cf +cf +cf +cf +cf +cf +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(137,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +IW +ek +FE +zs +Qm +qT +iv +Bx +sD +Js +Cq +Cq +Cq +Cq +Cq +II +ZY +FX +II +Cq +Cq +Cq +Cq +Cq +Cq +Cq +wV +vI +vI +wV +PX +OO +un +cf +lP +HU +cf +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(138,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +IW +Kl +xa +Bs +DW +GO +uI +dK +rV +Js +Cq +Cq +Cq +Cq +Cq +ye +Ir +DD +mT +mT +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(139,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +SZ +SZ +SZ +SZ +SZ +SZ +Js +Js +qz +Js +qY +qx +qY +Js +Js +Js +Cq +Cq +Cq +Cq +Cq +sU +fs +Zy +Pa +mT +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(140,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +SZ +SZ +Ql +BR +Zb +WE +sn +bo +En +ce +Js +AY +EQ +Tx +Js +Cq +Cq +Cq +Vb +CZ +CZ +CZ +pE +hB +Sd +gj +mT +mT +mT +ot +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(141,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Rc +Np +GH +Vj +fN +eh +VJ +hz +wh +Th +Js +UF +zV +OI +Js +Cq +Cq +Cq +mT +mT +jL +fm +mT +St +jj +mT +mT +Hh +mT +nQ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(142,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +db +XE +pN +Km +Gv +AP +ln +oG +ln +ok +SZ +SZ +SZ +SZ +SZ +Cq +Cq +Cq +hr +JB +Zv +Gy +Pw +qr +li +ng +KQ +SG +zo +nQ +nQ +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(143,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Rc +dD +ml +fC +lR +vk +Dj +tD +Rt +Us +Cb +ff +Lz +Yc +SZ +Cq +Cq +Cq +Gr +ap +wj +jb +We +JG +JG +uX +ll +LK +Pf +Nx +CR +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(144,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +SZ +SZ +jM +Qb +no +hT +rC +tT +pc +Bh +rG +ff +yw +eM +SZ +Cq +Cq +Cq +hr +tN +ZV +kq +Ys +Ni +pU +pU +pU +GE +US +nQ +nQ +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(145,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +SZ +SZ +Ar +SZ +SZ +Gb +Qz +cU +cU +SZ +SZ +zQ +SZ +SZ +Cq +Cq +Cq +mT +mT +vb +hH +Bt +Vo +AB +Vo +AB +Vo +mT +nQ +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +oj +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(146,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +SZ +Wl +SZ +SZ +QP +SZ +SZ +SZ +SZ +Vd +Yn +UG +Cq +Cq +Cq +Cq +ZE +tv +gT +gT +dh +mT +ER +mT +mT +mT +mT +Ju +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(147,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +XC +mb +JQ +JQ +JQ +JQ +JQ +JQ +xD +Db +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(148,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +wr +mb +JQ +JQ +JQ +JQ +JQ +JQ +JQ +xD +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(149,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +UG +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(150,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(151,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(152,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(153,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(154,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(155,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(156,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(157,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(158,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(159,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(160,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +zl +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(161,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(162,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(163,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(164,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(165,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(166,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +uO +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(167,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(168,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(169,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(170,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(171,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +hb +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(172,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(173,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(174,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(175,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(176,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(177,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(178,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(179,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(180,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(181,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(182,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(183,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(184,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(185,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(186,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(187,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(188,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(189,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(190,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(191,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(192,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(193,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(194,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(195,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(196,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(197,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(198,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(199,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(200,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(201,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(202,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(203,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(204,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(205,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(206,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(207,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(208,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(209,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(210,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(211,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(212,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(213,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(214,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(215,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(216,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(217,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(218,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(219,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(220,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(221,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(222,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(223,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(224,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(225,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(226,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(227,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(228,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(229,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(230,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(231,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(232,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(233,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(234,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(235,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(236,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(237,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(238,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(239,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(240,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(241,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(242,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(243,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(244,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(245,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(246,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(247,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(248,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(249,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(250,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(251,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(252,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(253,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(254,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} +(255,1,1) = {" +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +Cq +"} diff --git a/maps/away/ships/sol/sol_splf/splf_raider_areas.dm b/maps/away/ships/sol/sol_splf/splf_raider_areas.dm new file mode 100644 index 00000000000..7d9f8662156 --- /dev/null +++ b/maps/away/ships/sol/sol_splf/splf_raider_areas.dm @@ -0,0 +1,77 @@ +/area/splf_raider + name = "Independent Hauler" + icon_state = "green" + requires_power = TRUE + dynamic_lighting = TRUE + no_light_control = FALSE + base_turf = /turf/space + area_flags = AREA_FLAG_RAD_SHIELDED + ambience = AMBIENCE_ENGINEERING + +/area/splf_raider/central + name = "Independent Hauler - Central Hallway" + +/area/splf_raider/lounge + name = "Independent Hauler - Lounge" + +/area/splf_raider/medical + name = "Independent Hauler - Medical Wing" + +/area/splf_raider/kitchen + name = "Independent Hauler - Kitchen" + +/area/splf_raider/freezer + name = "Independent Hauler - Freezer" + +/area/splf_raider/docking + name = "Independent Hauler - Docking Array" + +/area/splf_raider/bridge + name = "Independent Hauler - Bridge" + +/area/splf_raider/office + name = "Independent Hauler - Captain's Quarters" + +/area/splf_raider/quarters + name = "Independent Hauler - Crew Quarters" + +/area/splf_raider/ready + name = "Independent Hauler - Sensitive Equipment" + +/area/splf_raider/starboard_slot + name = "Independent Hauler - Starboard Module Slot" + +/area/splf_raider/portside_slot + name = "Independent Hauler - Portside Module Slot" + +/area/splf_raider/gunnery + name = "Independent Hauler - Gunnery Module" + +/area/splf_raider/cargo_1 + name = "Independent Hauler - Cargo Hold #1" + +/area/splf_raider/cargo_2 + name = "Independent Hauler - Cargo Hold #2" + +/area/splf_raider/washroom + name = "Independent Hauler - Washroom" + +/area/splf_raider/closet + name = "Independent Hauler - Utilites Closet" + +/area/splf_raider/starboard_hall + name = "Independent Hauler - Starboard Hall" + +/area/splf_raider/portside_hall + name = "Independent Hauler - Portside Hall" + +/area/splf_raider/engine + name = "Independent Hauler - Combustion Engine" + +/area/splf_raider/propulsion + name = "Independent Hauler - Propellant Management" + +// Shuttle area +/area/shuttle/splf + name = "SPLF Shuttle" + requires_power = TRUE diff --git a/maps/away/ships/sol/sol_splf/splf_raider_ghostroles.dm b/maps/away/ships/sol/sol_splf/splf_raider_ghostroles.dm new file mode 100644 index 00000000000..caa3f60ee44 --- /dev/null +++ b/maps/away/ships/sol/sol_splf/splf_raider_ghostroles.dm @@ -0,0 +1,94 @@ +// SPLF Crewmen - a loose militia drawn from the system defence forces and volunteers of the Hinterlands, equipped with whatever is available. +/datum/ghostspawner/human/splf_crewman + name = "SPLF Auxiliary Crewman" + short_name = "splf_crewman" + desc = "You are an auxiliary volunteer of the Solarian People's Liberation Fleet, sent abroad from the Hinterlands on a raid to liberate supplies from corporate ownership. Prior to your volunteering you may have been a civilian of any stripe, but your assignment now is singular: take what you need from the corporate oppressors, defer to your liaison officer, and get back home alive. Remember, the corporations are the enemy, not any independents you encounter." + tags = list("External") + + spawnpoints = list("splf_crewman") + max_count = 4 + + outfit = /obj/outfit/admin/splf_crewman + possible_species = list(SPECIES_HUMAN) + allow_appearance_change = APPEARANCE_PLASTICSURGERY + + assigned_role = "SPLF Auxiliary Crew" + special_role = "SPLF Auxiliary Crew" + respawn_flag = null + +/obj/outfit/admin/splf_crewman + name = "SPLF Crewman" + uniform = /obj/item/clothing/under/rank/sol/ + gloves = /obj/item/clothing/gloves/black + shoes = /obj/item/clothing/shoes/jackboots + back = /obj/item/storage/backpack/industrial + head = /obj/item/clothing/head/sol + id = /obj/item/card/id/white + accessory = /obj/item/clothing/accessory/holster/hip + l_ear = /obj/item/device/radio/headset/ship + backpack_contents = list(/obj/item/storage/box/survival = 1, /obj/item/melee/energy/sword/knife/sol = 1) + +/obj/outfit/admin/splf_crewman/get_id_access() + return list(ACCESS_SPLF, ACCESS_EXTERNAL_AIRLOCKS) +// ------------ + +// Liaison Officer - a petty officer picked from the rogue navy elements from the 35th to command the vessel and its militia. +/datum/ghostspawner/human/splf_crewman/chief + name = "SPLF Auxiliary Liaison Officer" + short_name = "splf_chief" + desc = "You are a petty officer of the Solarian People's Liberation Fleet, and a former member of the 35th Fleet before it entered the Hinterlands, now assigned as a Liasion Officer to command a gaggle of rowdy volunteers in a supply raid into Biesellite territory. Stop the miltia from doing anything stupid, ensure the success of the operation, and get everyone back to their homes intact. Remember, no heroics." + + max_count = 1 + spawnpoints = list("splf_chief") + outfit = /obj/outfit/admin/splf_crewman/chief + assigned_role = "SPLF Auxiliary Liaison Officer" + special_role = "SPLF Auxiliary Liaison Officer" + +/obj/outfit/admin/splf_crewman/chief + name = "SPLF Chief" + uniform = /obj/item/clothing/under/rank/sol/dress/pettyofficer + back = /obj/item/storage/backpack/satchel/leather + head = /obj/item/clothing/head/sol/dress +// ------------ + +// The IPC is an entirely seperate type to make things easier. Originally civilian synthetics, hastily repurposed. +/datum/ghostspawner/human/splf_ipc + short_name = "splf_ipc" + name = "SPLF Auxiliary Synthetic" + desc = "Plucked from prior civilian ownership in the Hinterlands, you are a synthetic that has been appropriated and hastily repurposed by the Solarian People's Liberation Fleet for its ends. You serve as non-combatant equipment, ensuring the functionality of the ship and the survival of its crew. Whatever you were in your civilian life, you now exist to forward the cause of national liberation - not that it probably means that much to you." + tags = list("External") + + spawnpoints = list("splf_ipc") + max_count = 1 + + outfit = /obj/outfit/admin/splf_ipc + possible_species = list(SPECIES_IPC, SPECIES_IPC_SHELL, SPECIES_IPC_G1, SPECIES_IPC_G2, SPECIES_IPC_XION) + uses_species_whitelist = TRUE + allow_appearance_change = APPEARANCE_PLASTICSURGERY + + assigned_role = "SPLF Auxiliary Synthetic" + special_role = "SPLF Auxiliary Synthetic" + respawn_flag = null + +/obj/outfit/admin/splf_ipc + name = "SPLF Auxiliary Synthetic" + + uniform = /obj/item/clothing/under/rank/sol/ipc + shoes = /obj/item/clothing/shoes/jackboots + back = /obj/item/storage/backpack/satchel/eng + belt = /obj/item/storage/belt/utility/full + id = /obj/item/card/id/white + l_ear = /obj/item/device/radio/headset/ship + + backpack_contents = list(/obj/item/storage/box/survival = 1) + +/obj/outfit/admin/splf_ipc/post_equip(mob/living/carbon/human/H, visualsOnly) + var/obj/item/organ/internal/ipc_tag/tag = H.internal_organs_by_name[BP_IPCTAG] + if(istype(tag)) + tag.serial_number = uppertext(dd_limittext(md5(H.real_name), 12)) + tag.ownership_info = IPC_OWNERSHIP_PRIVATE + tag.citizenship_info = CITIZENSHIP_NONE + +/obj/outfit/admin/splf_ipc/get_id_access() + return list(ACCESS_SPLF, ACCESS_EXTERNAL_AIRLOCKS) +// ------------ diff --git a/maps/away/ships/sol/sol_splf/splf_raider_landmarks.dm b/maps/away/ships/sol/sol_splf/splf_raider_landmarks.dm new file mode 100644 index 00000000000..1bb933fd641 --- /dev/null +++ b/maps/away/ships/sol/sol_splf/splf_raider_landmarks.dm @@ -0,0 +1,92 @@ +// Aft airlocks +/obj/effect/map_effect/marker/airlock/splf_raider/aft_starboard + name = "Maintenance Hatch" + master_tag = "splf_aft_starboard" + +/obj/effect/map_effect/marker/airlock/splf_raider/aft_portside + name = "Maintenance Hatch" + master_tag = "splf_aft_port" +// -------- + +// Mid airlocks +/obj/effect/map_effect/marker/airlock/splf_raider/mid_starboard + name = "Maintenance Hatch" + master_tag = "splf_mid_starboard" + +/obj/effect/map_effect/marker/airlock/splf_raider/mid_portside + name = "Maintenance Hatch" + master_tag = "splf_mid_port" +// -------- + +// Gunnery airlock +/obj/effect/map_effect/marker/airlock/splf_raider/gunnery + name = "Maintenance Hatch" + master_tag = "splf_gunnery" +// -------- + +// Docking ports +// Aft dock +/obj/effect/map_effect/marker/airlock/docking/splf_raider/aft_dock + name = "Aft Dock" + master_tag = "airlock_splf_aft_dock" + landmark_tag = "splf_raider_aft_dock" + +/obj/effect/shuttle_landmark/splf_raider/dock_aft + name = "Aft Dock" + docking_controller = "airlock_splf_aft_dock" + landmark_tag = "splf_raider_aft_dock" +// -------- + +// Fore dock +/obj/effect/map_effect/marker/airlock/docking/splf_raider/fore_dock + name = "Fore Dock" + master_tag = "airlock_splf_fore_dock" + landmark_tag = "splf_raider_fore_dock" + +/obj/effect/shuttle_landmark/splf_raider/dock_fore + name = "Fore Dock" + docking_controller = "airlock_splf_fore_dock" + landmark_tag = "splf_corvette_fore_dock" +// -------- + +// Port dock +/obj/effect/map_effect/marker/airlock/docking/splf_raider/port_dock + name = "Port Dock" + master_tag = "airlock_splf_port_dock" + landmark_tag = "splf_raider_port_dock" + +/obj/effect/shuttle_landmark/splf_raider/dock_port + name = "Port Dock" + docking_controller = "airlock_splf_port_dock" + landmark_tag = "splf_raider_port_dock" +// -------- + +// Starboard dock +/obj/effect/map_effect/marker/airlock/docking/splf_raider/starboard_dock + name = "Starboard Dock" + master_tag = "airlock_splf_starboard_dock" + landmark_tag = "splf_raider_starboard_dock" + +/obj/effect/shuttle_landmark/splf_raider/dock_starboard + name = "Starboard Dock" + docking_controller = "airlock_splf_starboard_dock" + landmark_tag = "splf_raider_starboard_dock" +// -------- + +// Space landmarks +/obj/effect/shuttle_landmark/splf_raider/nav1 + name = "Fore" + landmark_tag = "splf_raider_nav1" + +/obj/effect/shuttle_landmark/splf_raider/nav2 + name = "Aft" + landmark_tag = "splf_raider_nav2" + +/obj/effect/shuttle_landmark/splf_raider/nav3 + name = "Port" + landmark_tag = "splf_raider_nav3" + +/obj/effect/shuttle_landmark/splf_raider/nav4 + name = "Starboard" + landmark_tag = "splf_raider_nav4" +// -------- diff --git a/maps/away/ships/sol/sol_splf/splf_raider_shuttle.dm b/maps/away/ships/sol/sol_splf/splf_raider_shuttle.dm new file mode 100644 index 00000000000..2bbf6f16f6f --- /dev/null +++ b/maps/away/ships/sol/sol_splf/splf_raider_shuttle.dm @@ -0,0 +1,73 @@ +// Their shuttle is a stolen Chainlink passenger skiff. +/obj/effect/overmap/visitable/ship/landable/splf_shuttle + name = "SPLF Shuttle" + class = "SPLFV" + desc = "This appears to be a Bluebell-class passenger skiff, quite a mundane design utilised widely to transport Stellar Corporate Conglomerate personnel over short distances, such as in and out of a planet's atmosphere. Sensors indicate that the outward hull of this one is unusually badly denatured, implying a clumsily performed orbital re-entry." + shuttle = "SPLF Shuttle" + icon_state = "shuttle" + moving_state = "shuttle_moving" + designer = "Stellar Corporate Conglomerate, Commonwealth of Valkyrie" + sizeclass = "Bluebell-class passenger craft" + shiptype = "Short-distance passenger transportation" + colors = list("#aaafd4", "#78adf8") + max_speed = 1/(3 SECONDS) + burn_delay = 2 SECONDS + vessel_mass = 3000 + fore_dir = SOUTH + vessel_size = SHIP_SIZE_TINY + +/obj/effect/overmap/visitable/ship/landable/splf_shuttle/New() + designation = "[pick("Ours Now", "Better Use", "Watch It Closer", "Repurposed", "Liberated", "People's Mule", "You're Welcome")]" + ..() + +/obj/machinery/computer/shuttle_control/explore/terminal/splf_shuttle + name = "shuttle control console" + shuttle_tag = "SPLF Shuttle" + req_access = list(ACCESS_SPLF) +// -------- + +// Controls docking behaviour +/datum/shuttle/autodock/overmap/splf_shuttle + name = "SPLF Shuttle" + move_time = 20 + shuttle_area = list(/area/shuttle/splf) + current_location = "nav_hangar_splf" + landmark_transition = "nav_transit_splf_shuttle" + dock_target = "splf_shuttle" + range = 1 + fuel_consumption = 2 + logging_home_tag = "nav_hangar_splf" + defer_initialisation = TRUE +// -------- + +// Hangar marker +/obj/effect/shuttle_landmark/splf_shuttle/hangar + name = "Shuttle Port" + landmark_tag = "nav_hangar_splf" + docking_controller = "splf_shuttle_dock" + base_area = /area/space + base_turf = /turf/space + movable_flags = MOVABLE_FLAG_EFFECTMOVE +// -------- + +// Transit landmark +/obj/effect/shuttle_landmark/splf_shuttle/transit + name = "In transit" + landmark_tag = "nav_transit_splf_shuttle" + base_turf = /turf/space/transit/north +// -------- + +// Shuttle docking port +/obj/effect/map_effect/marker/airlock/docking/splf_raider/shuttle_port + name = "Shuttle Dock" + landmark_tag = "nav_hangar_splf" + master_tag = "splf_shuttle_dock" +// -------- + +// Shuttle airlock +/obj/effect/map_effect/marker/airlock/shuttle/splf_shuttle + name = "splf_shuttle" + master_tag = "splf_shuttle" + shuttle_tag = "SPLF Shuttle" + cycle_to_external_air = TRUE +// --------