yakmesh 2.9.0 → 3.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (225) hide show
  1. package/CHANGELOG.md +637 -0
  2. package/Caddyfile +77 -0
  3. package/README.md +119 -29
  4. package/content/api.js +50 -41
  5. package/content/index.js +1 -2
  6. package/content/store.js +323 -177
  7. package/dashboard/index.html +19 -3
  8. package/database/replication.js +117 -37
  9. package/docs/CRYPTO-AGILITY.md +204 -0
  10. package/docs/MTLS-RESEARCH.md +367 -0
  11. package/docs/NAMCHE-SPEC.md +681 -0
  12. package/docs/PEERQUANTA-YAKMESH-INTEGRATION.md +407 -0
  13. package/docs/PRECISION-DISCLOSURE.md +96 -0
  14. package/docs/README.md +76 -0
  15. package/docs/ROADMAP-2.4.0.md +447 -0
  16. package/docs/ROADMAP-2.5.0.md +244 -0
  17. package/docs/SECURITY-AUDIT-REPORT.md +306 -0
  18. package/docs/SST-INTEGRATION.md +712 -0
  19. package/docs/STEADYWATCH-IMPLEMENTATION.md +303 -0
  20. package/docs/TERNARY-AUDIT-REPORT.md +247 -0
  21. package/docs/TME-FAQ.md +221 -0
  22. package/docs/WHITEPAPER.md +623 -0
  23. package/docs/adapters.html +1001 -0
  24. package/docs/advanced-systems.html +1045 -0
  25. package/docs/annex.html +1046 -0
  26. package/docs/api.html +970 -0
  27. package/docs/business/response-templates.md +160 -0
  28. package/docs/c2c.html +1225 -0
  29. package/docs/cli.html +1332 -0
  30. package/docs/configuration.html +1248 -0
  31. package/docs/darshan.html +1085 -0
  32. package/docs/dharma.html +966 -0
  33. package/docs/docs-bundle.html +1075 -0
  34. package/docs/docs.css +3120 -0
  35. package/docs/docs.js +556 -0
  36. package/docs/doko.html +969 -0
  37. package/docs/geo-proof.html +858 -0
  38. package/docs/getting-started.html +840 -0
  39. package/docs/gumba-tutorial.html +1144 -0
  40. package/docs/gumba.html +1098 -0
  41. package/docs/index.html +914 -0
  42. package/docs/jhilke.html +1312 -0
  43. package/docs/karma.html +1100 -0
  44. package/docs/katha.html +1037 -0
  45. package/docs/lama.html +978 -0
  46. package/docs/mandala.html +1067 -0
  47. package/docs/mani.html +964 -0
  48. package/docs/mantra.html +967 -0
  49. package/docs/mesh.html +1409 -0
  50. package/docs/nakpak.html +869 -0
  51. package/docs/namche.html +928 -0
  52. package/docs/nav-order.json +53 -0
  53. package/docs/prahari.html +1043 -0
  54. package/docs/prism-bash.min.js +1 -0
  55. package/docs/prism-javascript.min.js +1 -0
  56. package/docs/prism-json.min.js +1 -0
  57. package/docs/prism-tomorrow.min.css +1 -0
  58. package/docs/prism.min.js +1 -0
  59. package/docs/privacy.html +699 -0
  60. package/docs/quick-reference.html +1181 -0
  61. package/docs/sakshi.html +1402 -0
  62. package/docs/sandboxing.md +386 -0
  63. package/docs/seva.html +911 -0
  64. package/docs/sherpa.html +871 -0
  65. package/docs/studio.html +860 -0
  66. package/docs/stupa.html +995 -0
  67. package/docs/tailwind.min.css +2 -0
  68. package/docs/tattva.html +1332 -0
  69. package/docs/terms.html +686 -0
  70. package/docs/time-server-deployment.md +166 -0
  71. package/docs/time-sources.html +1392 -0
  72. package/docs/tivra.html +1127 -0
  73. package/docs/trademark-policy.html +686 -0
  74. package/docs/tribhuj.html +1183 -0
  75. package/docs/trust-security.html +1029 -0
  76. package/docs/tutorials/backup-recovery.html +654 -0
  77. package/docs/tutorials/dashboard.html +604 -0
  78. package/docs/tutorials/domain-setup.html +605 -0
  79. package/docs/tutorials/host-website.html +456 -0
  80. package/docs/tutorials/mesh-network.html +505 -0
  81. package/docs/tutorials/mobile-access.html +445 -0
  82. package/docs/tutorials/privacy.html +467 -0
  83. package/docs/tutorials/raspberry-pi.html +600 -0
  84. package/docs/tutorials/security-basics.html +539 -0
  85. package/docs/tutorials/share-files.html +431 -0
  86. package/docs/tutorials/troubleshooting.html +637 -0
  87. package/docs/tutorials/trust-karma.html +419 -0
  88. package/docs/tutorials/yak-protocol.html +456 -0
  89. package/docs/tutorials.html +1034 -0
  90. package/docs/vani.html +1270 -0
  91. package/docs/webserver.html +809 -0
  92. package/docs/yak-protocol.html +940 -0
  93. package/docs/yak-timeserver-design.md +475 -0
  94. package/docs/yakapp.html +1015 -0
  95. package/docs/ypc27.html +1069 -0
  96. package/docs/yurt.html +1344 -0
  97. package/embedded-docs/bundle.js +274 -114
  98. package/gossip/protocol.js +247 -27
  99. package/identity/key-resolver.js +262 -0
  100. package/identity/machine-seed.js +632 -0
  101. package/identity/node-key.js +669 -368
  102. package/identity/tribhuj-ratchet.js +506 -0
  103. package/knowledge-base.js +37 -8
  104. package/launcher/yakmesh.bat +62 -0
  105. package/launcher/yakmesh.sh +70 -0
  106. package/mesh/annex.js +462 -108
  107. package/mesh/beacon-broadcast.js +4 -1
  108. package/mesh/darshan.js +17 -5
  109. package/mesh/gumba.js +47 -13
  110. package/mesh/jhilke.js +651 -0
  111. package/mesh/katha.js +5 -2
  112. package/mesh/nakpak-routing.js +8 -5
  113. package/mesh/network.js +724 -34
  114. package/mesh/pulse-sync.js +4 -1
  115. package/mesh/seva.js +526 -0
  116. package/mesh/sherpa-discovery.js +89 -8
  117. package/mesh/sybil-defense.js +19 -5
  118. package/mesh/temporal-encoder.js +4 -3
  119. package/mesh/yurt.js +72 -17
  120. package/models/entropy-sentinel.onnx +0 -0
  121. package/models/karma-trust.onnx +0 -0
  122. package/models/manifest.json +43 -0
  123. package/models/sakshi-anomaly.onnx +0 -0
  124. package/oracle/code-proof-protocol.js +7 -6
  125. package/oracle/codebase-lock.js +257 -28
  126. package/oracle/index.js +74 -15
  127. package/oracle/ma902-snmp.js +678 -0
  128. package/oracle/module-sealer.js +5 -3
  129. package/oracle/packet-checksum.js +201 -0
  130. package/oracle/ternary-144t.js +714 -0
  131. package/oracle/ternary-ml.js +481 -0
  132. package/oracle/time-api.js +239 -0
  133. package/oracle/time-source.js +137 -47
  134. package/oracle/validation-oracle-hardened.js +1111 -1071
  135. package/oracle/validation-oracle.js +4 -2
  136. package/oracle/ypc27.js +211 -0
  137. package/package.json +20 -3
  138. package/protocol/yak-handler.js +35 -9
  139. package/protocol/yak-protocol.js +6 -5
  140. package/reference/cpp/yakmesh_mceliece_shard.cpp +168 -0
  141. package/reference/cpp/yakmesh_ypc27.cpp +179 -0
  142. package/sbom.json +87 -0
  143. package/scripts/security-audit.mjs +264 -0
  144. package/scripts/update-docs-sidebar.cjs +164 -0
  145. package/security/crypto-config.js +4 -3
  146. package/security/dharma-moderation.js +4 -3
  147. package/security/doko-identity.js +193 -143
  148. package/security/domain-consensus.js +86 -85
  149. package/security/fs-hardening.js +620 -0
  150. package/security/hardware-attestation.js +5 -3
  151. package/security/hybrid-trust.js +227 -87
  152. package/security/karma-rate-limiter.js +692 -0
  153. package/security/khata-protocol.js +22 -21
  154. package/security/khata-trust-integration.js +277 -150
  155. package/security/memory-safety.js +635 -0
  156. package/security/mesh-auth.js +11 -10
  157. package/security/mesh-revocation.js +18 -5
  158. package/security/namche-gateway.js +298 -69
  159. package/security/sakshi.js +102 -3
  160. package/security/sangha.js +770 -0
  161. package/security/secure-config.js +473 -0
  162. package/security/silicon-parity.js +13 -10
  163. package/security/steadywatch.js +1142 -0
  164. package/security/strike-system.js +32 -3
  165. package/security/temporal-signing.js +488 -0
  166. package/security/trit-commitment.js +464 -0
  167. package/server/crypto/annex.js +247 -0
  168. package/server/darshan-api.js +343 -0
  169. package/server/index.js +3259 -362
  170. package/server/komm-api.js +668 -0
  171. package/utils/accel.js +2273 -0
  172. package/utils/ternary-id.js +79 -0
  173. package/utils/verify-worker.js +57 -0
  174. package/webserver/index.js +95 -5
  175. package/assets/yakmesh-logo.png +0 -0
  176. package/assets/yakmesh-logo.svg +0 -80
  177. package/assets/yakmesh-logo2.png +0 -0
  178. package/assets/yakmesh-logo2sm.png +0 -0
  179. package/assets/ymsm.png +0 -0
  180. package/scripts/update-docs-nav.cjs +0 -194
  181. package/update-docs-nav.cjs +0 -18
  182. package/update-nav.ps1 +0 -16
  183. package/website/assets/silhouettes/adapters.svg +0 -107
  184. package/website/assets/silhouettes/api-endpoints.svg +0 -115
  185. package/website/assets/silhouettes/atomic-clock.svg +0 -83
  186. package/website/assets/silhouettes/base-camp.svg +0 -81
  187. package/website/assets/silhouettes/bridge.svg +0 -69
  188. package/website/assets/silhouettes/docs-bundle.svg +0 -113
  189. package/website/assets/silhouettes/doko-basket.svg +0 -70
  190. package/website/assets/silhouettes/fortress.svg +0 -93
  191. package/website/assets/silhouettes/gateway.svg +0 -54
  192. package/website/assets/silhouettes/gears.svg +0 -93
  193. package/website/assets/silhouettes/globe-satellite.svg +0 -67
  194. package/website/assets/silhouettes/karma-wheel.svg +0 -137
  195. package/website/assets/silhouettes/lama-council.svg +0 -141
  196. package/website/assets/silhouettes/mandala-network.svg +0 -169
  197. package/website/assets/silhouettes/mani-stones.svg +0 -149
  198. package/website/assets/silhouettes/mantra-wheel.svg +0 -116
  199. package/website/assets/silhouettes/mesh-nodes.svg +0 -113
  200. package/website/assets/silhouettes/nakpak.svg +0 -56
  201. package/website/assets/silhouettes/peak-lightning.svg +0 -73
  202. package/website/assets/silhouettes/sherpa.svg +0 -69
  203. package/website/assets/silhouettes/stupa-tower.svg +0 -119
  204. package/website/assets/silhouettes/tattva-eye.svg +0 -78
  205. package/website/assets/silhouettes/terminal.svg +0 -74
  206. package/website/assets/silhouettes/webserver.svg +0 -145
  207. package/website/assets/silhouettes/yak.svg +0 -78
  208. package/website/assets/yakmesh-logo.png +0 -0
  209. package/website/assets/yakmesh-logo.webp +0 -0
  210. package/website/assets/yakmesh-logo128x140.webp +0 -0
  211. package/website/assets/yakmesh-logo2.png +0 -0
  212. package/website/assets/yakmesh-logo2.svg +0 -51
  213. package/website/assets/yakmesh-logo40x44.webp +0 -0
  214. package/website/assets/yakmesh.gif +0 -0
  215. package/website/assets/yakmesh.ico +0 -0
  216. package/website/assets/yakmesh.jpg +0 -0
  217. package/website/assets/yakmesh.pdf +0 -0
  218. package/website/assets/yakmesh.png +0 -0
  219. package/website/assets/yakmesh.svg +0 -70
  220. package/website/assets/yakmesh128.webp +0 -0
  221. package/website/assets/yakmesh32.png +0 -0
  222. package/website/assets/yakmesh32.svg +0 -65
  223. package/website/assets/yakmesh32o.ico +0 -2
  224. package/website/assets/yakmesh32o.svg +0 -65
  225. package/website/assets/yakmesh32o.svgz +0 -0
