@frockbot/plugin-flock 0.0.0 → 0.1.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.
- package/README.md +8 -1
- package/assets/amber-glasses.webp +0 -0
- package/assets/background-bright-orange.webp +0 -0
- package/assets/background-canary-yellow.webp +0 -0
- package/assets/background-electric-blue.webp +0 -0
- package/assets/background-hot-pink.webp +0 -0
- package/assets/background-lime-green.webp +0 -0
- package/assets/background-vivid-purple.webp +0 -0
- package/assets/blue-sailor-cap.webp +0 -0
- package/assets/bronze-aviator-goggles.webp +0 -0
- package/assets/burgundy-beret.webp +0 -0
- package/assets/canary-party-hat.webp +0 -0
- package/assets/canary-rain-cap.webp +0 -0
- package/assets/canonical.webp +0 -0
- package/assets/chef-toque.webp +0 -0
- package/assets/cobalt-round-glasses.webp +0 -0
- package/assets/coral-bucket-hat.webp +0 -0
- package/assets/emerald-necktie.webp +0 -0
- package/assets/forest-ranger-fedora.webp +0 -0
- package/assets/gold-royal-crown.webp +0 -0
- package/assets/gold-sun-medallion.webp +0 -0
- package/assets/graduation-cap.webp +0 -0
- package/assets/green-square-glasses.webp +0 -0
- package/assets/layers.css +159 -0
- package/assets/leather-bell.webp +0 -0
- package/assets/lilac-flower-crown.webp +0 -0
- package/assets/manifest.json +769 -0
- package/assets/matte-black-top-hat.webp +0 -0
- package/assets/navy-wizard-hat.webp +0 -0
- package/assets/orange-hard-hat.webp +0 -0
- package/assets/plum-glasses.webp +0 -0
- package/assets/purple-scarf.webp +0 -0
- package/assets/purple-witch-hat.webp +0 -0
- package/assets/rainbow-propeller-cap.webp +0 -0
- package/assets/rainbow-visor.webp +0 -0
- package/assets/ranger-fedora-feather.webp +0 -0
- package/assets/red-polka-bowtie.webp +0 -0
- package/assets/retro-3d-glasses.webp +0 -0
- package/assets/rose-heart-sunglasses.webp +0 -0
- package/assets/royal-crown-rubies.webp +0 -0
- package/assets/sailor-cap-anchor.webp +0 -0
- package/assets/silver-space-helmet.webp +0 -0
- package/assets/straw-boater.webp +0 -0
- package/assets/teal-bowtie.webp +0 -0
- package/assets/teal-glasses.webp +0 -0
- package/assets/terracotta-beanie.webp +0 -0
- package/assets/tortoiseshell-readers.webp +0 -0
- package/assets/turquoise-bandana.webp +0 -0
- package/assets/violet-masquerade-mask.webp +0 -0
- package/assets/white-snow-goggles.webp +0 -0
- package/assets/white-tennis-visor.webp +0 -0
- package/assets/witch-hat-moon.webp +0 -0
- package/assets/yellow-star-glasses.webp +0 -0
- package/frockbot.json +38 -0
- package/package.json +47 -6
- package/src/agent.test.ts +401 -0
- package/src/agent.ts +571 -0
- package/src/assets.test.ts +31 -0
- package/src/backend.test.ts +205 -0
- package/src/backend.ts +283 -0
- package/src/bot.test.ts +190 -0
- package/src/bot.ts +255 -0
- package/src/client/BotAvatar.vue +20 -0
- package/src/client/FlockAvatar.vue +33 -0
- package/src/client/FlockAvatarEditor.vue +44 -0
- package/src/client/FlockCreateButton.vue +18 -0
- package/src/client/FlockIdentity.vue +31 -0
- package/src/client/FlockOverlay.vue +209 -0
- package/src/client/FlockSidebar.vue +254 -0
- package/src/client/SheepAvatar.vue +28 -0
- package/src/client/dialog-focus.test.ts +15 -0
- package/src/client/dialog-focus.ts +13 -0
- package/src/client/index.test.ts +502 -0
- package/src/client/index.ts +619 -0
- package/src/client/mobile-dialog-layout.test.ts +50 -0
- package/src/client/pending-create.test.ts +71 -0
- package/src/client/pending-create.ts +93 -0
- package/src/client/sidebar.test.ts +77 -0
- package/src/client/sidebar.ts +77 -0
- package/src/client/state.ts +53 -0
- package/src/client/styles.css +611 -0
- package/src/env.d.ts +9 -0
- package/src/index.ts +4 -0
- package/src/manifest.ts +3 -0
- package/src/package.test.ts +12 -0
- package/src/shared.test.ts +197 -0
- package/src/shared.ts +735 -0
- package/src/user.test.ts +455 -0
- package/src/user.ts +465 -0
- package/tsconfig.json +15 -0
- package/validate_readability.py +64 -0
- package/vite.config.ts +30 -0
|
@@ -0,0 +1,769 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"source": "artifacts/sheep-dependency-tree-prototype/tree-manifest.json",
|
|
4
|
+
"sourceCanvas": [1024, 1024],
|
|
5
|
+
"renderCanvas": [256, 256],
|
|
6
|
+
"canonical": "canonical",
|
|
7
|
+
"backgrounds": [
|
|
8
|
+
{
|
|
9
|
+
"id": "hot-pink",
|
|
10
|
+
"label": "Hot pink"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"id": "electric-blue",
|
|
14
|
+
"label": "Electric blue"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "lime-green",
|
|
18
|
+
"label": "Lime green"
|
|
19
|
+
},
|
|
20
|
+
{
|
|
21
|
+
"id": "canary-yellow",
|
|
22
|
+
"label": "Canary yellow"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"id": "bright-orange",
|
|
26
|
+
"label": "Bright orange"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"id": "vivid-purple",
|
|
30
|
+
"label": "Vivid purple"
|
|
31
|
+
}
|
|
32
|
+
],
|
|
33
|
+
"trees": {
|
|
34
|
+
"upper": [
|
|
35
|
+
{
|
|
36
|
+
"id": "upper-neutral",
|
|
37
|
+
"label": "Neutral crown",
|
|
38
|
+
"parent": null,
|
|
39
|
+
"kind": "root"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "terracotta-beanie",
|
|
43
|
+
"label": "Terracotta beanie",
|
|
44
|
+
"parent": "upper-neutral",
|
|
45
|
+
"kind": "headwear"
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "canary-rain-cap",
|
|
49
|
+
"label": "Canary rain cap",
|
|
50
|
+
"parent": "upper-neutral",
|
|
51
|
+
"kind": "headwear"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "matte-black-top-hat",
|
|
55
|
+
"label": "Matte-black top hat \u00b7 Qwen layer",
|
|
56
|
+
"parent": "upper-neutral",
|
|
57
|
+
"kind": "headwear"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"id": "navy-wizard-hat",
|
|
61
|
+
"label": "Navy wizard hat",
|
|
62
|
+
"parent": "upper-neutral",
|
|
63
|
+
"kind": "headwear"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "coral-bucket-hat",
|
|
67
|
+
"label": "Coral bucket hat",
|
|
68
|
+
"parent": "upper-neutral",
|
|
69
|
+
"kind": "headwear"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "lilac-flower-crown",
|
|
73
|
+
"label": "Lilac flower crown",
|
|
74
|
+
"parent": "upper-neutral",
|
|
75
|
+
"kind": "headwear"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "canary-party-hat",
|
|
79
|
+
"label": "Canary party hat",
|
|
80
|
+
"parent": "upper-neutral",
|
|
81
|
+
"kind": "headwear"
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
"id": "forest-ranger-fedora",
|
|
85
|
+
"label": "Forest ranger fedora",
|
|
86
|
+
"parent": "upper-neutral",
|
|
87
|
+
"kind": "headwear"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "purple-witch-hat",
|
|
91
|
+
"label": "Purple witch hat",
|
|
92
|
+
"parent": "upper-neutral",
|
|
93
|
+
"kind": "headwear"
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"id": "blue-sailor-cap",
|
|
97
|
+
"label": "Blue sailor cap",
|
|
98
|
+
"parent": "upper-neutral",
|
|
99
|
+
"kind": "headwear"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "gold-royal-crown",
|
|
103
|
+
"label": "Gold royal crown",
|
|
104
|
+
"parent": "upper-neutral",
|
|
105
|
+
"kind": "headwear"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"id": "chef-toque",
|
|
109
|
+
"label": "Chef toque",
|
|
110
|
+
"parent": "upper-neutral",
|
|
111
|
+
"kind": "headwear"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "rainbow-propeller-cap",
|
|
115
|
+
"label": "Rainbow propeller cap",
|
|
116
|
+
"parent": "upper-neutral",
|
|
117
|
+
"kind": "headwear"
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
"id": "burgundy-beret",
|
|
121
|
+
"label": "Burgundy beret",
|
|
122
|
+
"parent": "upper-neutral",
|
|
123
|
+
"kind": "headwear"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"id": "silver-space-helmet",
|
|
127
|
+
"label": "Silver space helmet",
|
|
128
|
+
"parent": "upper-neutral",
|
|
129
|
+
"kind": "headwear"
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"id": "straw-boater",
|
|
133
|
+
"label": "Straw boater",
|
|
134
|
+
"parent": "upper-neutral",
|
|
135
|
+
"kind": "headwear"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "graduation-cap",
|
|
139
|
+
"label": "Graduation cap",
|
|
140
|
+
"parent": "upper-neutral",
|
|
141
|
+
"kind": "headwear"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"id": "orange-hard-hat",
|
|
145
|
+
"label": "Orange hard hat",
|
|
146
|
+
"parent": "upper-neutral",
|
|
147
|
+
"kind": "headwear"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"id": "ranger-fedora-feather",
|
|
151
|
+
"label": "Ranger fedora + feather",
|
|
152
|
+
"parent": "forest-ranger-fedora",
|
|
153
|
+
"kind": "derived-headwear"
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
"id": "witch-hat-moon",
|
|
157
|
+
"label": "Witch hat + moon brooch",
|
|
158
|
+
"parent": "purple-witch-hat",
|
|
159
|
+
"kind": "derived-headwear"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
"id": "sailor-cap-anchor",
|
|
163
|
+
"label": "Sailor cap + anchor pin",
|
|
164
|
+
"parent": "blue-sailor-cap",
|
|
165
|
+
"kind": "derived-headwear"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"id": "royal-crown-rubies",
|
|
169
|
+
"label": "Royal crown + rubies",
|
|
170
|
+
"parent": "gold-royal-crown",
|
|
171
|
+
"kind": "derived-headwear"
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
"id": "white-tennis-visor",
|
|
175
|
+
"label": "White tennis visor",
|
|
176
|
+
"parent": "upper-neutral",
|
|
177
|
+
"kind": "headwear"
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"middle": [
|
|
181
|
+
{
|
|
182
|
+
"id": "middle-neutral",
|
|
183
|
+
"label": "Neutral face",
|
|
184
|
+
"parent": null,
|
|
185
|
+
"kind": "root"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"id": "teal-glasses",
|
|
189
|
+
"label": "Teal glasses",
|
|
190
|
+
"parent": "middle-neutral",
|
|
191
|
+
"kind": "eyewear"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"id": "amber-glasses",
|
|
195
|
+
"label": "Amber round glasses",
|
|
196
|
+
"parent": "middle-neutral",
|
|
197
|
+
"kind": "eyewear"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"id": "plum-glasses",
|
|
201
|
+
"label": "Plum cat-eye glasses",
|
|
202
|
+
"parent": "middle-neutral",
|
|
203
|
+
"kind": "eyewear"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"id": "rose-heart-sunglasses",
|
|
207
|
+
"label": "Rose heart sunglasses",
|
|
208
|
+
"parent": "middle-neutral",
|
|
209
|
+
"kind": "eyewear"
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"id": "bronze-aviator-goggles",
|
|
213
|
+
"label": "Bronze aviator goggles",
|
|
214
|
+
"parent": "middle-neutral",
|
|
215
|
+
"kind": "eyewear"
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
"id": "cobalt-round-glasses",
|
|
219
|
+
"label": "Cobalt round glasses",
|
|
220
|
+
"parent": "middle-neutral",
|
|
221
|
+
"kind": "eyewear"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"id": "green-square-glasses",
|
|
225
|
+
"label": "Green square glasses",
|
|
226
|
+
"parent": "middle-neutral",
|
|
227
|
+
"kind": "eyewear"
|
|
228
|
+
},
|
|
229
|
+
{
|
|
230
|
+
"id": "yellow-star-glasses",
|
|
231
|
+
"label": "Yellow star glasses",
|
|
232
|
+
"parent": "middle-neutral",
|
|
233
|
+
"kind": "eyewear"
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
"id": "tortoiseshell-readers",
|
|
237
|
+
"label": "Tortoiseshell reading glasses",
|
|
238
|
+
"parent": "middle-neutral",
|
|
239
|
+
"kind": "eyewear"
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
"id": "rainbow-visor",
|
|
243
|
+
"label": "Rainbow visor",
|
|
244
|
+
"parent": "middle-neutral",
|
|
245
|
+
"kind": "eyewear"
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"id": "violet-masquerade-mask",
|
|
249
|
+
"label": "Violet masquerade mask",
|
|
250
|
+
"parent": "middle-neutral",
|
|
251
|
+
"kind": "facewear"
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
"id": "white-snow-goggles",
|
|
255
|
+
"label": "White snow goggles",
|
|
256
|
+
"parent": "middle-neutral",
|
|
257
|
+
"kind": "eyewear"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"id": "retro-3d-glasses",
|
|
261
|
+
"label": "Retro 3D glasses",
|
|
262
|
+
"parent": "middle-neutral",
|
|
263
|
+
"kind": "eyewear"
|
|
264
|
+
}
|
|
265
|
+
],
|
|
266
|
+
"lower": [
|
|
267
|
+
{
|
|
268
|
+
"id": "lower-neutral",
|
|
269
|
+
"label": "Neutral lower face",
|
|
270
|
+
"parent": null,
|
|
271
|
+
"kind": "root"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"id": "teal-bowtie",
|
|
275
|
+
"label": "Teal satin bow tie",
|
|
276
|
+
"parent": "lower-neutral",
|
|
277
|
+
"kind": "neckwear"
|
|
278
|
+
},
|
|
279
|
+
{
|
|
280
|
+
"id": "purple-scarf",
|
|
281
|
+
"label": "Purple silk scarf \u00b7 Qwen layer",
|
|
282
|
+
"parent": "lower-neutral",
|
|
283
|
+
"kind": "neckwear"
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"id": "red-polka-bowtie",
|
|
287
|
+
"label": "Red polka-dot bow tie",
|
|
288
|
+
"parent": "lower-neutral",
|
|
289
|
+
"kind": "neckwear"
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
"id": "turquoise-bandana",
|
|
293
|
+
"label": "Turquoise bandana",
|
|
294
|
+
"parent": "lower-neutral",
|
|
295
|
+
"kind": "neckwear"
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
"id": "gold-sun-medallion",
|
|
299
|
+
"label": "Gold sun medallion collar",
|
|
300
|
+
"parent": "lower-neutral",
|
|
301
|
+
"kind": "neckwear"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"id": "emerald-necktie",
|
|
305
|
+
"label": "Emerald necktie",
|
|
306
|
+
"parent": "lower-neutral",
|
|
307
|
+
"kind": "neckwear"
|
|
308
|
+
},
|
|
309
|
+
{
|
|
310
|
+
"id": "leather-bell",
|
|
311
|
+
"label": "Leather bell collar",
|
|
312
|
+
"parent": "lower-neutral",
|
|
313
|
+
"kind": "neckwear"
|
|
314
|
+
}
|
|
315
|
+
]
|
|
316
|
+
},
|
|
317
|
+
"assets": [
|
|
318
|
+
{
|
|
319
|
+
"id": "canonical",
|
|
320
|
+
"file": "canonical.webp",
|
|
321
|
+
"kind": "canonical",
|
|
322
|
+
"width": 256,
|
|
323
|
+
"height": 256,
|
|
324
|
+
"sha256": "54debe1370c376a4b1987b2889b1bf3afb6960eba2e523fb637054b28e2629f6",
|
|
325
|
+
"sourceSha256": "cbacaf02ee87d572a813412164556669b2652dba1a02d14be050e71fa6591bdb"
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
"id": "background-hot-pink",
|
|
329
|
+
"file": "background-hot-pink.webp",
|
|
330
|
+
"kind": "background",
|
|
331
|
+
"width": 256,
|
|
332
|
+
"height": 256,
|
|
333
|
+
"sha256": "bdcf575546de179453757a547047b13170e60a044e12ac644f546daa02072b10",
|
|
334
|
+
"sourceSha256": "bf1a436dca9af5e692b36107d19dd4cc753a1ffcb5dea1ab691ba1a1b4bd0c04"
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
"id": "background-electric-blue",
|
|
338
|
+
"file": "background-electric-blue.webp",
|
|
339
|
+
"kind": "background",
|
|
340
|
+
"width": 256,
|
|
341
|
+
"height": 256,
|
|
342
|
+
"sha256": "58f69930c03ecfb5dd8e0c18ed4632fffb445ab3909ad28145ad8abb0c31188f",
|
|
343
|
+
"sourceSha256": "7e945997db8c86a3d542ca86439c122ee956ac0791ca560e24ba6c25e837a386"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"id": "background-lime-green",
|
|
347
|
+
"file": "background-lime-green.webp",
|
|
348
|
+
"kind": "background",
|
|
349
|
+
"width": 256,
|
|
350
|
+
"height": 256,
|
|
351
|
+
"sha256": "4e4410270c9082040adc71391d104fdad8acc312ce13492fa7c8747139261cca",
|
|
352
|
+
"sourceSha256": "0130c85d815e9b0fcc08aa36f31495478eabb7a71e76649081bba37214c67945"
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
"id": "background-canary-yellow",
|
|
356
|
+
"file": "background-canary-yellow.webp",
|
|
357
|
+
"kind": "background",
|
|
358
|
+
"width": 256,
|
|
359
|
+
"height": 256,
|
|
360
|
+
"sha256": "69fb96f94bdc1dbb25c59495ba2fbae561c9a9792fe4151ee0b2aeb9d59e5e97",
|
|
361
|
+
"sourceSha256": "c0a19961b8e0d9af38e217d3d75c4d316f3720225de1d1a95321e93aaa37bfb6"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"id": "background-bright-orange",
|
|
365
|
+
"file": "background-bright-orange.webp",
|
|
366
|
+
"kind": "background",
|
|
367
|
+
"width": 256,
|
|
368
|
+
"height": 256,
|
|
369
|
+
"sha256": "06fe22c7f5954ad08eba9c379ce1d34d3837a6b6cf2116c92b78a53008536431",
|
|
370
|
+
"sourceSha256": "973962f9512de611cbabdf6da3720be81c8bf3102f429754036a05fed8a49fe3"
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
"id": "background-vivid-purple",
|
|
374
|
+
"file": "background-vivid-purple.webp",
|
|
375
|
+
"kind": "background",
|
|
376
|
+
"width": 256,
|
|
377
|
+
"height": 256,
|
|
378
|
+
"sha256": "1ca171708568868bdda1d24590c4aa4266badebdba45f6ff9423a2184aa35682",
|
|
379
|
+
"sourceSha256": "98b7927df7f5a083e22d29fd77fcd5e87a95797fda6dc5fc790f52d295057609"
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"id": "terracotta-beanie",
|
|
383
|
+
"file": "terracotta-beanie.webp",
|
|
384
|
+
"kind": "upper",
|
|
385
|
+
"width": 256,
|
|
386
|
+
"height": 256,
|
|
387
|
+
"sha256": "a4411ca38892faceaefa5807661aed4615ab8a8816186a44325f0279645d53e3",
|
|
388
|
+
"sourceSha256": "b106f721e85895ad534a9334d9c9a63e90e340822967805f1ae4217ee342966b"
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
"id": "canary-rain-cap",
|
|
392
|
+
"file": "canary-rain-cap.webp",
|
|
393
|
+
"kind": "upper",
|
|
394
|
+
"width": 256,
|
|
395
|
+
"height": 256,
|
|
396
|
+
"sha256": "3c9739254f8efe34412a0720cee2b17269626521b574843cd6edb2c0ffda062f",
|
|
397
|
+
"sourceSha256": "19da3c25bbd56ed33cd430ed3c0fc9b8ef472e3f56b7c6d87d5e953acd946d40"
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"id": "matte-black-top-hat",
|
|
401
|
+
"file": "matte-black-top-hat.webp",
|
|
402
|
+
"kind": "upper",
|
|
403
|
+
"width": 256,
|
|
404
|
+
"height": 256,
|
|
405
|
+
"sha256": "4ce6768c2d6182a04373898348c37589e1f7b44d1b92e73c69e7d88e927a4f30",
|
|
406
|
+
"sourceSha256": "d38ade28854bf6010f8263a02395e82b8846a6372640f5b41adb96bc4736125f"
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
"id": "navy-wizard-hat",
|
|
410
|
+
"file": "navy-wizard-hat.webp",
|
|
411
|
+
"kind": "upper",
|
|
412
|
+
"width": 256,
|
|
413
|
+
"height": 256,
|
|
414
|
+
"sha256": "07ea9efa4d94a6abb4c651f9f593d1a3269a0d806d8f39f1c0227a62ac5c1eb8",
|
|
415
|
+
"sourceSha256": "a67cf5eb8d150a741a0b5b3b36f5ba133bd997083c06ff2f136ac8b5a3c80b22"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"id": "coral-bucket-hat",
|
|
419
|
+
"file": "coral-bucket-hat.webp",
|
|
420
|
+
"kind": "upper",
|
|
421
|
+
"width": 256,
|
|
422
|
+
"height": 256,
|
|
423
|
+
"sha256": "23b618bbd61410854074bc84fc2b99755271fd30e7cedbe0fe0567ef3a8e5501",
|
|
424
|
+
"sourceSha256": "c7517e4cbd8d9a28d041726555917568cf36b9f9831f6d559fca3dc05aa1efdf"
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
"id": "lilac-flower-crown",
|
|
428
|
+
"file": "lilac-flower-crown.webp",
|
|
429
|
+
"kind": "upper",
|
|
430
|
+
"width": 256,
|
|
431
|
+
"height": 256,
|
|
432
|
+
"sha256": "52eaa3c7421917801e153918a9036ded1fb533e3e4486e53b78c57ed0f298c34",
|
|
433
|
+
"sourceSha256": "cdb2c5d3f65a22f708c745c7bea2f9a6c70328a075ec9311d6bbb237240ddfff"
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"id": "canary-party-hat",
|
|
437
|
+
"file": "canary-party-hat.webp",
|
|
438
|
+
"kind": "upper",
|
|
439
|
+
"width": 256,
|
|
440
|
+
"height": 256,
|
|
441
|
+
"sha256": "a087aceeb4897c5a708245c9b22726a0f62e7d6916b23e843ad8ff172bf549c6",
|
|
442
|
+
"sourceSha256": "1f0c3bc1945ab33299fbd0dd20cb98b8eeef3df174f1bbb2afb871c612307cb3"
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
"id": "forest-ranger-fedora",
|
|
446
|
+
"file": "forest-ranger-fedora.webp",
|
|
447
|
+
"kind": "upper",
|
|
448
|
+
"width": 256,
|
|
449
|
+
"height": 256,
|
|
450
|
+
"sha256": "e96d3ef4262fdc9580268043c32b543d9a6b45e226bb8749f07024bd3ffd4410",
|
|
451
|
+
"sourceSha256": "2e3867648780fb169d3e4f7845184bd50686350b74df135b725e409b2e2e53c6"
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
"id": "purple-witch-hat",
|
|
455
|
+
"file": "purple-witch-hat.webp",
|
|
456
|
+
"kind": "upper",
|
|
457
|
+
"width": 256,
|
|
458
|
+
"height": 256,
|
|
459
|
+
"sha256": "61bd35482f110e28cbaa3acda0dfaca45105de51878b75efe25d3b1d4aca41e4",
|
|
460
|
+
"sourceSha256": "f546f65f97566b4e2480f7617f1f758df694046b1acbfdcc2d719970dea1928d"
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"id": "blue-sailor-cap",
|
|
464
|
+
"file": "blue-sailor-cap.webp",
|
|
465
|
+
"kind": "upper",
|
|
466
|
+
"width": 256,
|
|
467
|
+
"height": 256,
|
|
468
|
+
"sha256": "35b49a8649db82fd89c98c6ab3e3fec605d6d496d5a845186c2ee3b14b26f9fb",
|
|
469
|
+
"sourceSha256": "7ba721dac3a30ab957b550689646dafb5d775a19cebb57ecdc4b9a5a1a18b7bd"
|
|
470
|
+
},
|
|
471
|
+
{
|
|
472
|
+
"id": "gold-royal-crown",
|
|
473
|
+
"file": "gold-royal-crown.webp",
|
|
474
|
+
"kind": "upper",
|
|
475
|
+
"width": 256,
|
|
476
|
+
"height": 256,
|
|
477
|
+
"sha256": "88aad76f5a6767824ed3bab26b774fd4d95067db83e89f689633d92b929b5a9b",
|
|
478
|
+
"sourceSha256": "d0b31bb6ac692953574ea9e9a8109048709251ca720f2ade8aad69de9555d8e6"
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"id": "chef-toque",
|
|
482
|
+
"file": "chef-toque.webp",
|
|
483
|
+
"kind": "upper",
|
|
484
|
+
"width": 256,
|
|
485
|
+
"height": 256,
|
|
486
|
+
"sha256": "2cdd39879546b6ec76b9d32746be8cd9f46eb4f14b3e67c016753f2e7622f9b0",
|
|
487
|
+
"sourceSha256": "59b51c0cdeca85e9e88bcbd0a3fb911b75dbfc33160f5abe2b6592220f96c2c4"
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"id": "rainbow-propeller-cap",
|
|
491
|
+
"file": "rainbow-propeller-cap.webp",
|
|
492
|
+
"kind": "upper",
|
|
493
|
+
"width": 256,
|
|
494
|
+
"height": 256,
|
|
495
|
+
"sha256": "3959fa7c3c7a211a836d0d717c8f39ffb01f4cb0fec6628ecd575a1c049974e7",
|
|
496
|
+
"sourceSha256": "cce7ab9d39c73850a66f3ebe30f6e2989b72c7a2e5556bb7cb8719e56c40db78"
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"id": "burgundy-beret",
|
|
500
|
+
"file": "burgundy-beret.webp",
|
|
501
|
+
"kind": "upper",
|
|
502
|
+
"width": 256,
|
|
503
|
+
"height": 256,
|
|
504
|
+
"sha256": "953f3ce3641d0a0dc346de6c08c30f91103f0239dd082d576117cc27a7eee6f1",
|
|
505
|
+
"sourceSha256": "2d7e7841f782f563353fc1ff8676fec27e5aa8ef8f3bfe2a3d1c0fba085532f9"
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"id": "silver-space-helmet",
|
|
509
|
+
"file": "silver-space-helmet.webp",
|
|
510
|
+
"kind": "upper",
|
|
511
|
+
"width": 256,
|
|
512
|
+
"height": 256,
|
|
513
|
+
"sha256": "19cc9dbde7bac11cfac7cb5b3cc774b05956aec8332b1c81d1938d1eaea22081",
|
|
514
|
+
"sourceSha256": "9ac52c63b959f882534685ec125f97be6be5f2efed679f555c62b044196859c2"
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
"id": "straw-boater",
|
|
518
|
+
"file": "straw-boater.webp",
|
|
519
|
+
"kind": "upper",
|
|
520
|
+
"width": 256,
|
|
521
|
+
"height": 256,
|
|
522
|
+
"sha256": "36adb9cfc250acc0423b5850a65af4f51f39eb2958d0152e9ca3ca8ef307b47f",
|
|
523
|
+
"sourceSha256": "1e3c2378a8b2aad2c355859a15ff9643b3b6f2f34b905429ec314a6ba43f3143"
|
|
524
|
+
},
|
|
525
|
+
{
|
|
526
|
+
"id": "graduation-cap",
|
|
527
|
+
"file": "graduation-cap.webp",
|
|
528
|
+
"kind": "upper",
|
|
529
|
+
"width": 256,
|
|
530
|
+
"height": 256,
|
|
531
|
+
"sha256": "d4c0598dff4041dd5ad5f170066c89f95939e751b9ef7ed54e1157e5d321b46f",
|
|
532
|
+
"sourceSha256": "f6284548238a570c30c63fbf97111c728c00868bbff50ae16799c35b95030e3c"
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
"id": "orange-hard-hat",
|
|
536
|
+
"file": "orange-hard-hat.webp",
|
|
537
|
+
"kind": "upper",
|
|
538
|
+
"width": 256,
|
|
539
|
+
"height": 256,
|
|
540
|
+
"sha256": "2850e8c21056e9f1666690ddb564293525ed35077ab8d342edbe12405f5e53f8",
|
|
541
|
+
"sourceSha256": "a05a1207c19d12c636efc921b2c7b28473c5865c2e488d32c2600923758678fe"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"id": "ranger-fedora-feather",
|
|
545
|
+
"file": "ranger-fedora-feather.webp",
|
|
546
|
+
"kind": "upper",
|
|
547
|
+
"width": 256,
|
|
548
|
+
"height": 256,
|
|
549
|
+
"sha256": "0a51f2a7033ed2124a1fbbec000ac4a36130b93a1f20dc6a1181da3fc50924f5",
|
|
550
|
+
"sourceSha256": "a6667a1c19022de95352226c3c19ba1c5cd7517ba3d5189ad87dc26c1d66ae52"
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
"id": "witch-hat-moon",
|
|
554
|
+
"file": "witch-hat-moon.webp",
|
|
555
|
+
"kind": "upper",
|
|
556
|
+
"width": 256,
|
|
557
|
+
"height": 256,
|
|
558
|
+
"sha256": "2786d388452361936b68dda538171d9da259b1b4a5f93de45efb84170150b822",
|
|
559
|
+
"sourceSha256": "57ad664950ed8d64279945fd2ef6bdab2d9091b0a8fc3b1b096db34c8123220a"
|
|
560
|
+
},
|
|
561
|
+
{
|
|
562
|
+
"id": "sailor-cap-anchor",
|
|
563
|
+
"file": "sailor-cap-anchor.webp",
|
|
564
|
+
"kind": "upper",
|
|
565
|
+
"width": 256,
|
|
566
|
+
"height": 256,
|
|
567
|
+
"sha256": "82e9892952fa67bf3d8d1eede4366df5320d3c2b912de8d1062816740fdfdd38",
|
|
568
|
+
"sourceSha256": "2219cf2e908e82c58d0bad03997beb93caa5724a478203e17971b763420df6ba"
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
"id": "royal-crown-rubies",
|
|
572
|
+
"file": "royal-crown-rubies.webp",
|
|
573
|
+
"kind": "upper",
|
|
574
|
+
"width": 256,
|
|
575
|
+
"height": 256,
|
|
576
|
+
"sha256": "9e52ac2f2faad18a93f5361e7cf6690bf8e80ab13a5560c43307ec8b98d7e7c7",
|
|
577
|
+
"sourceSha256": "2d19cffa21a4b71c49a3d3e185795a7602de2656abe67426b4d77a1f14b43e20"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"id": "white-tennis-visor",
|
|
581
|
+
"file": "white-tennis-visor.webp",
|
|
582
|
+
"kind": "upper",
|
|
583
|
+
"width": 256,
|
|
584
|
+
"height": 256,
|
|
585
|
+
"sha256": "1893348cf791bead33513bb6d1a6c1222c119e48d37665fcedec3da37c308a83",
|
|
586
|
+
"sourceSha256": "5525e53c80af4f2a30328247832cfb29e26709b3f2f8c2908ea5c97c588614ac"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"id": "teal-glasses",
|
|
590
|
+
"file": "teal-glasses.webp",
|
|
591
|
+
"kind": "middle",
|
|
592
|
+
"width": 256,
|
|
593
|
+
"height": 256,
|
|
594
|
+
"sha256": "c23d48db179c8acce8c6f4a0cffdb45de8d41229a7b058b586d98771d0d113b9",
|
|
595
|
+
"sourceSha256": "019ce34efe61ef4a178b8a43bd21f6b52c814991a59ba73821697cef5922236f"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"id": "amber-glasses",
|
|
599
|
+
"file": "amber-glasses.webp",
|
|
600
|
+
"kind": "middle",
|
|
601
|
+
"width": 256,
|
|
602
|
+
"height": 256,
|
|
603
|
+
"sha256": "6150583ff9bea4cd8d5e4f2e87d6cb790ace8fd652b93507b1c3c98b8de51312",
|
|
604
|
+
"sourceSha256": "0ff52ad5f3eabf3d0bf1df0cbb27a7f3a03fd3a863264d148a8c970c384888e4"
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
"id": "plum-glasses",
|
|
608
|
+
"file": "plum-glasses.webp",
|
|
609
|
+
"kind": "middle",
|
|
610
|
+
"width": 256,
|
|
611
|
+
"height": 256,
|
|
612
|
+
"sha256": "54eb95d0e68866816b714e9356f15e6ad028c54ec5c608db991540d7effcc3e2",
|
|
613
|
+
"sourceSha256": "c9293b212f39837d80451d7a890260c8680c5a3a26e853261a22e2af2714115c"
|
|
614
|
+
},
|
|
615
|
+
{
|
|
616
|
+
"id": "rose-heart-sunglasses",
|
|
617
|
+
"file": "rose-heart-sunglasses.webp",
|
|
618
|
+
"kind": "middle",
|
|
619
|
+
"width": 256,
|
|
620
|
+
"height": 256,
|
|
621
|
+
"sha256": "0f713c9770a99e5994cca55041d42c50464926ca93138692e274af81ec2fa049",
|
|
622
|
+
"sourceSha256": "54ad37704bb4082a2accd10d63be046c58ac4e024db70dd8252802178e399977"
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
"id": "bronze-aviator-goggles",
|
|
626
|
+
"file": "bronze-aviator-goggles.webp",
|
|
627
|
+
"kind": "middle",
|
|
628
|
+
"width": 256,
|
|
629
|
+
"height": 256,
|
|
630
|
+
"sha256": "016bb075f463bcd1cf90e915fa0bc8a88a463cfbdb323a586e780096a4632f00",
|
|
631
|
+
"sourceSha256": "e5776461446aa910f040feb1d499969c2218e5928d8344748179c6f61c4b2851"
|
|
632
|
+
},
|
|
633
|
+
{
|
|
634
|
+
"id": "cobalt-round-glasses",
|
|
635
|
+
"file": "cobalt-round-glasses.webp",
|
|
636
|
+
"kind": "middle",
|
|
637
|
+
"width": 256,
|
|
638
|
+
"height": 256,
|
|
639
|
+
"sha256": "3917e17f63adcafd3fabba34e809001fd2ba77ee91bd5d9de461c7a2d433b725",
|
|
640
|
+
"sourceSha256": "4067b8a1ca4beb1f5dd9d2a0ea9e1ffabaa2e4c833d2a81746ea6d41c5433d4f"
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
"id": "green-square-glasses",
|
|
644
|
+
"file": "green-square-glasses.webp",
|
|
645
|
+
"kind": "middle",
|
|
646
|
+
"width": 256,
|
|
647
|
+
"height": 256,
|
|
648
|
+
"sha256": "c058a221daf7e9bfa0f63a2df49b828089f8404a15bc3d9482a806ec3b63f69d",
|
|
649
|
+
"sourceSha256": "a250af9ce4f9655cd1db800cc83c19f81a032f8761922e23acb14b5471f3c489"
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
"id": "yellow-star-glasses",
|
|
653
|
+
"file": "yellow-star-glasses.webp",
|
|
654
|
+
"kind": "middle",
|
|
655
|
+
"width": 256,
|
|
656
|
+
"height": 256,
|
|
657
|
+
"sha256": "9800c18457f9750c21e14d64fca2a74e5489bb2f4f76d901b9f5e7f8df470a46",
|
|
658
|
+
"sourceSha256": "624d2e44f420bfda2df115296a81a8b27dff272dba1f8adec6347ca45a895ad2"
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
"id": "tortoiseshell-readers",
|
|
662
|
+
"file": "tortoiseshell-readers.webp",
|
|
663
|
+
"kind": "middle",
|
|
664
|
+
"width": 256,
|
|
665
|
+
"height": 256,
|
|
666
|
+
"sha256": "588230940738b0f01d841654148c7295f085026c0df15cb76dae65e9bccca7ea",
|
|
667
|
+
"sourceSha256": "aff1255fb98a2abc58630ca33955e22b4d19dca3347f371a0f289f2bfed4594b"
|
|
668
|
+
},
|
|
669
|
+
{
|
|
670
|
+
"id": "rainbow-visor",
|
|
671
|
+
"file": "rainbow-visor.webp",
|
|
672
|
+
"kind": "middle",
|
|
673
|
+
"width": 256,
|
|
674
|
+
"height": 256,
|
|
675
|
+
"sha256": "dea55517d56e0306f2dae614c986f23ab6472d1bd9072c94b97ce7c8c24b73f8",
|
|
676
|
+
"sourceSha256": "772ac52220a2a78863eccce001d19443bbf1ac9b6d2283e19447b809427fbb20"
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
"id": "violet-masquerade-mask",
|
|
680
|
+
"file": "violet-masquerade-mask.webp",
|
|
681
|
+
"kind": "middle",
|
|
682
|
+
"width": 256,
|
|
683
|
+
"height": 256,
|
|
684
|
+
"sha256": "ff3dfe60f327b0d52393af39879fbb374c5a519b33d6676821158db866c04562",
|
|
685
|
+
"sourceSha256": "68bc1c24e9cc31a8bd4ef5afc5e35ae0d9a272e202bd44992d251ea319b2d4d2"
|
|
686
|
+
},
|
|
687
|
+
{
|
|
688
|
+
"id": "white-snow-goggles",
|
|
689
|
+
"file": "white-snow-goggles.webp",
|
|
690
|
+
"kind": "middle",
|
|
691
|
+
"width": 256,
|
|
692
|
+
"height": 256,
|
|
693
|
+
"sha256": "0855050fe373e8f138a40d3cf095822224d7c024846eeb9373d37dadfea15931",
|
|
694
|
+
"sourceSha256": "9ea4b8beddd3b818d8b260fcaece5665333a7d71d1184aa55a84ceff823fc49f"
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
"id": "retro-3d-glasses",
|
|
698
|
+
"file": "retro-3d-glasses.webp",
|
|
699
|
+
"kind": "middle",
|
|
700
|
+
"width": 256,
|
|
701
|
+
"height": 256,
|
|
702
|
+
"sha256": "7019c01505c2ae0249d5df101d51b18b540ad7a204b20a2d10814f471b2f3ed9",
|
|
703
|
+
"sourceSha256": "a2d55ea52df9e6009cdcc509832d85f719e73f1e8ca9c4daaf356114961f3c67"
|
|
704
|
+
},
|
|
705
|
+
{
|
|
706
|
+
"id": "teal-bowtie",
|
|
707
|
+
"file": "teal-bowtie.webp",
|
|
708
|
+
"kind": "lower",
|
|
709
|
+
"width": 256,
|
|
710
|
+
"height": 256,
|
|
711
|
+
"sha256": "3f29c9e3981e2206edc2447325a89b8f2966823028666d7af53d6178afa275e2",
|
|
712
|
+
"sourceSha256": "fd7b545020b66c26471b77bfa3c11157c2e23cece6288b9d4515cb57014f45e3"
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
"id": "purple-scarf",
|
|
716
|
+
"file": "purple-scarf.webp",
|
|
717
|
+
"kind": "lower",
|
|
718
|
+
"width": 256,
|
|
719
|
+
"height": 256,
|
|
720
|
+
"sha256": "b1d2a8a9d6095d1b67a4eb8e91cd37b922b64c81c1c01adde264df533f9d7fed",
|
|
721
|
+
"sourceSha256": "317038c9e2b94cf506386e157847d03b8c1907e279227988d836594afa93c05c"
|
|
722
|
+
},
|
|
723
|
+
{
|
|
724
|
+
"id": "red-polka-bowtie",
|
|
725
|
+
"file": "red-polka-bowtie.webp",
|
|
726
|
+
"kind": "lower",
|
|
727
|
+
"width": 256,
|
|
728
|
+
"height": 256,
|
|
729
|
+
"sha256": "bc88058969627414a4acda1ff331825762a78a850b1957fc82d90ad07fca4e0e",
|
|
730
|
+
"sourceSha256": "51f57e3d7d2b60c099be5619922e626c98a7b0f829e1be86518c793cb1c822cf"
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"id": "turquoise-bandana",
|
|
734
|
+
"file": "turquoise-bandana.webp",
|
|
735
|
+
"kind": "lower",
|
|
736
|
+
"width": 256,
|
|
737
|
+
"height": 256,
|
|
738
|
+
"sha256": "fba774794d60fcee133eb1f7ec74ed34ef4615ea827aa76248ccabae1c849473",
|
|
739
|
+
"sourceSha256": "054d06da139a0d7b1835b66fc958c77e9ba6a929a21f43a8707b311d1c3c411c"
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"id": "gold-sun-medallion",
|
|
743
|
+
"file": "gold-sun-medallion.webp",
|
|
744
|
+
"kind": "lower",
|
|
745
|
+
"width": 256,
|
|
746
|
+
"height": 256,
|
|
747
|
+
"sha256": "ee7e91dfe71471c0068505a7c35f641f2144ac524a8cfad0c56fa556a7057537",
|
|
748
|
+
"sourceSha256": "4dc5c14918e8ddbd291fe3456fa9c21f6a4cf5ba1cf5e55b4792346cba0432c4"
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
"id": "emerald-necktie",
|
|
752
|
+
"file": "emerald-necktie.webp",
|
|
753
|
+
"kind": "lower",
|
|
754
|
+
"width": 256,
|
|
755
|
+
"height": 256,
|
|
756
|
+
"sha256": "4fc6d500c7390d333df78c246ad3a921eb3fefa56fe070c6ca3502818226ed73",
|
|
757
|
+
"sourceSha256": "483a5b4d82eca9471f68b097c38887c0f36f0c73885e0437fd871078c62cf99d"
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
"id": "leather-bell",
|
|
761
|
+
"file": "leather-bell.webp",
|
|
762
|
+
"kind": "lower",
|
|
763
|
+
"width": 256,
|
|
764
|
+
"height": 256,
|
|
765
|
+
"sha256": "dd4037c6188acea6a10bf6d715b80b397fee4862998d35b71473f8efe0fd3b6e",
|
|
766
|
+
"sourceSha256": "9aaa1763ba6cf94b30a23fe279bde72d03f04b8dd0a947c35aef9187971bfa7b"
|
|
767
|
+
}
|
|
768
|
+
]
|
|
769
|
+
}
|