DannyB commited on
Commit ·
1c6f89f
1
Parent(s): f2f541d
Update whitepaper and specs with Key Work Summary and repackage capsule with 72 packets
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- Language-U-Browser.LLM +0 -0
- frameworks_execution_specs.md +30 -0
- frameworks_metadata.json +3 -3
- packets/packet_00.bin +1 -1
- packets/packet_01.bin +1 -1
- packets/packet_02.bin +1 -1
- packets/packet_03.bin +1 -1
- packets/packet_04.bin +1 -1
- packets/packet_05.bin +1 -1
- packets/packet_06.bin +1 -1
- packets/packet_07.bin +1 -1
- packets/packet_08.bin +1 -1
- packets/packet_09.bin +1 -1
- packets/packet_10.bin +1 -1
- packets/packet_11.bin +1 -1
- packets/packet_12.bin +1 -1
- packets/packet_13.bin +1 -1
- packets/packet_14.bin +1 -1
- packets/packet_15.bin +1 -1
- packets/packet_16.bin +1 -1
- packets/packet_17.bin +1 -1
- packets/packet_18.bin +1 -1
- packets/packet_19.bin +1 -1
- packets/packet_20.bin +1 -1
- packets/packet_21.bin +1 -1
- packets/packet_22.bin +1 -1
- packets/packet_23.bin +1 -1
- packets/packet_24.bin +1 -1
- packets/packet_25.bin +1 -1
- packets/packet_26.bin +1 -1
- packets/packet_27.bin +1 -1
- packets/packet_28.bin +1 -1
- packets/packet_29.bin +1 -1
- packets/packet_30.bin +1 -1
- packets/packet_31.bin +1 -1
- packets/packet_32.bin +1 -1
- packets/packet_33.bin +1 -1
- packets/packet_34.bin +1 -1
- packets/packet_35.bin +1 -1
- packets/packet_36.bin +1 -1
- packets/packet_37.bin +1 -1
- packets/packet_38.bin +1 -1
- packets/packet_39.bin +1 -1
- packets/packet_40.bin +1 -1
- packets/packet_41.bin +1 -1
- packets/packet_42.bin +1 -1
- packets/packet_43.bin +1 -1
- packets/packet_44.bin +1 -1
- packets/packet_45.bin +1 -1
- packets/packet_46.bin +1 -1
Language-U-Browser.LLM
CHANGED
|
Binary files a/Language-U-Browser.LLM and b/Language-U-Browser.LLM differ
|
|
|
frameworks_execution_specs.md
CHANGED
|
@@ -106,3 +106,33 @@ You must run a local server in the project directory using any of these standard
|
|
| 106 |
```
|
| 107 |
|
| 108 |
Once running, navigate to `http://localhost:8080` in your browser. All 49 frameworks will execute successfully on your local GPU.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 106 |
```
|
| 107 |
|
| 108 |
Once running, navigate to `http://localhost:8080` in your browser. All 49 frameworks will execute successfully on your local GPU.
|
| 109 |
+
|
| 110 |
+
---
|
| 111 |
+
|
| 112 |
+
## 4. Key Work Summary: Self-Contained Offline Transmission & Verification
|
| 113 |
+
|
| 114 |
+
### 4.1 Self-Contained Capsule Creation (`run_ultimate_pipeline.py`)
|
| 115 |
+
* **Archiving Stage**: Implemented an automated archiving sequence during Level 6 capsule generation.
|
| 116 |
+
* **Concatenated File Deliverables**:
|
| 117 |
+
* `VerifyLanguageU.java` (Java range decoder & validator source code)
|
| 118 |
+
* `verify_language_u.rs` (Rust range decoder & validator source code)
|
| 119 |
+
* `verify_language_u.lua` (Lua range decoder & validator source code)
|
| 120 |
+
* `requirements.txt` (Python run-time dependencies)
|
| 121 |
+
* `frameworks_db.json` (The primary upgraded configurations database)
|
| 122 |
+
* `frameworks_execution_specs.md` (WebGL/WebGPU execution specifications)
|
| 123 |
+
* **Extended Header**: Upgraded the capsule payload header layout to: `magic` (3 bytes), `num_fws` (1 byte), `names_len` (2 bytes), `bitstream_len` (4 bytes), and `archive_len` (4 bytes).
|
| 124 |
+
* **Deflation**: Compressed the entire concatenated bundle under zlib Level 9, resulting in a compact **16,570-byte** seed capsule (down from **74,341 bytes** of raw files).
|
| 125 |
+
* **Packet Sizing**: Dynamically split the seed capsule into **66 data packets + 1 XOR parity packet** (total 67 packets, each 255 bytes).
|
| 126 |
+
|
| 127 |
+
### 4.2 Offline Reconstruction & Auto-Compilation Simulator (`receiver_reconstruction_demo.py`)
|
| 128 |
+
* **XOR-FEC Healing**: Dynamically scans the packets folder, parses headers, and performs single-packet reconstruction via XOR equations to heal simulated packet loss.
|
| 129 |
+
* **Archived File Extractor**: Automatically inflates the seed capsule, parses the file archive segment, and recreates all original source files back on disk.
|
| 130 |
+
* **Repository-Aware Pathing**: Configured Java, Rust, and Lua loaders to dynamically fall back to the root folder if the subfolder is absent, ensuring successful execution in both development and flat repositories.
|
| 131 |
+
* **Dynamic Compilation Tests**: Programmed compile-and-run verification sequences using local runtimes to prove correct recovery offline:
|
| 132 |
+
* **Java Verification (`VerifyLanguageU.java`)**: `[SUCCESS] Java range-decoder verification: 100% MATCH!`
|
| 133 |
+
* **Rust Verification (`verify_language_u.rs`)**: `[SUCCESS] Rust range-decoder verification: 100% MATCH!`
|
| 134 |
+
|
| 135 |
+
### 4.3 Hugging Face Repository Push
|
| 136 |
+
* **Target Repo**: `TheAiCollectiveART/language-u-webgl-inference-engine`
|
| 137 |
+
* **Commit Message**: `Upgrade pipeline to include cross-language decoders, specifications, dependencies, and database offline in LLM capsule transmission via 67 packets` (Hash: `f2f541d`)
|
| 138 |
+
|
frameworks_metadata.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
| 1 |
{
|
| 2 |
"frameworks_count": 49,
|
| 3 |
-
"compressed_size":
|
| 4 |
-
"sha256": "
|
| 5 |
-
"packets_count":
|
| 6 |
"svd_rank": 2,
|
| 7 |
"dct_coefficients": 0,
|
| 8 |
"singular_values": [
|
|
|
|
| 1 |
{
|
| 2 |
"frameworks_count": 49,
|
| 3 |
+
"compressed_size": 17667,
|
| 4 |
+
"sha256": "b0c43fa0714c5f4d03b0e27974c2f0ba5478cf0ba54bc84dbc95571eff7f3e08",
|
| 5 |
+
"packets_count": 72,
|
| 6 |
"svd_rank": 2,
|
| 7 |
"dct_coefficients": 0,
|
| 8 |
"singular_values": [
|
packets/packet_00.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7f588d9354b4b51c139c407ff258d1bac26158e40f7621e82d00ee6a7c5a8e3d
|
| 3 |
size 255
|
packets/packet_01.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:605d62eeb1a8066214145b3750fa3468665b09822162ada05c679c7e9f369c38
|
| 3 |
size 255
|
packets/packet_02.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f77ce66aa648ffd265178f30c9a8bd15b09b436dccc4a36c784b2458eba2a1a
|
| 3 |
size 255
|
packets/packet_03.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b1953efc8fe0d3b9f0a8a292bf7a9f270932720bedb9dec663a465f96191ec29
|
| 3 |
size 255
|
packets/packet_04.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e526af9e55bc7b9620e34438b815977cb827cea3f948dcd30ae9ea5b278562a8
|
| 3 |
size 255
|
packets/packet_05.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1f492127272237cbc111d37024a673409cfc1b25c213e86cbc8fb905128525df
|
| 3 |
size 255
|
packets/packet_06.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:835e63049dd27ce0d61e7b2a165190ff0e6ca9cebe428de4d035342009807380
|
| 3 |
size 255
|
packets/packet_07.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:114b04caee79f7ae4235cd7206c7934ca913c45bc3c1a3c7253dcaa08192851c
|
| 3 |
size 255
|
packets/packet_08.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0525e03feb7a01f56249c5b134989a1533211e43edfd97473f41611515e1192d
|
| 3 |
size 255
|
packets/packet_09.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:53905f7652a1b9951e562b6a52ee6b14694f5d33551a0ba31ac482a8e239cfed
|
| 3 |
size 255
|
packets/packet_10.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e50829f1ce00e350a57dc979d0a89b200691f4b341e5bd14995e5824deff7459
|
| 3 |
size 255
|
packets/packet_11.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:73060dd43b17cff27fb8f76a15aa6220526b33cfdfd74bccf6195dda48981c80
|
| 3 |
size 255
|
packets/packet_12.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:da8db4d03119cb68c47f9e9024eec9bfd14386b5e25e9f84b1a5d2c28c149ba9
|
| 3 |
size 255
|
packets/packet_13.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:669f2ccbe34be37c709109a3fb980f0b6eeeb09e3628e947ddbbb11a3f170fb3
|
| 3 |
size 255
|
packets/packet_14.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d29be7b8e310790d9ac585b22b6590f4358b8bbe755ba9727a766db92a4b1c52
|
| 3 |
size 255
|
packets/packet_15.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ea403b624f690c4f5604d028c8ca8f1c9d463ef85a02596eaede573f31c209a1
|
| 3 |
size 255
|
packets/packet_16.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0763fcec76ba87146599f5026523668efacc234ba3f605d325b69ec1a49e80a5
|
| 3 |
size 255
|
packets/packet_17.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:82cdb4f3b6905595a8184f4c91d3f2f77a811b31a6a8d002d00be26842310c22
|
| 3 |
size 255
|
packets/packet_18.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:983e6169aa3fb962b5a588002136e28389a1a036206b0db698ab40aa9a6e4e20
|
| 3 |
size 255
|
packets/packet_19.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfcb1be1176d8e0a4dc072365273f9ca97f4cf7cbe13a8e6a01b356748bde75c
|
| 3 |
size 255
|
packets/packet_20.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7c6f629286a8eb348304ee8752c79dd5d811a2f1e1defbb3a67f6aabdf78f42f
|
| 3 |
size 255
|
packets/packet_21.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e8b54e8ddfc1f3905ef9571d01b1a5df78bd57ad7521d657e26e521ab11bc10e
|
| 3 |
size 255
|
packets/packet_22.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9617909257963ee1d41db0bb4ce95a9c5bccbae3d2411a9eea0045d334509ae2
|
| 3 |
size 255
|
packets/packet_23.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a36871e122f3de7a899b059d0703453880f74211f575503bd285d6feecd1b7b7
|
| 3 |
size 255
|
packets/packet_24.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1084450ad03401f2f0b87955c196b4047abb1994e03a8f063549f34e511c4278
|
| 3 |
size 255
|
packets/packet_25.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dec95b72f7e4029122dadd5be6fef5fe8fe9e6af9669ede68fa9620120241366
|
| 3 |
size 255
|
packets/packet_26.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:be6cae41d9b42619001b9bedbc5a50fe406e466afade39e84e17f075e6baf899
|
| 3 |
size 255
|
packets/packet_27.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3407fb83fb1a4d180e88462ec9d941b2b0487c48eedd62278975f0599f6da6fe
|
| 3 |
size 255
|
packets/packet_28.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:63692751ced0835537c7e0b4b9ffdf6b15661a190618e70a23c8bc1459a6dfaa
|
| 3 |
size 255
|
packets/packet_29.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9586ed741b7a2ca4107ee068b1bffbe329e7ae26ed59231ad1f4ec453b99a48b
|
| 3 |
size 255
|
packets/packet_30.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6694881d2036a8b214180956a54e123684142c80e94472db01b1cd350fd7427f
|
| 3 |
size 255
|
packets/packet_31.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0dad2af559ed38364986163541409770b2ed66139b68a61cd70548c90b00502c
|
| 3 |
size 255
|
packets/packet_32.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:64626c9b13a154c7d3f4f5e9ae649df5ef5dbcdc04ca6aa690bdbc75ae7dffb5
|
| 3 |
size 255
|
packets/packet_33.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a914989524373abcd4b995d6c75f840a7391e7de30dbf37b6df5e1aaff9ddf7d
|
| 3 |
size 255
|
packets/packet_34.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1209f871b4477727317ac14fa9f63166f3e9a6b5fbccd4f8aebdfa404ce7d98e
|
| 3 |
size 255
|
packets/packet_35.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9617046f3c1ddea43335e1cd62d2fc82c3c1b3421dcc4adadb30accb2ed037e1
|
| 3 |
size 255
|
packets/packet_36.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:fdf826fa061c7f284267130a3457da91ca70181e89f25fb89edc79790509d37b
|
| 3 |
size 255
|
packets/packet_37.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:389d5b82197a50537660aa217d23c69dde660bacbd12fe57383e35d4b0d91709
|
| 3 |
size 255
|
packets/packet_38.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:db9a3e466d40bbfd224f65a4621553120dc242784a1ea3f9fdd0b8bf2963757e
|
| 3 |
size 255
|
packets/packet_39.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cd804e0bbbd979f078c14d45f5f1ef63de97694d7699e545aaf770630f37f63e
|
| 3 |
size 255
|
packets/packet_40.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:377abc1d735dbbea7f8a40aa01302e87ef5c9ee1e9bfc9b424aa3d809cb796a1
|
| 3 |
size 255
|
packets/packet_41.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:8b48dd6fef14b8bfd6054063a17d037275119b0015845d15279d91475deea2d1
|
| 3 |
size 255
|
packets/packet_42.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c6d727f7d5fc02036c78c62252eb62061a240598c0ea0544d0425e866fcfe16
|
| 3 |
size 255
|
packets/packet_43.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:28c61c756001aa466571a9d4f314509c8f644ab21b516d4ec2af203455f88fed
|
| 3 |
size 255
|
packets/packet_44.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:10d274a04de27f5e103a3e9b942c8e33e02c7dc94e97bf9eb1e0d69feb095fbe
|
| 3 |
size 255
|
packets/packet_45.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:49ed2528b61603b12d2f8b0a1d07bfc8cdcbe2d6e42f1d11a8fa1e08deadba38
|
| 3 |
size 255
|
packets/packet_46.bin
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
size 255
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a5c1ffb50e47da9645a1306ecddf89dd5426d91261844545faacdfc8eb42ac96
|
| 3 |
size 255
|