@@ -6,7 +6,7 @@
6
6
  * Regenerate with: npm run build:docs
7
7
  * Source: website/docs/
8
8
  *
9
- * @generated 2026-02-11T05:03:15.391Z
9
+ * @generated 2026-02-26T18:00:39.354Z
10
10
  * @module embedded-docs/bundle
11
11
  */
12
12
 
@@ -14,18 +14,18 @@
14
14
  * Master hash of the entire documentation bundle.
15
15
  * Computed as: SHA3-256(sorted individual file hashes joined)
16
16
  */
17
- export const BUNDLE_HASH = '123d3852e8a996f391b32eade0e7d7ecb7ae5dd3f1f392f69181d09ea09fc98b';
17
+ export const BUNDLE_HASH = '09d510eb7fb535c3fbe48fe5d6f4b81608b32aff5456b3299d6f9399c34df680';
18
18
 
19
19
  /**
20
20
  * Version of the documentation bundle.
21
21
  * Matches the npm package version at build time.
22
22
  */
23
- export const BUNDLE_VERSION = '2.9.0';
23
+ export const BUNDLE_VERSION = '3.0.0';
24
24
 
25
25
  /**
26
26
  * Build timestamp (ISO 8601)
27
27
  */
28
- export const BUNDLE_BUILT_AT = '2026-02-11T05:03:15.391Z';
28
+ export const BUNDLE_BUILT_AT = '2026-02-26T18:00:39.354Z';
29
29
 
