mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-10 01:34:01 +00:00
## About The Pull Request Hello friends, I've been on a bit of a lighting kick recently, and I decided I clearly do not have enough things to work on as it is. This pr adds angle support to static lights, and a concepting/debug tool for playing with lights on a map. Let's start from first principles yeah? ### Why Angled Lights? Mappers, since they can't actually see a light's effect in editor, tend to go off gut. That gut is based more off what "makes sense" then how things actually work This means they'll overplace light sources, and also they tend to treat lights, particularly light "bars" (the bigger ones) as directional. So you'll have two lights on either sides of a pillar, lights inside a room with lights outside pointing out, etc.  This has annoying side effects. A lot of our map is overlit, to the point that knocking out a light does.... pretty much nothing. I find this sad, and would like to work to prevent it. I think dark and dim, while it does not suit the normal game, is amazing for vibes, and I want it to be easier to see that. Angled lights bring how lights work more in line with how mappers expect lights work, and avoids bleedover into rooms that shouldn't be bled into, working towards that goal of mine. ### How Angled Lights? This is more complex then you'd first think so we'll go step by step  Oh before we start, some catchup from the last time I touched lighting code. Instead of doing a lighting falloff calculation for each lighting corner (a block that represents the resolution of our lights) in view we instead generate cached lightsheets. These precalculate and store all possible falloffs for x and y distances from a source. This is very useful for angle work, since it makes it almost totally free. Atoms get 2 new values. light_angle and light_dir Light angle is the angle the light uses, and light_dir is a cardinal direction it displays in We take these values, and inside sheetbuilding do some optional angle work. getting the center angle, the angle of a pair of coords, and then the delta between them. This is then multiplied against the standard falloff formula, and job done. We do need some extra fenangling to make this all work nicely tho. We currently use a pixel turf var stored on the light source to do distance calculations. This is the turf we pretend the light source is on for visuals, most often used to make wall lights work nice. The trouble is it's not very granular, and doesn't always have the effect you might want. So, instead of generating and storing a pixel turf to do our distance calculations against, we store x and y offset variables. We use them to expand our working range and sheet size to ensure things visually make sense, and then offset any positions by them. I've added a way for sources to have opinions on their offsets too, and am using them for wall lights. This ensures the angle calculations don't make the wall behind a light fulldark, which would be silly. ### Debug Tool? In the interest of helping with that core problem, lights being complex to display, I've added a prototyping tool to the game. It's locked behind mapping verbs, and works about like this. Once the verb is activated, it iterates over all the sources in the world (except turfs because those are kinda silly), outlining and "freezing" them, preventing any future changes. Then, it adds 3 buttons to the owners of a light source.  The first button toggles the light on and off, as desired. The third allows you to move the source around, with a little targeting icon replacing your mouse The second tho, that's more interesting. The second button opens a debug menu for that light  There's a lot here, let's go through it. Bit on the left is a list of templates, which allow you to sample existing light types (No I have no idea why the background is fullwhite, need to work on that pre merge) You can choose one by clicking it, and hitting the upload button. This replaces your existing lighting values with the template's, alongside replacing its icon and icon state so it looks right. There are three types as of now, mostly for categorization. Bar, which are the larger typically stronger lights, Bulb, which are well, bulbs, and Misc which could be expanded, but currently just contains floor lights. Alongside that you can manually edit the power, range, color and angle of the focused light. I also have support for changing the direction of the light source, since anything that uses directional lighting would also tie light dir to it. This isn't *always* done tho, so I should maybe find a way to edit light dir too. My hope is this tool will allow for better concepting of a room's lights, and easier changing of individual object's light values to suit the right visuals. ### Lemon No Why What Ok so I applied angle lights to bars and bulbs, which means I am changing the lighting of pretty much every map in the codebase. I'm gonna uh, go check my work. Alongside this I intend to give lighting some depth. So if there's room to make a space warmer, or highlight light colors from other sources, I will do that. (Images as examples)  I also want to work on that other goal of mine, making breaking lights matter. So I'll be doing what I can to ensure you only need to break one light to make a meaningful change in the scene. This is semi complicated by one light source not ever actually reaching fullbright on its own, but we do what we must because we can.  I'm as I hope you know biased towards darker spaces, I think contrast has vibes. In particular I do not think strong lights really suit maintenance. Most of what is used there are bulbs, so I'm planning on replacing most uses with low power bulbs, to keep light impacts to rooms, alongside reducing the amount of lights placed in the main tunnels  **If you take issue with this methodology please do so NOW**, I don't want to have to do another pass over things. Oh also I'm saving station maps for last since ruins are less likely to get touched in mapping march and all. ### Misc + Finishing Thoughts Light templates support mirroring vars off typepaths using a subtype, which means all the templates added here do not require updating if the source type changes somehow. I'd like to expand the template list at some point, perhaps in future. I've opened this as a draft to make my intentions to make my changes to lights known, and to serve as motivation for all the map changes I need to do. ### Farish Future I'm unhappy with how we currently configure lights. I would like a system that more directly matches the idea of drawing falloff curves, along with allowing for different falloffs for different colors, alongside extending the idea to angle falloff. This would make out of engine lighting easier, allow for nicer looking lights (red to pink, blue to purple, etc), and improve accessibility by artists. This is slightly far off, because I have other obligations and it's kinda complicated, but I'd like to mention it cause it's one of my many pipedreams. ## Changelog 🆑 add: Added angle lighting, applies it to most wall lights! add: Adds a lighting prototyping tool, mappers go try it out (it's locked behind the mapping verb) /🆑 --------- Co-authored-by: MMMiracles <lolaccount1@hotmail.com>
648 lines
10 KiB
Plaintext
648 lines
10 KiB
Plaintext
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
|
|
"aa" = (
|
|
/turf/template_noop,
|
|
/area/template_noop)
|
|
"ab" = (
|
|
/turf/closed/wall/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"ac" = (
|
|
/obj/structure/grille,
|
|
/obj/structure/window/reinforced/shuttle/tinted,
|
|
/turf/open/floor/plating,
|
|
/area/shuttle/escape)
|
|
"ad" = (
|
|
/obj/effect/turf_decal/tile/green/fourcorners,
|
|
/turf/open/floor/iron,
|
|
/area/shuttle/escape)
|
|
"ae" = (
|
|
/obj/effect/turf_decal/tile/green/fourcorners,
|
|
/turf/open/floor/iron/dark,
|
|
/area/shuttle/escape)
|
|
"af" = (
|
|
/obj/machinery/power/emitter/energycannon/magical,
|
|
/obj/effect/turf_decal/tile/green/fourcorners,
|
|
/turf/open/floor/iron/dark,
|
|
/area/shuttle/escape)
|
|
"ag" = (
|
|
/obj/structure/table/abductor/wabbajack/left,
|
|
/obj/effect/turf_decal/tile/green/fourcorners,
|
|
/turf/open/floor/iron/dark,
|
|
/area/shuttle/escape)
|
|
"ah" = (
|
|
/obj/structure/table/abductor/wabbajack/right,
|
|
/obj/effect/turf_decal/tile/green/fourcorners,
|
|
/turf/open/floor/iron/dark,
|
|
/area/shuttle/escape)
|
|
"ai" = (
|
|
/obj/structure/sign/warning/biohazard,
|
|
/turf/closed/wall/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aj" = (
|
|
/obj/structure/barricade/wooden,
|
|
/obj/machinery/door/airlock/titanium,
|
|
/turf/open/floor/cult,
|
|
/area/shuttle/escape)
|
|
"ak" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 4
|
|
},
|
|
/obj/machinery/button/flasher{
|
|
id = "shuttle_flasher";
|
|
pixel_x = -24
|
|
},
|
|
/turf/open/floor/mineral/plastitanium/red,
|
|
/area/shuttle/escape/brig)
|
|
"al" = (
|
|
/turf/open/floor/mineral/plastitanium/red,
|
|
/area/shuttle/escape/brig)
|
|
"am" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 8
|
|
},
|
|
/turf/open/floor/mineral/plastitanium/red,
|
|
/area/shuttle/escape/brig)
|
|
"an" = (
|
|
/obj/structure/table/wood,
|
|
/obj/item/flashlight/flare/candle/infinite,
|
|
/turf/open/floor/cult,
|
|
/area/shuttle/escape)
|
|
"ao" = (
|
|
/obj/structure/barricade/wooden,
|
|
/turf/open/floor/cult,
|
|
/area/shuttle/escape)
|
|
"ap" = (
|
|
/turf/open/floor/cult,
|
|
/area/shuttle/escape)
|
|
"aq" = (
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"as" = (
|
|
/obj/effect/spawner/structure/window/reinforced/shuttle,
|
|
/turf/open/floor/plating,
|
|
/area/shuttle/escape)
|
|
"at" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 4
|
|
},
|
|
/obj/machinery/flasher/directional/west{
|
|
id = "shuttle_flasher"
|
|
},
|
|
/turf/open/floor/mineral/plastitanium/red,
|
|
/area/shuttle/escape/brig)
|
|
"au" = (
|
|
/obj/structure/chair/wood,
|
|
/turf/open/floor/cult,
|
|
/area/shuttle/escape)
|
|
"av" = (
|
|
/obj/structure/chair/comfy/shuttle,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aw" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 8
|
|
},
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"ax" = (
|
|
/obj/machinery/door/airlock/titanium{
|
|
name = "Emergency Shuttle Airlock"
|
|
},
|
|
/obj/effect/mapping_helpers/airlock/access/all/security/general,
|
|
/turf/open/floor/plating,
|
|
/area/shuttle/escape/brig)
|
|
"ay" = (
|
|
/obj/structure/table,
|
|
/obj/item/paper_bin,
|
|
/obj/item/pen{
|
|
pixel_x = -2;
|
|
pixel_y = 4
|
|
},
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"az" = (
|
|
/obj/machinery/computer/emergency_shuttle{
|
|
dir = 1
|
|
},
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aA" = (
|
|
/obj/structure/table,
|
|
/obj/item/coin/mythril,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aB" = (
|
|
/obj/machinery/door/airlock/public/glass{
|
|
name = "Emergency Shuttle Brig"
|
|
},
|
|
/obj/effect/mapping_helpers/airlock/access/all/security/general,
|
|
/turf/open/floor/mineral/plastitanium/red,
|
|
/area/shuttle/escape/brig)
|
|
"aC" = (
|
|
/obj/machinery/door/airlock/titanium,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aD" = (
|
|
/obj/machinery/door/airlock/titanium{
|
|
name = "Emergency Shuttle Airlock"
|
|
},
|
|
/obj/docking_port/mobile/emergency{
|
|
name = "NT Lepton Violet"
|
|
},
|
|
/turf/open/floor/plating,
|
|
/area/shuttle/escape)
|
|
"aF" = (
|
|
/obj/machinery/door/window/left/directional/east,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aG" = (
|
|
/obj/structure/extinguisher_cabinet/directional/east,
|
|
/obj/structure/table/glass,
|
|
/obj/item/storage/box/syringes{
|
|
pixel_x = 3;
|
|
pixel_y = 3
|
|
},
|
|
/obj/item/storage/box/beakers,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"aH" = (
|
|
/obj/machinery/status_display/evac,
|
|
/turf/closed/wall/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aI" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 4
|
|
},
|
|
/turf/open/floor/mineral/titanium/blue,
|
|
/area/shuttle/escape)
|
|
"aK" = (
|
|
/obj/machinery/stasis{
|
|
dir = 4
|
|
},
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"aL" = (
|
|
/obj/structure/table/reinforced,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aM" = (
|
|
/obj/machinery/chem_dispenser,
|
|
/obj/machinery/light/small/directional/east,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"aO" = (
|
|
/turf/open/floor/plating,
|
|
/area/shuttle/escape)
|
|
"aP" = (
|
|
/obj/structure/chair/office/light{
|
|
dir = 8
|
|
},
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aQ" = (
|
|
/obj/machinery/chem_heater/withbuffer,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"aR" = (
|
|
/obj/machinery/chem_master,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"aS" = (
|
|
/obj/machinery/door/window/right/directional/east,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aT" = (
|
|
/obj/structure/table/glass,
|
|
/obj/item/reagent_containers/cup/bottle/epinephrine{
|
|
pixel_x = 2;
|
|
pixel_y = 2
|
|
},
|
|
/obj/item/reagent_containers/cup/bottle/multiver,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"aU" = (
|
|
/obj/machinery/door/airlock/public/glass,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"aV" = (
|
|
/obj/machinery/door/airlock/titanium{
|
|
name = "Emergency Shuttle Airlock"
|
|
},
|
|
/turf/open/floor/plating,
|
|
/area/shuttle/escape)
|
|
"aW" = (
|
|
/obj/effect/turf_decal/stripes/line{
|
|
dir = 1
|
|
},
|
|
/obj/effect/turf_decal/tile/yellow/fourcorners,
|
|
/turf/open/floor/iron,
|
|
/area/shuttle/escape)
|
|
"aX" = (
|
|
/obj/effect/turf_decal/stripes/line{
|
|
dir = 5
|
|
},
|
|
/obj/effect/turf_decal/tile/yellow/fourcorners,
|
|
/turf/open/floor/iron,
|
|
/area/shuttle/escape)
|
|
"ba" = (
|
|
/obj/structure/destructible/cult/item_dispenser/forge/engine,
|
|
/obj/effect/turf_decal/tile/yellow/fourcorners,
|
|
/turf/open/floor/iron,
|
|
/area/shuttle/escape)
|
|
"bb" = (
|
|
/obj/effect/turf_decal/stripes/line{
|
|
dir = 4
|
|
},
|
|
/obj/effect/turf_decal/tile/yellow/fourcorners,
|
|
/turf/open/floor/iron,
|
|
/area/shuttle/escape)
|
|
"bf" = (
|
|
/obj/machinery/power/shuttle_engine/heater,
|
|
/turf/open/lava/smooth/airless,
|
|
/area/shuttle/escape)
|
|
"bg" = (
|
|
/obj/machinery/power/shuttle_engine/propulsion,
|
|
/turf/open/floor/plating/airless,
|
|
/area/shuttle/escape)
|
|
"bi" = (
|
|
/obj/machinery/light/directional/south,
|
|
/obj/effect/turf_decal/tile/green/fourcorners,
|
|
/turf/open/floor/iron/dark,
|
|
/area/shuttle/escape)
|
|
"bj" = (
|
|
/obj/machinery/light/small/directional/north,
|
|
/turf/open/floor/mineral/plastitanium/red,
|
|
/area/shuttle/escape/brig)
|
|
"bk" = (
|
|
/obj/structure/chair/wood,
|
|
/obj/machinery/light/directional/west,
|
|
/turf/open/floor/cult,
|
|
/area/shuttle/escape)
|
|
"bl" = (
|
|
/obj/machinery/light/directional/north,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"bn" = (
|
|
/obj/machinery/light/directional/south,
|
|
/obj/machinery/status_display/evac/directional/south,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"bo" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 4
|
|
},
|
|
/obj/machinery/light/small/directional/west,
|
|
/turf/open/floor/mineral/titanium/blue,
|
|
/area/shuttle/escape)
|
|
"bp" = (
|
|
/obj/machinery/light/small/directional/east,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
"do" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 8
|
|
},
|
|
/obj/structure/window/reinforced/spawner/directional/east,
|
|
/turf/open/floor/mineral/titanium/blue,
|
|
/area/shuttle/escape)
|
|
"ji" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 8
|
|
},
|
|
/turf/open/floor/mineral/titanium/blue,
|
|
/area/shuttle/escape)
|
|
"ks" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 8
|
|
},
|
|
/obj/structure/window/reinforced/spawner/directional/east,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"rT" = (
|
|
/obj/structure/window/reinforced/spawner/directional/north{
|
|
resistance_flags = 33
|
|
},
|
|
/turf/open/lava/smooth/airless,
|
|
/area/shuttle/escape)
|
|
"sM" = (
|
|
/obj/structure/table,
|
|
/obj/item/storage/toolbox/mechanical,
|
|
/obj/item/storage/medkit/regular{
|
|
pixel_x = -1;
|
|
pixel_y = 1
|
|
},
|
|
/obj/item/wrench/medical,
|
|
/turf/open/floor/mineral/titanium/white,
|
|
/area/shuttle/escape)
|
|
"zw" = (
|
|
/obj/structure/chair/comfy/shuttle{
|
|
dir = 8
|
|
},
|
|
/obj/machinery/light/small/directional/east,
|
|
/turf/open/floor/mineral/titanium/blue,
|
|
/area/shuttle/escape)
|
|
"Aj" = (
|
|
/obj/structure/destructible/cult/item_dispenser/forge/engine,
|
|
/obj/effect/turf_decal/tile/red/fourcorners,
|
|
/turf/open/floor/iron/white,
|
|
/area/shuttle/escape)
|
|
"IH" = (
|
|
/obj/effect/turf_decal/stripes/line{
|
|
dir = 1
|
|
},
|
|
/obj/effect/turf_decal/tile/red/fourcorners,
|
|
/turf/open/floor/iron/white,
|
|
/area/shuttle/escape)
|
|
"Mz" = (
|
|
/obj/effect/turf_decal/stripes/line{
|
|
dir = 9
|
|
},
|
|
/obj/effect/turf_decal/tile/red/fourcorners,
|
|
/turf/open/floor/iron/white,
|
|
/area/shuttle/escape)
|
|
"MK" = (
|
|
/obj/structure/chair/comfy/shuttle,
|
|
/turf/open/floor/mineral/titanium/blue,
|
|
/area/shuttle/escape)
|
|
"Wj" = (
|
|
/obj/effect/turf_decal/stripes/line{
|
|
dir = 8
|
|
},
|
|
/obj/effect/turf_decal/tile/red/fourcorners,
|
|
/turf/open/floor/iron/white,
|
|
/area/shuttle/escape)
|
|
"Wp" = (
|
|
/obj/structure/table,
|
|
/obj/item/storage/medkit/fire,
|
|
/obj/item/storage/medkit/regular{
|
|
pixel_x = 2;
|
|
pixel_y = 3
|
|
},
|
|
/obj/item/crowbar,
|
|
/turf/open/floor/mineral/titanium,
|
|
/area/shuttle/escape)
|
|
|
|
(1,1,1) = {"
|
|
aa
|
|
aa
|
|
aa
|
|
aa
|
|
ab
|
|
ab
|
|
ab
|
|
ax
|
|
ab
|
|
aD
|
|
ab
|
|
as
|
|
as
|
|
as
|
|
ab
|
|
aV
|
|
ab
|
|
aV
|
|
ab
|
|
ab
|
|
ab
|
|
aa
|
|
"}
|
|
(2,1,1) = {"
|
|
aa
|
|
ab
|
|
ab
|
|
ab
|
|
ab
|
|
ak
|
|
at
|
|
al
|
|
as
|
|
aq
|
|
bo
|
|
aI
|
|
aI
|
|
aq
|
|
ab
|
|
aq
|
|
bo
|
|
aW
|
|
ba
|
|
rT
|
|
ab
|
|
ab
|
|
"}
|
|
(3,1,1) = {"
|
|
ab
|
|
ab
|
|
ag
|
|
ae
|
|
ab
|
|
bj
|
|
al
|
|
al
|
|
aB
|
|
aq
|
|
aq
|
|
aq
|
|
aq
|
|
aq
|
|
ab
|
|
aq
|
|
aq
|
|
aX
|
|
bb
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(4,1,1) = {"
|
|
ac
|
|
ad
|
|
ae
|
|
ad
|
|
ab
|
|
am
|
|
am
|
|
am
|
|
as
|
|
aq
|
|
do
|
|
do
|
|
do
|
|
aq
|
|
aU
|
|
aq
|
|
aq
|
|
aq
|
|
aq
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(5,1,1) = {"
|
|
ac
|
|
ae
|
|
ad
|
|
ae
|
|
ab
|
|
ab
|
|
ab
|
|
ab
|
|
ab
|
|
aq
|
|
aK
|
|
sM
|
|
aK
|
|
aq
|
|
ab
|
|
ji
|
|
ji
|
|
zw
|
|
ji
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(6,1,1) = {"
|
|
ac
|
|
af
|
|
ad
|
|
bi
|
|
ai
|
|
an
|
|
bk
|
|
ay
|
|
ab
|
|
bl
|
|
aq
|
|
aq
|
|
aq
|
|
bn
|
|
ab
|
|
ab
|
|
ab
|
|
ab
|
|
ab
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(7,1,1) = {"
|
|
ac
|
|
ae
|
|
ad
|
|
ae
|
|
aj
|
|
ao
|
|
au
|
|
az
|
|
ab
|
|
aF
|
|
ks
|
|
aq
|
|
ks
|
|
aS
|
|
as
|
|
aI
|
|
aI
|
|
bo
|
|
aI
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(8,1,1) = {"
|
|
ac
|
|
ad
|
|
ae
|
|
ad
|
|
ai
|
|
ap
|
|
av
|
|
aA
|
|
ab
|
|
aq
|
|
aL
|
|
aO
|
|
aL
|
|
aq
|
|
aU
|
|
aq
|
|
aq
|
|
aq
|
|
aq
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(9,1,1) = {"
|
|
ab
|
|
ab
|
|
ah
|
|
ae
|
|
aH
|
|
aq
|
|
aq
|
|
aq
|
|
aC
|
|
aq
|
|
aq
|
|
aP
|
|
aq
|
|
aq
|
|
as
|
|
MK
|
|
aq
|
|
Mz
|
|
Wj
|
|
rT
|
|
bf
|
|
bg
|
|
"}
|
|
(10,1,1) = {"
|
|
aa
|
|
ab
|
|
ab
|
|
ab
|
|
ab
|
|
Wp
|
|
aw
|
|
aw
|
|
ab
|
|
aG
|
|
aM
|
|
aQ
|
|
aR
|
|
aT
|
|
as
|
|
MK
|
|
bp
|
|
IH
|
|
Aj
|
|
rT
|
|
ab
|
|
ab
|
|
"}
|
|
(11,1,1) = {"
|
|
aa
|
|
aa
|
|
aa
|
|
aa
|
|
ab
|
|
as
|
|
ab
|
|
as
|
|
ab
|
|
ab
|
|
ab
|
|
as
|
|
as
|
|
as
|
|
ab
|
|
ab
|
|
ab
|
|
as
|
|
ab
|
|
ab
|
|
ab
|
|
aa
|
|
"}
|