Added: Initial world generation tool

This commit is contained in:
Rainer Leit
2026-09-17 17:55:48 +03:00
parent d64748f76f
commit cc43ed8dc8
2065 changed files with 23664 additions and 1011 deletions
+5
View File
@@ -0,0 +1,5 @@
{
"enabledPlugins": {
"unreal-engine-skills-for-claude-code@claude-plugins-official": true
}
}
+4
View File
@@ -86,3 +86,7 @@ Platforms/*/Binaries/
# Python packages installed for the authoring scripts by Scripts/Authoring/bootstrap-pylib.sh # Python packages installed for the authoring scripts by Scripts/Authoring/bootstrap-pylib.sh
Scripts/Authoring/.pylib/ Scripts/Authoring/.pylib/
__pycache__/ __pycache__/
# The terrain generator is a Go program; its binary and preview output are rebuilt from a seed.
Tools/Terrain/bin/
RawContent/World/Preview/
+30 -4
View File
@@ -38,10 +38,36 @@ The editor serves the engine's MCP plugin on `127.0.0.1:8000/mcp` while it is op
Claude Code at it. Reconnect with `/mcp` once the editor is up. Close the editor and its Live Coding console Claude Code at it. Reconnect with `/mcp` once the editor is up. Close the editor and its Live Coding console
before a shell build. before a shell build.
Off the ladder: `Content/Maps/L_World`, a ~200 km² world-partitioned landscape built by Off the ladder: `Content/Maps/L_World`, a ~200 km² world-partitioned landscape, is a product of three inputs and
`Scripts/Authoring/create_world.py` from PNGs in `RawContent/World/Heightmaps/` (seeded by `generate_heightmap.py`) nothing else: the manifest `RawContent/World/World.json` (size, what a heightmap value means in metres, the
through `ULandscapeAuthoringLibrary` in the `SaltyEditor` module. It uses Elite_RockyMeadows' landscape material. height source, the paint-layer rules), the PNGs `Scripts/Authoring/generate_heightmap.py` writes from it into
No gameplay code references it; the gym is still the test level. `RawContent/World/Heightmaps/`, and `Scripts/Authoring/create_world.py`, which imports them through
`ULandscapeAuthoringLibrary` in the `SaltyEditor` module and dresses the level as Elite_RockyMeadows dresses its
demo maps (landscape material and layers, sun with cloud shadows, skybox, fog, grade; numbers read with
`dump_level.py`). The height source is seeded noise today, weathered and carved by `heightmap_erosion.py`
(hydraulic droplets, thermal weathering, strata; D-46); a real heightmap is a manifest edit and a rerun
(`RawContent/World/README.md`). Run `create_world.py` detached, never under a tool timeout, and never while the
editor has `L_World` open. No gameplay code references the world; the gym is still the test level. Where the
generator is going is settled in [`Docs/Terrain.md`](Docs/Terrain.md) (D-47, D-48): a Go core in
`Tools/Terrain/`, stream-power fluvial erosion instead of droplets as the thing that shapes the land, a canvas
of 7141 vertices at 200 cm over −512…1536 m, and a `Generated` edit layer so sculpting survives a rerun. Read
it before touching the generator, and the numpy pipeline is not to be extended.
The Go core now exists and works: `Tools/Terrain/` builds an uplift *rate* field and lets a Braun-Willett
stream-power solve produce the terrain from it, with a Roering nonlinear hillslope law and per-uplift-class
statistics. The coast is a pass of its own now (D-51, `internal/coast`), running after the solve: a continental
shelf whose width follows the relief behind the shore, a surf that planes a shore platform and leaves a cliff
where its reach ends, and a sediment budget carried along the shore into the bays and out of the river mouths.
It stops at the geology grid, so the detail passes are unbuilt and `L_World` still comes from the numpy
pipeline. **[`Docs/Terrain-Next.md`](Docs/Terrain-Next.md) is the working brief** — how to run it, what
each output map is for, what still looks wrong, and what has already been measured and rejected. Start there.
Where it is going: finish the detail passes so there is a full-resolution output at all, then make the source
a **painted map** — an author paints the uplift, the mask and the erodibility, never the height, and the solve
turns that intent into terrain with real drainage. Worlds are far larger than today's 14 km canvas, so the
geology solve stays whole (it cannot be tiled: drainage area is global) and only the detail passes tile. That
makes two rules binding on anything written now: index every noise and hash by **absolute world coordinates**
rather than grid index, and give every tiled pass an overlap margin. Composition tuning is parked.
Next: step 3, the body, the camera, the input map and the gym. Step 1's PIE proof (two clients, dedicated Next: step 3, the body, the camera, the input map and the gym. Step 1's PIE proof (two clients, dedicated
server, two pawns in the gym) is still a person's to tick. Update this section when a step closes. server, two pawns in the gym) is still a person's to tick. Update this section when a step closes.
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a1bcc28365fdc2c2c427eab1271e4698adefb78d8308800bc2689c6b14469ef4
size 15790
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ea3f4909f2cf984b2105663a895b2055821bd33a323719d53ce3e3993c22dd05
size 30425830
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d502a498b22a4cdfefab55ac1cb42da93f057b8f13b17417d30900e2ca0d1362
size 23141112
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:11a358f2b22ccea7c466b113d4c2390bdf2cc52c94778f30336196229a0ceaf0
size 15790
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb01f46fa2639eebabd720a687b3e2817c88fe5d8ab6eb7779814429c8c576a8
size 33149217
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:89a4932003c2379e6c027f0aef0fd4706529a73d21b9e2dcf242a27bed29d755
size 17317947
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:46e6797b8b6ca1d85a9e38e4569e2feecb4103c84dac7c8e7e6f152c350b7a30
size 15790
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:99f65f38c46662e9a09fc37a13cf7c22fecdfd90b535bb1e02cdaf00f3bf0958
size 30472160
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9ebe40c9ac7501a0e7c0fdd2b41e41976995c15d08f2e5b160b1246613a48261
size 30175428
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:94354d6f8de1f10516b2c8c0e7a3d2c765bec4efcc37eea906bac7134eaba85a
size 539404738
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2dbf1a1ed26efde48e5a34e0114f21fa9037349f449182ba291e0b0f2cf9aed9
size 535009665
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ffcf68d9fc4e3f1f03e082295d42d210a4b80a41392eb30bdd7b2f87cbe40da0
size 561063425
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b8c7ccdb6e0c2ccbc047ca42334e5aea1d52a2214b59da5f6b01a386fda27e55
size 100279
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b0821fed067a3aadb949757a032a8360fce9159558606a3731eca4d010b32c7
size 55443
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ac25cda84d52e4590577a0abbff524d025fa56ecb889f5af5e1baa117bf70c31
size 79929
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ec9a0053b38a4e31bbb3cc7a03313ad003fd4125e84847a53d9be4f25d2abd00
size 198429
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ab0af83cb395e8d52a61bdcebb0c6426aed23cf4bdd4fda157650e7d0de8fdb
size 131164
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5bc08661eea8c555639c4bddde0374246496eb56f739d713408b22d5f06bfa5b
size 125714
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2f76d4225eb3677e8b99baa9eea5f8010716e8e3f75f3222a0d0d208a3f4db12
size 90937
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d6cec50ffe2cb3ac6d07f95639bf940cbd99a5851575fdc550249d8ffa7a04d
size 90821
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aadc8a36f4847316f2eec163865c75cd77b6d5f0d1900fddedea80d45111ca13
size 90859
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0ff0e305fdd04d3624dc06ea255fe9c162b599ed1a87b8992c541bccfc98881d
size 1411
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cf915e757c86586b4b0d55c33d6ff5c1040522ffe132f027b4b42030240b0f33
size 1399
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f79bc34a057dd72432a1aa26a95f0e475e39546f4845ee57b686fe9e31d2612
size 1399
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:199ce3b5fd8e8f9dde7da10443b5a1d82c674a8ec677491b308693d620a25185
size 89156
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fe43ef9da853297b48d82db0e812729fb45d22871c86b2e2f8ef4caeb6af3d6b
size 107270
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d0ab1056939bf2fc4b0ed6b219d885ae146b704e7c27edb7610d75555f38cd38
size 95016
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:701ec44b9e62efa64f3450c7b4e8e286a74c93ec37dd9f42d0401efd4ebe4189
size 891208
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:308ab68c35d2d8494f919f7ce2f9f574fd78c7368d0004f79cf2cfb736139d6b
size 29900387
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:32af216a80dac6784915f064057311dacbaad7a32d1c7033a6813ff18f0ce7fd
size 2732213
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e7de9cc4c40271f01b551e14fce3dfc5bdcbb24e75ab113df4abc703cbe34ab0
size 46268475
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bec78100d53b38ef4571d8dd281a7f0a57b12fc481d546685deabe9fc5312acb
size 44995729
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ed1c7265997cbb0e519c6fab52926d7fda608d424a663b245384ec04607cf77a
size 17947822
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bb1c6777bff854fed9711e95ca4d10e39757a83a1bd51168b1e223c679e75021
size 35888162
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7fd755e17b563cf31c33490efac6d750dde7d2046d5528a0457e5c73151dc81b
size 21269206
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:147b13d0217e7a87397cd1fa47409bbaccd2de3c41157e3df7012dc444c62da8
size 5552181
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2cb632f60e544a5f3e8b90f54d5aa7e8868bee0211506820087ee2676a6880a8
size 1254235
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cdb0e816e43c9d2a3618e7880d75881ab5a39a1ef944da9ac3f991178d991e82
size 14318
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b9031055a36302e2894b70cd6af9c2108a04608ffba529ef14100e0c618fbb2a
size 117042
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9be8a2e9ea7b21a9049b810c032b30886bae8ff4c2ac29fa58900c2867e05220
size 16804
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a0821a2bf31ad7e215179c021a7c98f4a327d5f58a7b35ac72f2800474160757
size 10780
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b1daf39e8bc3e3401da4c7db4240f1fd1bdf471975fadd60fb0c6bedc12bd6c
size 11709
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a22b77617c537bdb0dcb80bceaa66d648e624194b216819abb9fbc742214d987
size 10449
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:825d7ad48e51d9a6a2e4cf81279e67da3e2640601870ae41d844328dfc570271
size 10928
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:547bed06550782e474de3f36e4ac916a84a1ef5885720b1a9cd5c0550546a569
size 11030
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:445b56b0f623977c266aa243a7f054d4e780659a9c058b664e11948e75b5f779
size 11202
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f5f7c6158945b0a306d37bf4586f57fb31e01839139dbdfff8f577a0f36be56a
size 10768
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48adf71770f39abfb1dc48fcbdac13e67c80f02fd6a4c81b1142da390f9fb4cc
size 11176
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:98a2a8f16eecf589bc70f958980a0a001511ac1fa8a3dfda657de05cf6b0866a
size 11765
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6409fa572b2519b52c37ccd572d19511d43de9afad396f8eff00328e34267d28
size 10958
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0537cc84037dc7854d7ad3627d71755ed3f6bed99aa9ce98e68df2dc8f0462cc
size 11288
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f8e89994615f22ab25244d8f71c2d5e941e97cc81b72c880088713d4d161a78
size 10398
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6ef48a8bf21e48ae1289c19c1dd864ebb955c1cea36716ccf9a6f25bd02c4b6d
size 11110
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5b5c29109858849e316a85dae79363b755bbcf5c238c9e22cd54fc408a704251
size 11133
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f5aba35f60ebafeab43cca68719afc21bb08cf06cba23131f76c09b1bf16e45b
size 17619
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0145dcc0757651167c4c7eff31c9b2aed5b18c5d5614d42ffb8a7c10fea42144
size 20517
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d1076356a2ffe3734ea34f065821178d28d41772074067a3f9e4ac350d5fc51
size 18517
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f414caa5292e10f67b21411a2f77beddf0ab6a15b9108640854776e7ed9189e8
size 20531
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:15911d7aec3ad84471879b940a88330e2fd469f60a7e73d7a1c3357397d8935b
size 20765
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bfa64eaedd400b46eed0f69df73ea87c8d3c2fbb4aa73d184ba9671af8481e4c
size 20676
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3cf92b3a180badc1c06dc6ae545207b0877800ba2b33c068e694d4d7523ff330
size 22942
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fdf3d946c8509dab994ce1d386280003bbb4a1e4b3f484525e06b3fdf2f83e48
size 23499
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9156ef7b94fe21639edb1263eb44520206ae69c2ec2a2c412b014bcc146486af
size 13680
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6cc09301b34ac041c13b10f2f727a54157e9feaeb0fbfabe906c31426dc3da85
size 12675
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b2714affd94b1bbc2064ab1273e662b00de7ba09002be462bf89f627ecd641f
size 26137
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1bbe7c9aaf4d541119976d78fa1b5a5da14bfd0860dd4de00e909cc4e9d2937c
size 25806
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6af6ad7a0ee3a7235c2613eb37f9f6088210afb86e23051c62eb8e2ebbe66e8b
size 25818
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a087b1e6146fbfa4c8406534db46ee4be1299a5151aa3bdc3c83c283acf043f5
size 1282100
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4af6bd1f02c65ff84fedcab0256d3d10cfda66eaa512ee4136bba58a5556475b
size 644946
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7e478acc8839ad6c2e4cca438fe81f662303a3df21fc49edc670d8b5d5b0d050
size 1446703
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e31e6fdf64b60a7eafd8fb325a7dd9b3f68fd5ba0594d8013916394b037895e5
size 16856
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:48e4828f6b73849fe797cab9a278c2c9bcd16d4ed87cad8f8e7cebf1c8300313
size 31699
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:98e427cee77c924a88d41d3d184caed564f4722dbbc17665d13c33015dec57c1
size 790453
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:dd3749bf3d598280d0f120d70a11f7b22c9b1c7dc05b65411bfd47f485a8a3c0
size 1768020
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c2d0a1ce9a35836e3e2839421fcecc6c9bd86a0813a58cac755e6fd2cb17fdb2
size 738156
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9300f2e0b446ab7168603a951dab188e356b506dd11413476f5cc3a0deb04b29
size 2338694
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bef0eadd23424a9661167769f591f8c2334ff490fa94d8caae6419dea389633d
size 1195330
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f2382ef69773545197acd10d914f47dab493f2f7c2394530b56becd90ec0271e
size 1727928
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb67bc4d520b63952d47259d21f8257ab1045b32fc7b5a7027fed4bf122f03cd
size 1110286
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:45f3f293c8ff6f6f7e6034bce57dc4bed1f06428acc2bb8247ab1d4d3f04eb9b
size 1328065
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6989dd90306e209e58faefbc2e21cacaf9dc4eea07cf813b2be33e9c2d91de97
size 2670836
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1b6738dac1b17de4cd6aa8a7beee7004425e4f053056b75361e6a6b5e84ec8a5
size 1417396
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:36aa2c402d4fe87506f8f289e28d2adf25b0aee8230c48c42036e6fc64ed2a8d
size 1399749
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:debb5d18d6a7cb1e09db344a65b4d4bdc7f33850e0bfb551d41ad437ab0ccb09
size 1728429
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:130558d5d2bedbb2e4a873bf5438d5044b2d2f6fbed478f245e900a2374d5d6c
size 1632954
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de5ddddeb3072ee7918aac64713bf58d35d38bdb1f10aa80de8217158ff7eaac
size 831968
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6792a3f7a4fcf120ede54d21a56c53cc6e43765d0c3240d281d2ac9910f6dbb4
size 280813
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c26a1d7aaf20351a90bdbc16023cc67b11fdff4e656847edc666a9f6a8dda0c7
size 276718
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:8d4b27abd4007b5fb1308308319e1e3cba8633549d8b0d49abc56f750722995c
size 277185
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:aeecbc0a6c5b7e0d0e061e0e65dcee655e138080f60882062c2ab523a1092e92
size 285826
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:280dcfa95416087fb48ce7fad9723771a613b54ffe142c05f9681379503f0518
size 957752
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d3d2177bc026cc5b2ea3169a47593ad4fa6f90c493f8bd80370840b5bce2b7ff
size 956746
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:07ff368ca4829e45ec957de24eb70f224d11f188322a7d1f1a43c48b242a00f5
size 1897982
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a40c8c253bbafe5d351a52890a05b9d0ce8f30620d86cbe74159a8f34e6670d4
size 1579484
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12e5ae9a4a629488e82a0cd6e2d0b2d0c8cfe76ee3c377a0c07ec0a71ef28521
size 3000426
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0d230ce2b0de99fe3cc4385e679bdd27283b3d45cd84b19ba5b918185b20570a
size 1529641
@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:abaedd16e6c928f96c80325be58949e18c9b1204e6709de4afec6b032588ccc5
size 1291537

Some files were not shown because too many files have changed in this diff Show More