30
30
  /**
31
31
  * Index of all files in the documentation bundle.
@@ -39,23 +39,23 @@ export const BUNDLE_BUILT_AT = '2026-02-11T05:03:15.391Z';
39
39
  */
40
40
  export const FILE_INDEX = {
41
41
  "adapters.html": {
42
- "hash": "e40838191ae46394c322c16ef3d0e30530d805eb45e193457cb25e7b920e0cb3",
43
- "size": 19506,
42
+ "hash": "0ec55afa1eea2ad7086057db03148a35657f550f8f355ac599ff1fa1c1753d8c",
43
+ "size": 44560,
44
44
  "contentType": "text/html; charset=utf-8"
45
45
  },
46
46
  "advanced-systems.html": {
47
- "hash": "24822a56ad066cd2a41b5fbc576302d8e2e446da616217b4fe784a68cf179e99",
48
- "size": 22252,
47
+ "hash": "574f47582cf3136bcba49fae25ad8e8f44d93286cc0014010fafd896090b0605",
48
+ "size": 48383,
49
49
  "contentType": "text/html; charset=utf-8"
50
50
  },
51
51
  "annex.html": {
52
- "hash": "0aa7b1317a3c1b39ab8856b352d050756ee37a9b419c698a1a72ce47f1694467",
53
- "size": 27153,
52
+ "hash": "55bdfa85081c09775043d18784db6bdb78c5c272c68255fa5199658c2d5ef7fa",
53
+ "size": 52893,
54
54
  "contentType": "text/html; charset=utf-8"
55
55
  },
56
56
  "api.html": {
57
- "hash": "a145a9b895d76cf8b3639ce8d46c0dac217764525019810cc738e703ca48542b",
58
- "size": 18144,
57
+ "hash": "a44fd6d1d14d3904e4ef4368daa3ba33e3db4d66f0069969fab272334d3fb130",
58
+ "size": 43584,
59
59
  "contentType": "text/html; charset=utf-8"
60
60
  },
61
61
  "apple-touch-icon.png": {
@@ -63,6 +63,11 @@ export const FILE_INDEX = {
63
63
  "size": 248283,
64
64
  "contentType": "image/png"
65
65
  },
66
+ "assets/icons.svg": {
67
+ "hash": "5406a2d8d9e2401ed21206da28f5fbce01a332d391ee21e1bed2b4aa94699a7b",
68
+ "size": 19565,
69
+ "contentType": "image/svg+xml"
70
+ },
66
71
  "assets/silhouettes/adapters.svg": {
67
72
  "hash": "32866be4a0383dd4b0fa894d6fb167ea2af5858c591c3c654bb6a3070994d793",
68
73
  "size": 6708,
@@ -88,6 +93,21 @@ export const FILE_INDEX = {
88
93
  "size": 4171,
89
94
  "contentType": "image/svg+xml"
90
95
  },
96
+ "assets/silhouettes/c2c-cosmos.svg": {
97
+ "hash": "e05a3653b2481931fe89407c4209701fd3b879f055830703799d47060cf4172d",
98
+ "size": 4875,
99
+ "contentType": "image/svg+xml"
100
+ },
101
+ "assets/silhouettes/darshan-eye.svg": {
102
+ "hash": "35d629fd3ecfeb239b15cc8ea1f43abdfa9abb8423f7305fc1738de592321412",
103
+ "size": 5946,
104
+ "contentType": "image/svg+xml"
105
+ },
106
+ "assets/silhouettes/dharma-scales.svg": {
107
+ "hash": "8516a0b567c804182a9d7c50ce8b9c012dfec40593d028f4163c9a14e05e487a",
108
+ "size": 3613,
109
+ "contentType": "image/svg+xml"
110
+ },
91
111
  "assets/silhouettes/docs-bundle.svg": {
92
112
  "hash": "686a9f08e44de90a4727302f0e285e08eb46ce0934f4b39f6f2ebb191b75178b",
93
113
  "size": 5325,
@@ -118,11 +138,26 @@ export const FILE_INDEX = {
118
138
  "size": 3996,
119
139
  "contentType": "image/svg+xml"
120
140
  },
141
+ "assets/silhouettes/gumba-monastery.svg": {
142
+ "hash": "3149d8fd9423f0c132aa2c632d74a76e9184bb21f6ff2746ac8f722e3c84060e",
143
+ "size": 4158,
144
+ "contentType": "image/svg+xml"
145
+ },
146
+ "assets/silhouettes/jhilke-cricket.svg": {
147
+ "hash": "6a1164b5eace72a6d78fea701cc2f68ddaa5148e6547f4cc5e65a5782185ddd5",
148
+ "size": 24721,
149
+ "contentType": "image/svg+xml"
150
+ },
121
151
  "assets/silhouettes/karma-wheel.svg": {
122
152
  "hash": "4ac5ad4bd22cdb387458eceda1596b374a5fb0f7cb07edf4f503cd209ef7bb84",
123
153
  "size": 8844,
124
154
  "contentType": "image/svg+xml"
125
155
  },
156
+ "assets/silhouettes/katha-storytelling.svg": {
157
+ "hash": "96e67be401bbf89ea59540be52415b7dca7149a608526802254724ea9aeb6c00",
158
+ "size": 4159,
159
+ "contentType": "image/svg+xml"
160
+ },
126
161
  "assets/silhouettes/lama-council.svg": {
127
162
  "hash": "f53805c635fdf3c8a398eab7a35899a9b66bba81ff79742ef1ba9c0699793ced",
128
163
  "size": 8840,
@@ -163,11 +198,31 @@ export const FILE_INDEX = {
163
198
  "size": 3862,
164
199
  "contentType": "image/svg+xml"
165
200
  },
201
+ "assets/silhouettes/prahari-sentinel.svg": {
202
+ "hash": "51f4529cc7cfa954936059145c4e774ff88c9cfd7a05cd4ba77f928b1968329e",
203
+ "size": 3516,
204
+ "contentType": "image/svg+xml"
205
+ },
206
+ "assets/silhouettes/reference-clipboard.svg": {
207
+ "hash": "cedeecb90d83af8449ac8dc21b4faa54a92ac49bdad5f97c8279c116a80b6e73",
208
+ "size": 2439,
209
+ "contentType": "image/svg+xml"
210
+ },
211
+ "assets/silhouettes/seva-hands.svg": {
212
+ "hash": "7f3dc6ebd8beffa7fabdd04aebbdc256af7fe0f9129ca146c3a7121e534a4e57",
213
+ "size": 3937,
214
+ "contentType": "image/svg+xml"
215
+ },
166
216
  "assets/silhouettes/sherpa.svg": {
167
217
  "hash": "f529f52b0e71ee59f2668cbb75b099a094ee8de78780aaa45fdbf39f8052260a",
168
218
  "size": 3360,
169
219
  "contentType": "image/svg+xml"
170
220
  },
221
+ "assets/silhouettes/studio.svg": {
222
+ "hash": "4be6a7ff98169e49e05cd6c5dc24b58d001bef3b82f7707d86a6a1f097365df8",
223
+ "size": 4020,
224
+ "contentType": "image/svg+xml"
225
+ },
171
226
  "assets/silhouettes/stupa-tower.svg": {
172
227
  "hash": "6a47f026b7cd936cf0da977d13e0586c19227dac0b3563c80fb1b02067e4a19c",
173
228
  "size": 7242,
@@ -183,11 +238,31 @@ export const FILE_INDEX = {
183
238
  "size": 4428,
184
239
  "contentType": "image/svg+xml"
185
240
  },
241
+ "assets/silhouettes/thangka-scroll.svg": {
242
+ "hash": "2b62c814b3dee190e86c3bf9fff3f734694d8f27d86cbb1dfb29853e381ca124",
243
+ "size": 3282,
244
+ "contentType": "image/svg+xml"
245
+ },
186
246
  "assets/silhouettes/three-peaks.svg": {
187
247
  "hash": "809c539099e8685e42b54f1c8ea5080a36310076dc81d33544c071f7d4f8dc0c",
188
248
  "size": 1908,
189
249
  "contentType": "image/svg+xml"
190
250
  },
251
+ "assets/silhouettes/tivra-lightning.svg": {
252
+ "hash": "d15a1d236c8b5027f24ea32624af36749c5a83f392799844653992a93e513dd6",
253
+ "size": 3841,
254
+ "contentType": "image/svg+xml"
255
+ },
256
+ "assets/silhouettes/tutorials-book.svg": {
257
+ "hash": "833c5abfaed27e617fec6393d06f2bcc86fd52b9da8811d661a38d5f81706290",
258
+ "size": 2592,
259
+ "contentType": "image/svg+xml"
260
+ },
261
+ "assets/silhouettes/vani-voice.svg": {
262
+ "hash": "b62b98b80e3f41f1dba6aeb55453246800f460d6c4ece5ef706b5d03a12d6ee0",
263
+ "size": 5611,
264
+ "contentType": "image/svg+xml"
265
+ },
191
266
  "assets/silhouettes/webserver.svg": {
192
267
  "hash": "1cea58597a31a9fd7ed9374f024348b2eb1dd5e44d710582aa3b09a932319056",
193
268
  "size": 9166,
@@ -203,14 +278,34 @@ export const FILE_INDEX = {
203
278
  "size": 4005,
204
279
  "contentType": "image/svg+xml"
205
280
  },
281
+ "assets/silhouettes/yakapp-chat.svg": {
282
+ "hash": "bc388cf1aec09ea6bc00aec0940b8e802fdc58b451576713a01a8d36eaa548ed",
283
+ "size": 4669,
284
+ "contentType": "image/svg+xml"
285
+ },
286
+ "assets/silhouettes/yurt-tents.svg": {
287
+ "hash": "732ef6830962e148c5ae528865c8e9afb33904c77907d1eedc75428d50e8f588",
288
+ "size": 4557,
289
+ "contentType": "image/svg+xml"
290
+ },
291
+ "business/response-templates.md": {
292
+ "hash": "59a56e5f3141c90dba0350f8a5e291a5ffa0edf719a47306630a9b225a0e719c",
293
+ "size": 4009,
294
+ "contentType": "application/octet-stream"
295
+ },
296
+ "c2c.html": {
297
+ "hash": "ad5d49a008f21e0ea927ad1aebfb70ff13c0bbb13e83edd12e50cd94d4ec65b7",
298
+ "size": 58857,
299
+ "contentType": "text/html; charset=utf-8"
300
+ },
206
301
  "cli.html": {
207
- "hash": "77df1eee6cddc854dc1ece015d9171ebe7370e1d54c1f6a8b1220da23a7559ee",
208
- "size": 37959,
302
+ "hash": "a34a5032dbaf610bf099d0b5a9e61cbe97af7b161cc0f78484fad8522a663065",
303
+ "size": 64495,
209
304
  "contentType": "text/html; charset=utf-8"
210
305
  },
211
306
  "configuration.html": {
212
- "hash": "9d350a2067219922182b354a962cf10888d4b1636bd55f8837a342006b9f91fa",
213
- "size": 32346,
307
+ "hash": "491608a818ad4e4c8834859e9e8a836cf4587ee4280e325b8a1bf5b1bdae323f",
308
+ "size": 59095,
214
309
  "contentType": "text/html; charset=utf-8"
215
310
  },
216
311
  "CRYPTO-AGILITY.md": {
@@ -219,28 +314,33 @@ export const FILE_INDEX = {
219
314
  "contentType": "application/octet-stream"
220
315
  },
221
316
  "darshan.html": {
222
- "hash": "400d29897d086cd0d800b79d68547920d13d7154fc7a205afeddfa7a68594d37",
223
- "size": 25427,
317
+ "hash": "f6e4fa10ed95d765b806a6fe5a9b7d909c1bc3bdb79bb7a14b63a9e7c33a8fb5",
318
+ "size": 52598,
319
+ "contentType": "text/html; charset=utf-8"
320
+ },
321
+ "dharma.html": {
322
+ "hash": "0d6d8b4b67538a94bde473dcf04614451efa6be45dc57c3b71711c7692afb17e",
323
+ "size": 45605,
224
324
  "contentType": "text/html; charset=utf-8"
225
325
  },
226
326
  "docs-bundle.html": {
227
- "hash": "554355dc37ef97bff1b64ab3d95a75f56d3fdc9c46040e7452ce909d62b05400",
228
- "size": 18933,
327
+ "hash": "ddda45905e5f2a7863767421d0996aa61a527bcfa7b5a96e86a9841c8a579474",
328
+ "size": 45666,
229
329
  "contentType": "text/html; charset=utf-8"
230
330
  },
231
331
  "docs.css": {
232
- "hash": "02738ed227ab2935703f6ef3896703d25b1993e5adee9a15f3555a5cde630a06",
233
- "size": 41737,
332
+ "hash": "9e272ee1481b73a76ac4e6a22093682058703a4ebd3d8d86d13cb3383c62c8e8",
333
+ "size": 62078,
234
334
  "contentType": "text/css; charset=utf-8"
235
335
  },
236
336
  "docs.js": {
237
- "hash": "5566c7fbf9a91ffd2ad9542a999cfa05ec1a2eef4780b1b52afb28932d90d705",
238
- "size": 5091,
337
+ "hash": "e6f22cd42684c9a1ef178d6b1eaa8b13f876f986fceb3d2f8b9041a4e5147760",
338
+ "size": 20477,
239
339
  "contentType": "application/javascript; charset=utf-8"
240
340
  },
241
341
  "doko.html": {
242
- "hash": "65cba8ae5cd4074fc0c2a2a3f269b0d13e4db86323b89ac37c2295ebac0f6e13",
243
- "size": 20233,
342
+ "hash": "f577d73154a80eb9132c8fd4b84638c6d2cc8a96617f89a2439c39a589c8d30d",
343
+ "size": 46587,
244
344
  "contentType": "text/html; charset=utf-8"
245
345
  },
246
346
  "favicon.ico": {
@@ -254,23 +354,23 @@ export const FILE_INDEX = {
254
354
  "contentType": "image/svg+xml"
255
355
  },
256
356
  "geo-proof.html": {
257
- "hash": "3ed789cad8cb957ab75869d0bdf033f597bdb1cfb1583b411d73b0dbba3b53db",
258
- "size": 14820,
357
+ "hash": "4051df837b3422c5beafbe3adf155c84f9b26398d9dfdf064fc70f8d6be96ddd",
358
+ "size": 40555,
259
359
  "contentType": "text/html; charset=utf-8"
260
360
  },
261
361
  "getting-started.html": {
262
- "hash": "07c3b0a9fcdbf7efe78af2a57110658beeb0fe2d82d5e0a16e404ca66b50087e",
263
- "size": 12719,
362
+ "hash": "8494029ab3ea548296d818504e5bcb4eacc1a33a5fa4b3baff94c98b0b28f866",
363
+ "size": 39611,
264
364
  "contentType": "text/html; charset=utf-8"
265
365
  },
266
366
  "gumba-tutorial.html": {
267
- "hash": "1200572f6486f9acc77268451c8d8f4f30c85c6f9cee485b83d842c79ab9a57b",
268
- "size": 22615,
367
+ "hash": "21f1f93050500f9f98dfbfc9e434bb6b81684e5559568a1f0edf39103403aef4",
368
+ "size": 48756,
269
369
  "contentType": "text/html; charset=utf-8"
270
370
  },
271
371
  "gumba.html": {
272
- "hash": "207b372a4a67ca40071480db870059e0efe7be27d612632d99f0b9d941637294",
273
- "size": 26121,
372
+ "hash": "6861e5868fbd3bf800e33f4d4f826fdbf804e79161b39e07e447c9ed5191431f",
373
+ "size": 52891,
274
374
  "contentType": "text/html; charset=utf-8"
275
375
  },
276
376
  "icon.svg": {
@@ -279,43 +379,48 @@ export const FILE_INDEX = {
279
379
  "contentType": "image/svg+xml"
280
380
  },
281
381
  "index.html": {
282
- "hash": "8b728a2ea3a1f23a5f4d6f5a664f01e263b205ef972f7bf631ee238abf7c3f7a",
283
- "size": 13033,
382
+ "hash": "044bcd3581ae4021d91d7e8d2e8a8cbb94960323290fd7ddee0e673297cfb467",
383
+ "size": 57401,
384
+ "contentType": "text/html; charset=utf-8"
385
+ },
386
+ "jhilke.html": {
387
+ "hash": "fcef465c8b3f0e7f406437b75ad91387a4956b0fe8af67066008e1d7c1dd6098",
388
+ "size": 61167,
284
389
  "contentType": "text/html; charset=utf-8"
285
390
  },
286
391
  "karma.html": {
287
- "hash": "eadfdf370ae8892a3b8b8faada315c9b32d881fe8dc48d0c212c2b00c6868d1c",
288
- "size": 17473,
392
+ "hash": "994602c4eae1b1a2b5d44ad11075d4856ed0471270cf95de6bf2908e6e06492e",
393
+ "size": 50692,
289
394
  "contentType": "text/html; charset=utf-8"
290
395
  },
291
396
  "katha.html": {
292
- "hash": "9f856752e76db4d2141daffeca230447c78939addc785673f5577b1581272c4c",
293
- "size": 18882,
397
+ "hash": "88b0155de466f7b6b4595ef73aa359fd27f2f93e321dbe592ab132f10f15ce92",
398
+ "size": 44923,
294
399
  "contentType": "text/html; charset=utf-8"
295
400
  },
296
401
  "lama.html": {
297
- "hash": "180081e610c45b75637313d471020532b12d01a2e43ed27b71856bd8f2109713",
298
- "size": 15832,
402
+ "hash": "ae957e20d47059a36394c85f42693b216b6597c570db7d9f014d8f3093184f33",
403
+ "size": 43729,
299
404
  "contentType": "text/html; charset=utf-8"
300
405
  },
301
406
  "mandala.html": {
302
- "hash": "baf8afecd9cc825519edd7a896bf1ab1a916be59dde7be1f1ac227b04ffe37ff",
303
- "size": 19362,
407
+ "hash": "c1d8b579560388361ee83da35e91ef13773fdf48a06feed9c1ba2f881082d11a",
408
+ "size": 48341,
304
409
  "contentType": "text/html; charset=utf-8"
305
410
  },
306
411
  "mani.html": {
307
- "hash": "f33de50f987c00c1a9015774ec5bd82571111de4f8e655e21f3636681b249dc2",
308
- "size": 15342,
412
+ "hash": "4315bb45e913592a518ae05a3e34cebc46d8a897c9fab3a89975833ebaf61d9c",
413
+ "size": 43232,
309
414
  "contentType": "text/html; charset=utf-8"
310
415
  },
311
416
  "mantra.html": {
312
- "hash": "df02451ad0febebb693fbf72b175f35d78034d760b8d1c44419fddbfe418abab",
313
- "size": 20499,
417
+ "hash": "6a95b876f7c3ffe5feb450642d17bd4f273aa2ab0823d249e347383bac370251",
418
+ "size": 46555,
314
419
  "contentType": "text/html; charset=utf-8"
315
420
  },
316
421
  "mesh.html": {
317
- "hash": "9ea50da872153f0f8dbe309b4fbf3e76eafba88e9a934b53cc74a038749bf384",
318
- "size": 45471,
422
+ "hash": "2559f8d94e0a8713837eaafd653b4547dfcc06598c1a7c7cdabec191da7ec066",
423
+ "size": 72318,
319
424
  "contentType": "text/html; charset=utf-8"
320
425
  },
321
426
  "MTLS-RESEARCH.md": {
@@ -324,8 +429,8 @@ export const FILE_INDEX = {
324
429
  "contentType": "application/octet-stream"
325
430
  },
326
431
  "nakpak.html": {
327
- "hash": "df6cd1d3ac3185ccd242915fb8d7e98a43a8ce683a7b509d3785ce38498e142b",
328
- "size": 15710,
432
+ "hash": "a8fb52b37ce19e4e1b2c1f03ff6d5c1eaf4d92c1e0aeb9169cbfb2284880d0e2",
433
+ "size": 41190,
329
434
  "contentType": "text/html; charset=utf-8"
330
435
  },
331
436
  "NAMCHE-SPEC.md": {
@@ -334,15 +439,25 @@ export const FILE_INDEX = {
334
439
  "contentType": "application/octet-stream"
335
440
  },
336
441
  "namche.html": {
337
- "hash": "17d846d7fe6fe439246a358e8fca9780027909aada58ff259e3dced8872493ec",
338
- "size": 16574,
442
+ "hash": "e920bd905fcc1e416a8df754b77abf42b8171185f273b37fe16fecd6fa3af7a0",
443
+ "size": 42383,
339
444
  "contentType": "text/html; charset=utf-8"
340
445
  },
446
+ "nav-order.json": {
447
+ "hash": "ca61783d50384a50cb70cda6d1054555539e5abfab0cd5a245264a80a87412e6",
448
+ "size": 8096,
449
+ "contentType": "application/json"
450
+ },
341
451
  "PEERQUANTA-YAKMESH-INTEGRATION.md": {
342
452
  "hash": "5f50086107e1004c39a26af815772bc472143a0fb1b1072f043eb628a73951f4",
343
453
  "size": 19419,
344
454
  "contentType": "application/octet-stream"
345
455
  },
456
+ "prahari.html": {
457
+ "hash": "447e22d8fc91e9fdef6c9e7c538d4f62fdb9de512087061f77f585bf4faed86e",
458
+ "size": 50975,
459
+ "contentType": "text/html; charset=utf-8"
460
+ },
346
461
  "PRECISION-DISCLOSURE.md": {
347
462
  "hash": "b32891cf022f8948ae25f9c451ab9f581504a48783fa317b4ae40409e100a5d5",
348
463
  "size": 3410,
@@ -374,13 +489,13 @@ export const FILE_INDEX = {
374
489
  "contentType": "application/javascript; charset=utf-8"
375
490
  },
376
491
  "privacy.html": {
377
- "hash": "b52aaf6967c2736e79a32ae856421c1194b3ab8a9faca17a968e54e5c03bdf58",
378
- "size": 7593,
492
+ "hash": "d0349957bd4d77bc97c2abbf56807eb9e73f3fafea4246b890f4509f80ea0621",
493
+ "size": 27755,
379
494
  "contentType": "text/html; charset=utf-8"
380
495
  },
381
496
  "quick-reference.html": {
382
- "hash": "1b2a7a39c1091966fc70f7673f24be569af9c7375b7044e9943a18f19eb1f9f6",
383
- "size": 28469,
497
+ "hash": "5a0e9cebfbb3435b55a3af6268f68fa7c61bef1d71e9b75d61c534ffafc7d600",
498
+ "size": 54972,
384
499
  "contentType": "text/html; charset=utf-8"
385
500
  },
386
501
  "README.md": {
@@ -399,18 +514,48 @@ export const FILE_INDEX = {
399
514
  "contentType": "application/octet-stream"
400
515
  },
401
516
  "sakshi.html": {
402
- "hash": "5f42ab1ab11ab917add4fc1b348e3ab30270d6bbd49811619fab57d741c59e03",
403
- "size": 30931,
517
+ "hash": "0e77d64f0d4bc879f02221f56a1f53a87550e49384b9d54db3808559d466e3dd",
518
+ "size": 63959,
519
+ "contentType": "text/html; charset=utf-8"
520
+ },
521
+ "SECURITY-AUDIT-REPORT.md": {
522
+ "hash": "eff5b6673d60d6785eafedad078133ab564a3a68e806c242e7f7877484b44df5",
523
+ "size": 9583,
524
+ "contentType": "application/octet-stream"
525
+ },
526
+ "seva.html": {
527
+ "hash": "f6cdf926a5dd16cb84af979d34a89c81a1ba79413f13e924b47d260670b7f416",
528
+ "size": 43596,
404
529
  "contentType": "text/html; charset=utf-8"
405
530
  },
406
531
  "sherpa.html": {
407
- "hash": "f314eaa394bd0a17b7d07777ebff591d3254dccff2299ff93ca590b16985cbfa",
408
- "size": 14079,
532
+ "hash": "4183ded23afb0530722a5fd101bbff243289db284806325f0c71d8214d0b7f2b",
533
+ "size": 39477,
534
+ "contentType": "text/html; charset=utf-8"
535
+ },
536
+ "sitemap.xml": {
537
+ "hash": "84e5f14e8d239bec0a6bbff6f104d96eb87224c88693a89c79746270f60fe2d9",
538
+ "size": 8283,
539
+ "contentType": "application/octet-stream"
540
+ },
541
+ "SST-INTEGRATION.md": {
542
+ "hash": "2c906a5d52538f948230496e5a8aab5c088a9bb8598c5bba41d46f7a3e23179c",
543
+ "size": 20824,
544
+ "contentType": "application/octet-stream"
545
+ },
546
+ "STEADYWATCH-IMPLEMENTATION.md": {
547
+ "hash": "6e2f6d0266607fe66104a577287e01a17420e81c8dd3539ca9055a6bc3fd547f",
548
+ "size": 14496,
549
+ "contentType": "application/octet-stream"
550
+ },
551
+ "studio.html": {
552
+ "hash": "5ccc81acd14331dca25d4c385f415dbdbcb69d411000c0747c0733be30fb57a0",
553
+ "size": 39761,
409
554
  "contentType": "text/html; charset=utf-8"
410
555
  },
411
556
  "stupa.html": {
412
- "hash": "bebbdcfcf86604743a63ce100dec77ef1990ec1417f66b33eea6f36afe4b8453",
413
- "size": 16590,
557
+ "hash": "877e9953c7218b5fe4a78111e352a5791d2b2148cc64b59dd29a212f888907b3",
558
+ "size": 44619,
414
559
  "contentType": "text/html; charset=utf-8"
415
560
  },
416
561
  "tailwind.min.css": {
@@ -419,18 +564,28 @@ export const FILE_INDEX = {
419
564
  "contentType": "text/css; charset=utf-8"
420
565
  },
421
566
  "tattva.html": {
422
- "hash": "20eca47282b6ef410f3cb665223fd5e89b3293ea4d5f65c7b9fb95a0e8f27b92",
423
- "size": 42674,
567
+ "hash": "fc18626c35d86f94733970ed55b9687c9f99ddb242928644cdd0a087e2aea5a6",
568
+ "size": 69569,
424
569
  "contentType": "text/html; charset=utf-8"
425
570
  },
426
571
  "terms.html": {
427
- "hash": "16ab805d26cb3c31b0fd075b72f042bd957924a9de467feb84d0c0cb835dd2e1",
428
- "size": 6646,
572
+ "hash": "01f39fb6c64b58011953e8d7c602324572a3f87e8a03f327badb46196d84db97",
573
+ "size": 26796,
429
574
  "contentType": "text/html; charset=utf-8"
430
575
  },
576
+ "TERNARY-AUDIT-REPORT.md": {
577
+ "hash": "9dc4c56fdd7922ef76235a9461a2de5dc82db4479449bfbb60277f471810d1cb",
578
+ "size": 7368,
579
+ "contentType": "application/octet-stream"
580
+ },
431
581
  "time-sources.html": {
432
- "hash": "0238f3be49449a33cbb86e5f415884ccf6b146c52b5f12c34a1ec5ba23d17640",
433
- "size": 42824,
582
+ "hash": "c33be3a7ff50040568fdf14a1e9f71c7e4ae5d800ddb0b1214a6ae4139ea35c9",
583
+ "size": 68956,
584
+ "contentType": "text/html; charset=utf-8"
585
+ },
586
+ "tivra.html": {
587
+ "hash": "33c243bcfcba77b0cdbdfbad198b3207a7b121011963fc01a3007e0803f55292",
588
+ "size": 55487,
434
589
  "contentType": "text/html; charset=utf-8"
435
590
  },
436
591
  "TME-FAQ.md": {
@@ -439,98 +594,98 @@ export const FILE_INDEX = {
439
594
  "contentType": "application/octet-stream"
440
595
  },
441
596
  "trademark-policy.html": {
442
- "hash": "52c07cbba4133a822d84dc7ad43b48efac7164f49524181da3579cc1ec4d6ee7",
443
- "size": 6274,
597
+ "hash": "e74edabf0466757e78e18f1204d336726c6c0c48b31317ceabdeb9f0a58cf84a",
598
+ "size": 26645,
444
599
  "contentType": "text/html; charset=utf-8"
445
600
  },
446
601
  "tribhuj.html": {
447
- "hash": "24081f8bd3a46f94264ffadc190e07db908ee705f639127b76f151d39ea30db1",
448
- "size": 27306,
602
+ "hash": "aaad92277cd910b76e79f43e7fa194fd27e80f00e97bd05bc477cb671181b4f7",
603
+ "size": 56801,
449
604
  "contentType": "text/html; charset=utf-8"
450
605
  },
451
606
  "trust-security.html": {
452
- "hash": "06259d9ff4aaa2d0978d745dbe532def52d6e4d3e237576444558372b82c2129",
453
- "size": 24956,
607
+ "hash": "bf91ad4bf9ec6818ecac38515c6da810b0f616b58ebea5cfe31ad85d0a206583",
608
+ "size": 51563,
454
609
  "contentType": "text/html; charset=utf-8"
455
610
  },
456
611
  "tutorials/backup-recovery.html": {
457
- "hash": "01d60d80b3576e46a61e6af6e0c0fe938f2be5e5516f4f9bc98ba3baaa79fa25",
458
- "size": 30082,
612
+ "hash": "f3e9a606bb25b793a02f110accda60615747d60fdbdd6bedb15882a16e5d3eed",
613
+ "size": 31301,
459
614
  "contentType": "text/html; charset=utf-8"
460
615
  },
461
616
  "tutorials/dashboard.html": {
462
- "hash": "66bc51bc734e3a768f2ec4ff4716dc58b2c29d5f59e225e36e5a33197dc325a4",
463
- "size": 29267,
617
+ "hash": "cf1126cc5b6afaa35719e99d80c9a8871447b1ea868c7ac133b8b20b175b07dc",
618
+ "size": 30436,
464
619
  "contentType": "text/html; charset=utf-8"
465
620
  },
466
621
  "tutorials/domain-setup.html": {
467
- "hash": "271c171eae650624812ff178501bd38a5796739d7d7f725586dec24b1cfe616a",
468
- "size": 26007,
622
+ "hash": "c73e36190bfe289396100e2d637d1b067bea29e840eef627f4bb0d12c168d0e1",
623
+ "size": 27176,
469
624
  "contentType": "text/html; charset=utf-8"
470
625
  },
471
626
  "tutorials/host-website.html": {
472
- "hash": "539a2f30e5b6096aeb900651d961942b6b72471cae54a85cfc6d2d88b1794d1e",
473
- "size": 20025,
627
+ "hash": "a1deaa557e12f28cc169205015075d9b252f34d326111f5ee4272fccf421cfb1",
628
+ "size": 21046,
474
629
  "contentType": "text/html; charset=utf-8"
475
630
  },
476
631
  "tutorials/mesh-network.html": {
477
- "hash": "5527d4d2a88394d37445f194e16915214500e1816603bbb078844c6533a4d16d",
478
- "size": 23114,
632
+ "hash": "69c921e2892386e5788e931184821e107779b2fb8021b785f75aff76da5154cc",
633
+ "size": 24184,
479
634
  "contentType": "text/html; charset=utf-8"
480
635
  },
481
636
  "tutorials/mobile-access.html": {
482
- "hash": "1d46121724810f7a87a4202b2efc9bf6f5c9999ca2f2ecd5657ae4e542e1a1e8",
483
- "size": 21536,
637
+ "hash": "66b5e88c1aaff22448fca260505ade0e514e2c6a515fb2ee286a9c0778233d8d",
638
+ "size": 22545,
484
639
  "contentType": "text/html; charset=utf-8"
485
640
  },
486
641
  "tutorials/privacy.html": {
487
- "hash": "353da0aab145af04b0b27ebdc972f48e14222cff103e81ebd96798e5be30ec96",
488
- "size": 21613,
642
+ "hash": "6c3ea55f432d6b92089ed6183cabd19905c42b4ff8ac25106f43b5b4d559d36c",
643
+ "size": 22185,
489
644
  "contentType": "text/html; charset=utf-8"
490
645
  },
491
646
  "tutorials/raspberry-pi.html": {
492
- "hash": "a59255720858bd97a755b98af2a1d3b972d69dd377cd4d2a116423a8047557e8",
493
- "size": 24034,
647
+ "hash": "d6a4e64809da0b5efb696f55ea5ae0850bfe18625543bb522b066cbcfc61fd1d",
648
+ "size": 25198,
494
649
  "contentType": "text/html; charset=utf-8"
495
650
  },
496
651
  "tutorials/security-basics.html": {
497
- "hash": "d3409f4eb00981adf3f6cbe762354f6c7f45f0c256e3f9e8d56c0dacd9d7bac6",
498
- "size": 25059,
652
+ "hash": "c274403a41c6bdef837f0587ca4ba9e108e85c9c71e6db8c5f2a77a3d9242b46",
653
+ "size": 25631,
499
654
  "contentType": "text/html; charset=utf-8"
500
655
  },
501
656
  "tutorials/share-files.html": {
502
- "hash": "71b900cd3779dbc6bd9525a7f255b7dbd710f326ccfae9d839fc850f6c357fa7",
503
- "size": 21546,
657
+ "hash": "9235cf264382c18a86334aec82b5b8b31e0a8fcd29fec5da5b441568c8e8dfe2",
658
+ "size": 22542,
504
659
  "contentType": "text/html; charset=utf-8"
505
660
  },
506
661
  "tutorials/troubleshooting.html": {
507
- "hash": "7c4a098e1b1b4e44a08fb0e56d9fef45ed6b92bb328909ef4eaf8f10cdfb213b",
508
- "size": 30169,
662
+ "hash": "56ac288f423bfee67995efea45b91cda6447d8cd737a425177c919122ef26166",
663
+ "size": 31370,
509
664
  "contentType": "text/html; charset=utf-8"
510
665
  },
511
666
  "tutorials/trust-karma.html": {
512
- "hash": "623f63307cb1d7d36219e3514ff135dbb676ab1fa7bbec589400102e1fa4da07",
513
- "size": 20383,
667
+ "hash": "e718c9e5664f733262c43b5a1ec0ea38c0137c71ae6b280c37803fcff51334ad",
668
+ "size": 20955,
514
669
  "contentType": "text/html; charset=utf-8"
515
670
  },
516
671
  "tutorials/yak-protocol.html": {
517
- "hash": "d4a25ba6ed82e5c8869c6d333550379a94fd8871778f00799836b250a93e18de",
518
- "size": 20898,
672
+ "hash": "53c147a8a1c3629573f95cdd4faf45aa5963baab8db04986b6f2ff53e5608c60",
673
+ "size": 21934,
519
674
  "contentType": "text/html; charset=utf-8"
520
675
  },
521
676
  "tutorials.html": {
522
- "hash": "ab976d40d8b5d3a50b3d7262818df4c59b7f42e2f6c67a3a9d918d39eb9392e6",
523
- "size": 13696,
677
+ "hash": "df3d6dbc952f2f0cb7f8283afcb793642923e4eb48a33037a1b325eb4dc1a322",
678
+ "size": 47272,
524
679
  "contentType": "text/html; charset=utf-8"
525
680
  },
526
681
  "vani.html": {
527
- "hash": "99a51e46f9f421e5700c91e1358817caf4e74055df7d623600ee0385203897f2",
528
- "size": 27972,
682
+ "hash": "30aad746474bf4f361541a919927229639b650e15492a7b43047243f888d7338",
683
+ "size": 54631,
529
684
  "contentType": "text/html; charset=utf-8"
530
685
  },
531
686
  "webserver.html": {
532
- "hash": "f31e8c546d32362bbc6926ed119d8a86b263b66fc1ba4be6116f6d6b266ad2a4",
533
- "size": 11616,
687
+ "hash": "78e67a066a328c58fdcb4de274c148590f122cb7b1a02fd27413f2e455cdd9dd",
688
+ "size": 37152,
534
689
  "contentType": "text/html; charset=utf-8"
535
690
  },
536
691
  "WHITEPAPER.md": {
@@ -549,18 +704,23 @@ export const FILE_INDEX = {
549
704
  "contentType": "image/svg+xml"
550
705
  },
551
706
  "yak-protocol.html": {
552
- "hash": "d55336e873cca794f4235fd021634496253b38b9281dc78ec5168916efd2dd5f",
553
- "size": 18015,
707
+ "hash": "21ba9312a392f79f7a125daa0924453b16a1c3d49dc8c338a48f946a4fae8581",
708
+ "size": 43861,
709
+ "contentType": "text/html; charset=utf-8"
710
+ },
711
+ "yakapp.html": {
712
+ "hash": "276787b0451cdee0c4e2f25edcbb39513e0a6d0484738994064f86ea73f01414",
713
+ "size": 50738,
554
714
  "contentType": "text/html; charset=utf-8"
555
715
  },
556
716
  "ypc27.html": {
557
- "hash": "e5719499e82eee608467e4ae5c20f4d0448b30878e454169d335453ad2d7d80a",
558
- "size": 21914,
717
+ "hash": "31f13f04b6f1a33fdcf0b01a1a3b0f2e9687f037a640388d7718cc9d2cdc69a2",
718
+ "size": 48696,
559
719
  "contentType": "text/html; charset=utf-8"
560
720
  },
561
721
  "yurt.html": {
562
- "hash": "43df458a0a7c59f8e8a7773f68acda1399e6efcb4719e5878faf0531f3af3111",
563
- "size": 26081,
722
+ "hash": "48050998766cdc92765664824babd6ed39bcadb4c7257c7604c17c4608dfd0fc",
723
+ "size": 51862,
564
724
  "contentType": "text/html; charset=utf-8"
565
725
  }
566
726
  };