@shipload/sdk 1.0.0-next.6 → 1.0.0-next.60

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 (155) hide show
  1. package/lib/scan.d.ts +52 -0
  2. package/lib/scan.js +162 -0
  3. package/lib/scan.js.map +1 -0
  4. package/lib/scan.m.js +152 -0
  5. package/lib/scan.m.js.map +1 -0
  6. package/lib/shipload.d.ts +3589 -1363
  7. package/lib/shipload.js +15700 -5454
  8. package/lib/shipload.js.map +1 -1
  9. package/lib/shipload.m.js +15423 -5402
  10. package/lib/shipload.m.js.map +1 -1
  11. package/lib/testing.d.ts +1173 -0
  12. package/lib/testing.js +4947 -0
  13. package/lib/testing.js.map +1 -0
  14. package/lib/testing.m.js +4941 -0
  15. package/lib/testing.m.js.map +1 -0
  16. package/package.json +20 -2
  17. package/src/capabilities/craftable.test.ts +82 -0
  18. package/src/capabilities/craftable.ts +82 -0
  19. package/src/capabilities/crafting.test.ts +35 -0
  20. package/src/capabilities/crafting.ts +34 -7
  21. package/src/capabilities/gathering.test.ts +29 -0
  22. package/src/capabilities/gathering.ts +37 -19
  23. package/src/capabilities/hauling.ts +0 -5
  24. package/src/capabilities/index.ts +0 -1
  25. package/src/capabilities/modules.ts +42 -0
  26. package/src/capabilities/movement.ts +1 -1
  27. package/src/capabilities/storage.ts +16 -1
  28. package/src/contracts/platform.ts +231 -3
  29. package/src/contracts/server.ts +1518 -501
  30. package/src/coordinates/address.ts +88 -0
  31. package/src/coordinates/constants.test.ts +15 -0
  32. package/src/coordinates/constants.ts +23 -0
  33. package/src/coordinates/index.ts +15 -0
  34. package/src/coordinates/memo.test.ts +47 -0
  35. package/src/coordinates/memo.ts +20 -0
  36. package/src/coordinates/permutation.ts +77 -0
  37. package/src/coordinates/regions.ts +48 -0
  38. package/src/coordinates/sectors.ts +115 -0
  39. package/src/data/capabilities.ts +49 -18
  40. package/src/data/capability-formulas.ts +26 -14
  41. package/src/data/catalog.ts +0 -5
  42. package/src/data/colors.ts +13 -47
  43. package/src/data/entities.json +379 -14
  44. package/src/data/item-ids.ts +48 -12
  45. package/src/data/items.json +301 -74
  46. package/src/data/kind-registry.json +195 -0
  47. package/src/data/kind-registry.ts +182 -0
  48. package/src/data/metadata.ts +277 -48
  49. package/src/data/recipes-runtime.ts +6 -23
  50. package/src/data/recipes.json +2074 -173
  51. package/src/derivation/build-methods.test.ts +13 -0
  52. package/src/derivation/build-methods.ts +48 -0
  53. package/src/derivation/capabilities.test.ts +348 -0
  54. package/src/derivation/capabilities.ts +692 -0
  55. package/src/derivation/capability-mappings.ts +60 -16
  56. package/src/derivation/crafting.test.ts +17 -0
  57. package/src/derivation/crafting.ts +56 -33
  58. package/src/derivation/index.ts +27 -2
  59. package/src/derivation/recipe-usage.test.ts +88 -0
  60. package/src/derivation/recipe-usage.ts +141 -0
  61. package/src/derivation/reserve-regen.ts +34 -0
  62. package/src/derivation/resources.ts +9 -1
  63. package/src/derivation/rollups.test.ts +55 -0
  64. package/src/derivation/rollups.ts +72 -0
  65. package/src/derivation/stars.test.ts +67 -0
  66. package/src/derivation/stars.ts +25 -0
  67. package/src/derivation/stat-scaling.ts +12 -0
  68. package/src/derivation/stats.ts +6 -6
  69. package/src/derivation/stratum.ts +26 -22
  70. package/src/derivation/tiers.ts +40 -7
  71. package/src/derivation/upgrades.ts +14 -0
  72. package/src/derivation/wormhole.ts +154 -0
  73. package/src/entities/entity.ts +102 -0
  74. package/src/entities/gamestate.ts +3 -28
  75. package/src/entities/makers.ts +141 -135
  76. package/src/entities/slot-multiplier.ts +43 -0
  77. package/src/errors.ts +12 -16
  78. package/src/format.ts +26 -4
  79. package/src/index-module.ts +333 -35
  80. package/src/managers/actions.ts +668 -103
  81. package/src/managers/base.ts +6 -2
  82. package/src/managers/cluster.test.ts +39 -0
  83. package/src/managers/cluster.ts +53 -0
  84. package/src/managers/construction-types.ts +80 -0
  85. package/src/managers/construction.ts +443 -0
  86. package/src/managers/context.ts +29 -1
  87. package/src/managers/coordinates.ts +14 -0
  88. package/src/managers/entities.ts +27 -66
  89. package/src/managers/epochs.ts +40 -0
  90. package/src/managers/index.ts +20 -1
  91. package/src/managers/locations.ts +25 -29
  92. package/src/managers/nft.test.ts +14 -0
  93. package/src/managers/nft.ts +70 -0
  94. package/src/managers/players.ts +25 -0
  95. package/src/managers/plot.ts +122 -0
  96. package/src/nft/atomicassets.abi.json +1342 -0
  97. package/src/nft/atomicassets.ts +237 -0
  98. package/src/nft/atomicdata.ts +130 -0
  99. package/src/nft/buildImmutableData.ts +385 -0
  100. package/src/nft/description.ts +225 -52
  101. package/src/nft/index.ts +3 -0
  102. package/src/planner/index.ts +242 -0
  103. package/src/planner/planner.test.ts +334 -0
  104. package/src/resolution/describe-module.ts +43 -25
  105. package/src/resolution/display-name.ts +38 -10
  106. package/src/resolution/resolve-item.test.ts +48 -0
  107. package/src/resolution/resolve-item.ts +112 -58
  108. package/src/scan/index.ts +244 -0
  109. package/src/scan/scan-wasm.base64.ts +2 -0
  110. package/src/scheduling/accessor.ts +65 -23
  111. package/src/scheduling/availability.test.ts +204 -0
  112. package/src/scheduling/availability.ts +211 -0
  113. package/src/scheduling/cancel.test.ts +542 -0
  114. package/src/scheduling/cancel.ts +254 -0
  115. package/src/scheduling/cluster-stock.test.ts +31 -0
  116. package/src/scheduling/cluster-stock.ts +15 -0
  117. package/src/scheduling/energy.ts +47 -0
  118. package/src/scheduling/idle-resolve.ts +45 -0
  119. package/src/scheduling/jobs.ts +71 -0
  120. package/src/scheduling/lane-core.ts +128 -0
  121. package/src/scheduling/lanes.test.ts +250 -0
  122. package/src/scheduling/lanes.ts +227 -0
  123. package/src/scheduling/projection.ts +257 -133
  124. package/src/scheduling/schedule.test.ts +119 -0
  125. package/src/scheduling/schedule.ts +257 -117
  126. package/src/scheduling/task-cargo.test.ts +44 -0
  127. package/src/scheduling/task-cargo.ts +46 -0
  128. package/src/scheduling/unwrap.test.ts +86 -0
  129. package/src/scheduling/unwrap.ts +190 -0
  130. package/src/shipload.ts +26 -1
  131. package/src/subscriptions/manager.cluster.test.ts +51 -0
  132. package/src/subscriptions/manager.ts +245 -172
  133. package/src/subscriptions/mappers.ts +5 -8
  134. package/src/subscriptions/types.ts +28 -3
  135. package/src/testing/catalog-hash.ts +19 -0
  136. package/src/testing/index.ts +2 -0
  137. package/src/testing/projection-parity.ts +167 -0
  138. package/src/travel/reach.ts +21 -0
  139. package/src/travel/route-planner.ts +288 -0
  140. package/src/travel/route-simulator.ts +170 -0
  141. package/src/travel/travel.ts +188 -122
  142. package/src/types/capabilities.ts +37 -8
  143. package/src/types/entity.ts +3 -3
  144. package/src/types/index.ts +0 -1
  145. package/src/types.ts +51 -16
  146. package/src/utils/cargo.test.ts +14 -0
  147. package/src/utils/cargo.ts +29 -0
  148. package/src/utils/display-name.ts +70 -0
  149. package/src/utils/system.ts +15 -16
  150. package/src/capabilities/loading.ts +0 -8
  151. package/src/entities/container.ts +0 -123
  152. package/src/entities/ship-deploy.ts +0 -295
  153. package/src/entities/ship.ts +0 -221
  154. package/src/entities/warehouse.ts +0 -127
  155. package/src/types/entity-traits.ts +0 -69
@@ -1,12 +1,11 @@
1
1
  [
2
2
  {
3
3
  "outputItemId": 10001,
4
- "outputMass": 50000,
4
+ "outputMass": 4000,
5
5
  "inputs": [
6
6
  {
7
- "category": "ore",
8
- "tier": 1,
9
- "quantity": 15
7
+ "itemId": 101,
8
+ "quantity": 10
10
9
  }
11
10
  ],
12
11
  "statSlots": [
@@ -25,23 +24,29 @@
25
24
  "statIndex": 2
26
25
  }
27
26
  ]
27
+ },
28
+ {
29
+ "sources": [
30
+ {
31
+ "inputIndex": 0,
32
+ "statIndex": 1
33
+ }
34
+ ]
28
35
  }
29
36
  ],
30
37
  "blendWeights": []
31
38
  },
32
39
  {
33
40
  "outputItemId": 10002,
34
- "outputMass": 30000,
41
+ "outputMass": 4000,
35
42
  "inputs": [
36
43
  {
37
- "category": "regolith",
38
- "tier": 1,
39
- "quantity": 10
44
+ "itemId": 401,
45
+ "quantity": 5
40
46
  },
41
47
  {
42
- "category": "biomass",
43
- "tier": 1,
44
- "quantity": 20
48
+ "itemId": 501,
49
+ "quantity": 5
45
50
  }
46
51
  ],
47
52
  "statSlots": [
@@ -53,6 +58,22 @@
53
58
  }
54
59
  ]
55
60
  },
61
+ {
62
+ "sources": [
63
+ {
64
+ "inputIndex": 0,
65
+ "statIndex": 0
66
+ }
67
+ ]
68
+ },
69
+ {
70
+ "sources": [
71
+ {
72
+ "inputIndex": 0,
73
+ "statIndex": 2
74
+ }
75
+ ]
76
+ },
56
77
  {
57
78
  "sources": [
58
79
  {
@@ -66,12 +87,11 @@
66
87
  },
67
88
  {
68
89
  "outputItemId": 10003,
69
- "outputMass": 50000,
90
+ "outputMass": 4000,
70
91
  "inputs": [
71
92
  {
72
- "category": "gas",
73
- "tier": 1,
74
- "quantity": 32
93
+ "itemId": 301,
94
+ "quantity": 10
75
95
  }
76
96
  ],
77
97
  "statSlots": [
@@ -90,18 +110,29 @@
90
110
  "statIndex": 2
91
111
  }
92
112
  ]
113
+ },
114
+ {
115
+ "sources": [
116
+ {
117
+ "inputIndex": 0,
118
+ "statIndex": 1
119
+ }
120
+ ]
93
121
  }
94
122
  ],
95
123
  "blendWeights": []
96
124
  },
97
125
  {
98
126
  "outputItemId": 10004,
99
- "outputMass": 30000,
127
+ "outputMass": 4000,
100
128
  "inputs": [
101
129
  {
102
- "category": "regolith",
103
- "tier": 1,
104
- "quantity": 20
130
+ "itemId": 201,
131
+ "quantity": 5
132
+ },
133
+ {
134
+ "itemId": 101,
135
+ "quantity": 5
105
136
  }
106
137
  ],
107
138
  "statSlots": [
@@ -109,7 +140,7 @@
109
140
  "sources": [
110
141
  {
111
142
  "inputIndex": 0,
112
- "statIndex": 0
143
+ "statIndex": 1
113
144
  }
114
145
  ]
115
146
  },
@@ -120,18 +151,29 @@
120
151
  "statIndex": 2
121
152
  }
122
153
  ]
154
+ },
155
+ {
156
+ "sources": [
157
+ {
158
+ "inputIndex": 0,
159
+ "statIndex": 0
160
+ }
161
+ ]
123
162
  }
124
163
  ],
125
164
  "blendWeights": []
126
165
  },
127
166
  {
128
167
  "outputItemId": 10005,
129
- "outputMass": 50000,
168
+ "outputMass": 4000,
130
169
  "inputs": [
131
170
  {
132
- "category": "ore",
133
- "tier": 1,
134
- "quantity": 15
171
+ "itemId": 101,
172
+ "quantity": 5
173
+ },
174
+ {
175
+ "itemId": 301,
176
+ "quantity": 5
135
177
  }
136
178
  ],
137
179
  "statSlots": [
@@ -150,17 +192,24 @@
150
192
  "statIndex": 1
151
193
  }
152
194
  ]
195
+ },
196
+ {
197
+ "sources": [
198
+ {
199
+ "inputIndex": 0,
200
+ "statIndex": 2
201
+ }
202
+ ]
153
203
  }
154
204
  ],
155
205
  "blendWeights": []
156
206
  },
157
207
  {
158
208
  "outputItemId": 10006,
159
- "outputMass": 30000,
209
+ "outputMass": 4000,
160
210
  "inputs": [
161
211
  {
162
- "category": "crystal",
163
- "tier": 1,
212
+ "itemId": 201,
164
213
  "quantity": 10
165
214
  }
166
215
  ],
@@ -180,18 +229,25 @@
180
229
  "statIndex": 2
181
230
  }
182
231
  ]
232
+ },
233
+ {
234
+ "sources": [
235
+ {
236
+ "inputIndex": 0,
237
+ "statIndex": 1
238
+ }
239
+ ]
183
240
  }
184
241
  ],
185
242
  "blendWeights": []
186
243
  },
187
244
  {
188
245
  "outputItemId": 10007,
189
- "outputMass": 30000,
246
+ "outputMass": 4000,
190
247
  "inputs": [
191
248
  {
192
- "category": "biomass",
193
- "tier": 1,
194
- "quantity": 32
249
+ "itemId": 501,
250
+ "quantity": 10
195
251
  }
196
252
  ],
197
253
  "statSlots": [
@@ -210,18 +266,25 @@
210
266
  "statIndex": 1
211
267
  }
212
268
  ]
269
+ },
270
+ {
271
+ "sources": [
272
+ {
273
+ "inputIndex": 0,
274
+ "statIndex": 2
275
+ }
276
+ ]
213
277
  }
214
278
  ],
215
279
  "blendWeights": []
216
280
  },
217
281
  {
218
282
  "outputItemId": 10008,
219
- "outputMass": 30000,
283
+ "outputMass": 4000,
220
284
  "inputs": [
221
285
  {
222
- "category": "regolith",
223
- "tier": 1,
224
- "quantity": 20
286
+ "itemId": 401,
287
+ "quantity": 10
225
288
  }
226
289
  ],
227
290
  "statSlots": [
@@ -246,12 +309,15 @@
246
309
  },
247
310
  {
248
311
  "outputItemId": 10009,
249
- "outputMass": 50000,
312
+ "outputMass": 4000,
250
313
  "inputs": [
251
314
  {
252
- "category": "gas",
253
- "tier": 1,
254
- "quantity": 32
315
+ "itemId": 301,
316
+ "quantity": 5
317
+ },
318
+ {
319
+ "itemId": 401,
320
+ "quantity": 5
255
321
  }
256
322
  ],
257
323
  "statSlots": [
@@ -270,21 +336,48 @@
270
336
  "statIndex": 2
271
337
  }
272
338
  ]
339
+ },
340
+ {
341
+ "sources": [
342
+ {
343
+ "inputIndex": 1,
344
+ "statIndex": 2
345
+ }
346
+ ]
347
+ },
348
+ {
349
+ "sources": [
350
+ {
351
+ "inputIndex": 1,
352
+ "statIndex": 0
353
+ }
354
+ ]
273
355
  }
274
356
  ],
275
357
  "blendWeights": []
276
358
  },
277
359
  {
278
360
  "outputItemId": 10010,
279
- "outputMass": 40000,
361
+ "outputMass": 4000,
280
362
  "inputs": [
281
363
  {
282
- "category": "crystal",
283
- "tier": 1,
284
- "quantity": 25
364
+ "itemId": 501,
365
+ "quantity": 5
366
+ },
367
+ {
368
+ "itemId": 201,
369
+ "quantity": 5
285
370
  }
286
371
  ],
287
372
  "statSlots": [
373
+ {
374
+ "sources": [
375
+ {
376
+ "inputIndex": 0,
377
+ "statIndex": 2
378
+ }
379
+ ]
380
+ },
288
381
  {
289
382
  "sources": [
290
383
  {
@@ -306,11 +399,11 @@
306
399
  },
307
400
  {
308
401
  "outputItemId": 10100,
309
- "outputMass": 150000,
402
+ "outputMass": 960000,
310
403
  "inputs": [
311
404
  {
312
405
  "itemId": 10003,
313
- "quantity": 6
406
+ "quantity": 600
314
407
  }
315
408
  ],
316
409
  "statSlots": [
@@ -319,6 +412,10 @@
319
412
  {
320
413
  "inputIndex": 0,
321
414
  "statIndex": 0
415
+ },
416
+ {
417
+ "inputIndex": 0,
418
+ "statIndex": 2
322
419
  }
323
420
  ]
324
421
  },
@@ -331,15 +428,17 @@
331
428
  ]
332
429
  }
333
430
  ],
334
- "blendWeights": []
431
+ "blendWeights": [
432
+ 1
433
+ ]
335
434
  },
336
435
  {
337
436
  "outputItemId": 10101,
338
- "outputMass": 75000,
437
+ "outputMass": 960000,
339
438
  "inputs": [
340
439
  {
341
440
  "itemId": 10004,
342
- "quantity": 5
441
+ "quantity": 600
343
442
  }
344
443
  ],
345
444
  "statSlots": [
@@ -348,6 +447,10 @@
348
447
  {
349
448
  "inputIndex": 0,
350
449
  "statIndex": 0
450
+ },
451
+ {
452
+ "inputIndex": 0,
453
+ "statIndex": 2
351
454
  }
352
455
  ]
353
456
  },
@@ -360,19 +463,21 @@
360
463
  ]
361
464
  }
362
465
  ],
363
- "blendWeights": []
466
+ "blendWeights": [
467
+ 1
468
+ ]
364
469
  },
365
470
  {
366
471
  "outputItemId": 10102,
367
- "outputMass": 145000,
472
+ "outputMass": 960000,
368
473
  "inputs": [
369
474
  {
370
475
  "itemId": 10005,
371
- "quantity": 4
476
+ "quantity": 300
372
477
  },
373
478
  {
374
- "itemId": 10006,
375
- "quantity": 3
479
+ "itemId": 10002,
480
+ "quantity": 300
376
481
  }
377
482
  ],
378
483
  "statSlots": [
@@ -381,25 +486,22 @@
381
486
  {
382
487
  "inputIndex": 0,
383
488
  "statIndex": 0
384
- }
385
- ]
386
- },
387
- {
388
- "sources": [
489
+ },
389
490
  {
390
491
  "inputIndex": 0,
391
- "statIndex": 1
492
+ "statIndex": 2
392
493
  }
393
494
  ]
394
495
  },
395
- {
396
- "sources": []
397
- },
398
496
  {
399
497
  "sources": [
400
498
  {
401
499
  "inputIndex": 1,
402
500
  "statIndex": 0
501
+ },
502
+ {
503
+ "inputIndex": 0,
504
+ "statIndex": 1
403
505
  }
404
506
  ]
405
507
  },
@@ -407,31 +509,30 @@
407
509
  "sources": [
408
510
  {
409
511
  "inputIndex": 1,
410
- "statIndex": 1
512
+ "statIndex": 3
411
513
  }
412
514
  ]
413
515
  }
414
516
  ],
415
- "blendWeights": []
517
+ "blendWeights": [
518
+ 1,
519
+ 1
520
+ ]
416
521
  },
417
522
  {
418
523
  "outputItemId": 10103,
419
- "outputMass": 90000,
524
+ "outputMass": 960000,
420
525
  "inputs": [
421
- {
422
- "itemId": 10002,
423
- "quantity": 3
424
- },
425
526
  {
426
527
  "itemId": 10007,
427
- "quantity": 3
528
+ "quantity": 600
428
529
  }
429
530
  ],
430
531
  "statSlots": [
431
532
  {
432
533
  "sources": [
433
534
  {
434
- "inputIndex": 1,
535
+ "inputIndex": 0,
435
536
  "statIndex": 1
436
537
  }
437
538
  ]
@@ -439,58 +540,71 @@
439
540
  {
440
541
  "sources": [
441
542
  {
442
- "inputIndex": 1,
543
+ "inputIndex": 0,
443
544
  "statIndex": 0
545
+ },
546
+ {
547
+ "inputIndex": 0,
548
+ "statIndex": 2
444
549
  }
445
550
  ]
446
551
  }
447
552
  ],
448
- "blendWeights": []
553
+ "blendWeights": [
554
+ 1
555
+ ]
449
556
  },
450
557
  {
451
558
  "outputItemId": 10104,
452
- "outputMass": 120000,
559
+ "outputMass": 960000,
453
560
  "inputs": [
454
561
  {
455
- "itemId": 10008,
456
- "quantity": 3
562
+ "itemId": 10009,
563
+ "quantity": 300
457
564
  },
458
565
  {
459
- "itemId": 10009,
460
- "quantity": 3
566
+ "itemId": 10006,
567
+ "quantity": 300
461
568
  }
462
569
  ],
463
570
  "statSlots": [
464
571
  {
465
572
  "sources": [
466
573
  {
467
- "inputIndex": 1,
468
- "statIndex": 0
574
+ "inputIndex": 0,
575
+ "statIndex": 2
576
+ },
577
+ {
578
+ "inputIndex": 0,
579
+ "statIndex": 3
469
580
  }
470
581
  ]
471
582
  },
472
583
  {
473
584
  "sources": [
474
585
  {
475
- "inputIndex": 0,
476
- "statIndex": 1
586
+ "inputIndex": 1,
587
+ "statIndex": 0
477
588
  }
478
589
  ]
479
590
  }
480
591
  ],
481
- "blendWeights": []
592
+ "blendWeights": [
593
+ 1,
594
+ 1
595
+ ]
482
596
  },
483
597
  {
484
598
  "outputItemId": 10105,
485
- "outputMass": 100000,
599
+ "outputMass": 960000,
486
600
  "inputs": [
487
601
  {
488
602
  "itemId": 10001,
489
- "quantity": 8
603
+ "quantity": 300
490
604
  },
491
605
  {
492
606
  "itemId": 10002,
493
- "quantity": 4
607
+ "quantity": 300
494
608
  }
495
609
  ],
496
610
  "statSlots": [
@@ -531,20 +645,24 @@
531
645
  },
532
646
  {
533
647
  "outputItemId": 10106,
534
- "outputMass": 120000,
648
+ "outputMass": 960000,
535
649
  "inputs": [
536
650
  {
537
651
  "itemId": 10004,
538
- "quantity": 3
652
+ "quantity": 300
539
653
  },
540
654
  {
541
655
  "itemId": 10010,
542
- "quantity": 3
656
+ "quantity": 300
543
657
  }
544
658
  ],
545
659
  "statSlots": [
546
660
  {
547
661
  "sources": [
662
+ {
663
+ "inputIndex": 0,
664
+ "statIndex": 0
665
+ },
548
666
  {
549
667
  "inputIndex": 0,
550
668
  "statIndex": 1
@@ -555,7 +673,7 @@
555
673
  "sources": [
556
674
  {
557
675
  "inputIndex": 1,
558
- "statIndex": 0
676
+ "statIndex": 1
559
677
  }
560
678
  ]
561
679
  },
@@ -563,27 +681,27 @@
563
681
  "sources": [
564
682
  {
565
683
  "inputIndex": 0,
566
- "statIndex": 0
684
+ "statIndex": 2
567
685
  }
568
686
  ]
569
- },
570
- {
571
- "sources": []
572
687
  }
573
688
  ],
574
- "blendWeights": []
689
+ "blendWeights": [
690
+ 1,
691
+ 1
692
+ ]
575
693
  },
576
694
  {
577
695
  "outputItemId": 10107,
578
- "outputMass": 180000,
696
+ "outputMass": 960000,
579
697
  "inputs": [
580
698
  {
581
- "itemId": 10010,
582
- "quantity": 6
699
+ "itemId": 10004,
700
+ "quantity": 300
583
701
  },
584
702
  {
585
703
  "itemId": 10009,
586
- "quantity": 4
704
+ "quantity": 300
587
705
  }
588
706
  ],
589
707
  "statSlots": [
@@ -594,8 +712,8 @@
594
712
  "statIndex": 1
595
713
  },
596
714
  {
597
- "inputIndex": 1,
598
- "statIndex": 1
715
+ "inputIndex": 0,
716
+ "statIndex": 2
599
717
  }
600
718
  ]
601
719
  }
@@ -606,16 +724,16 @@
606
724
  ]
607
725
  },
608
726
  {
609
- "outputItemId": 10200,
610
- "outputMass": 80000,
727
+ "outputItemId": 10108,
728
+ "outputMass": 960000,
611
729
  "inputs": [
612
730
  {
613
- "itemId": 10001,
614
- "quantity": 6
731
+ "itemId": 10003,
732
+ "quantity": 300
615
733
  },
616
734
  {
617
- "itemId": 10002,
618
- "quantity": 2
735
+ "itemId": 10007,
736
+ "quantity": 300
619
737
  }
620
738
  ],
621
739
  "statSlots": [
@@ -655,16 +773,16 @@
655
773
  "blendWeights": []
656
774
  },
657
775
  {
658
- "outputItemId": 10201,
659
- "outputMass": 100000,
776
+ "outputItemId": 10110,
777
+ "outputMass": 960000,
660
778
  "inputs": [
661
779
  {
662
- "itemId": 10001,
663
- "quantity": 8
780
+ "itemId": 10006,
781
+ "quantity": 300
664
782
  },
665
783
  {
666
- "itemId": 10002,
667
- "quantity": 4
784
+ "itemId": 10008,
785
+ "quantity": 300
668
786
  }
669
787
  ],
670
788
  "statSlots": [
@@ -672,20 +790,8 @@
672
790
  "sources": [
673
791
  {
674
792
  "inputIndex": 0,
675
- "statIndex": 0
676
- }
677
- ]
678
- },
679
- {
680
- "sources": [
681
- {
682
- "inputIndex": 0,
683
- "statIndex": 1
684
- }
685
- ]
686
- },
687
- {
688
- "sources": [
793
+ "statIndex": 2
794
+ },
689
795
  {
690
796
  "inputIndex": 1,
691
797
  "statIndex": 0
@@ -701,19 +807,22 @@
701
807
  ]
702
808
  }
703
809
  ],
704
- "blendWeights": []
810
+ "blendWeights": [
811
+ 1,
812
+ 1
813
+ ]
705
814
  },
706
815
  {
707
- "outputItemId": 10202,
708
- "outputMass": 1300000,
816
+ "outputItemId": 10200,
817
+ "outputMass": 1900000,
709
818
  "inputs": [
710
819
  {
711
820
  "itemId": 10001,
712
- "quantity": 20
821
+ "quantity": 600
713
822
  },
714
823
  {
715
- "itemId": 10002,
716
- "quantity": 10
824
+ "itemId": 10008,
825
+ "quantity": 600
717
826
  }
718
827
  ],
719
828
  "statSlots": [
@@ -753,17 +862,16 @@
753
862
  "blendWeights": []
754
863
  },
755
864
  {
756
- "outputItemId": 20001,
757
- "outputMass": 50000,
865
+ "outputItemId": 10202,
866
+ "outputMass": 3200000,
758
867
  "inputs": [
759
868
  {
760
869
  "itemId": 10001,
761
- "quantity": 2
870
+ "quantity": 1000
762
871
  },
763
872
  {
764
- "category": "ore",
765
- "tier": 2,
766
- "quantity": 15
873
+ "itemId": 10008,
874
+ "quantity": 1000
767
875
  }
768
876
  ],
769
877
  "statSlots": [
@@ -772,10 +880,6 @@
772
880
  {
773
881
  "inputIndex": 0,
774
882
  "statIndex": 0
775
- },
776
- {
777
- "inputIndex": 1,
778
- "statIndex": 0
779
883
  }
780
884
  ]
781
885
  },
@@ -784,36 +888,1534 @@
784
888
  {
785
889
  "inputIndex": 0,
786
890
  "statIndex": 1
787
- },
891
+ }
892
+ ]
893
+ },
894
+ {
895
+ "sources": [
896
+ {
897
+ "inputIndex": 1,
898
+ "statIndex": 0
899
+ }
900
+ ]
901
+ },
902
+ {
903
+ "sources": [
904
+ {
905
+ "inputIndex": 1,
906
+ "statIndex": 1
907
+ }
908
+ ]
909
+ }
910
+ ],
911
+ "blendWeights": []
912
+ },
913
+ {
914
+ "outputItemId": 10203,
915
+ "outputMass": 1900000,
916
+ "inputs": [
917
+ {
918
+ "itemId": 10008,
919
+ "quantity": 600
920
+ },
921
+ {
922
+ "itemId": 10006,
923
+ "quantity": 600
924
+ }
925
+ ],
926
+ "statSlots": [
927
+ {
928
+ "sources": []
929
+ },
930
+ {
931
+ "sources": [
932
+ {
933
+ "inputIndex": 0,
934
+ "statIndex": 1
935
+ }
936
+ ]
937
+ },
938
+ {
939
+ "sources": [
940
+ {
941
+ "inputIndex": 0,
942
+ "statIndex": 0
943
+ }
944
+ ]
945
+ },
946
+ {
947
+ "sources": []
948
+ }
949
+ ],
950
+ "blendWeights": []
951
+ },
952
+ {
953
+ "outputItemId": 10204,
954
+ "outputMass": 1900000,
955
+ "inputs": [
956
+ {
957
+ "itemId": 10008,
958
+ "quantity": 600
959
+ },
960
+ {
961
+ "itemId": 10007,
962
+ "quantity": 600
963
+ }
964
+ ],
965
+ "statSlots": [
966
+ {
967
+ "sources": []
968
+ },
969
+ {
970
+ "sources": [
971
+ {
972
+ "inputIndex": 0,
973
+ "statIndex": 1
974
+ }
975
+ ]
976
+ },
977
+ {
978
+ "sources": [
979
+ {
980
+ "inputIndex": 0,
981
+ "statIndex": 0
982
+ }
983
+ ]
984
+ },
985
+ {
986
+ "sources": []
987
+ }
988
+ ],
989
+ "blendWeights": []
990
+ },
991
+ {
992
+ "outputItemId": 10207,
993
+ "outputMass": 2400000,
994
+ "inputs": [
995
+ {
996
+ "itemId": 10005,
997
+ "quantity": 200
998
+ },
999
+ {
1000
+ "itemId": 10010,
1001
+ "quantity": 200
1002
+ }
1003
+ ],
1004
+ "statSlots": [
1005
+ {
1006
+ "sources": []
1007
+ },
1008
+ {
1009
+ "sources": [
1010
+ {
1011
+ "inputIndex": 1,
1012
+ "statIndex": 1
1013
+ }
1014
+ ]
1015
+ }
1016
+ ],
1017
+ "blendWeights": []
1018
+ },
1019
+ {
1020
+ "outputItemId": 10209,
1021
+ "outputMass": 1900000,
1022
+ "inputs": [
1023
+ {
1024
+ "itemId": 10001,
1025
+ "quantity": 600
1026
+ },
1027
+ {
1028
+ "itemId": 10003,
1029
+ "quantity": 600
1030
+ }
1031
+ ],
1032
+ "statSlots": [
1033
+ {
1034
+ "sources": [
1035
+ {
1036
+ "inputIndex": 0,
1037
+ "statIndex": 0
1038
+ }
1039
+ ]
1040
+ },
1041
+ {
1042
+ "sources": [
1043
+ {
1044
+ "inputIndex": 0,
1045
+ "statIndex": 1
1046
+ }
1047
+ ]
1048
+ },
1049
+ {
1050
+ "sources": []
1051
+ },
1052
+ {
1053
+ "sources": []
1054
+ }
1055
+ ],
1056
+ "blendWeights": []
1057
+ },
1058
+ {
1059
+ "outputItemId": 10210,
1060
+ "outputMass": 1600000,
1061
+ "inputs": [
1062
+ {
1063
+ "itemId": 10001,
1064
+ "quantity": 200
1065
+ },
1066
+ {
1067
+ "itemId": 10008,
1068
+ "quantity": 200
1069
+ },
1070
+ {
1071
+ "itemId": 10007,
1072
+ "quantity": 200
1073
+ },
1074
+ {
1075
+ "itemId": 10003,
1076
+ "quantity": 200
1077
+ },
1078
+ {
1079
+ "itemId": 10006,
1080
+ "quantity": 200
1081
+ }
1082
+ ],
1083
+ "statSlots": [
1084
+ {
1085
+ "sources": [
1086
+ {
1087
+ "inputIndex": 0,
1088
+ "statIndex": 0
1089
+ }
1090
+ ]
1091
+ },
1092
+ {
1093
+ "sources": [
1094
+ {
1095
+ "inputIndex": 1,
1096
+ "statIndex": 0
1097
+ }
1098
+ ]
1099
+ },
1100
+ {
1101
+ "sources": [
1102
+ {
1103
+ "inputIndex": 2,
1104
+ "statIndex": 0
1105
+ }
1106
+ ]
1107
+ },
1108
+ {
1109
+ "sources": [
1110
+ {
1111
+ "inputIndex": 3,
1112
+ "statIndex": 0
1113
+ }
1114
+ ]
1115
+ },
1116
+ {
1117
+ "sources": [
1118
+ {
1119
+ "inputIndex": 4,
1120
+ "statIndex": 0
1121
+ }
1122
+ ]
1123
+ }
1124
+ ],
1125
+ "blendWeights": []
1126
+ },
1127
+ {
1128
+ "outputItemId": 10211,
1129
+ "outputMass": 2400000,
1130
+ "inputs": [
1131
+ {
1132
+ "itemId": 10005,
1133
+ "quantity": 100
1134
+ },
1135
+ {
1136
+ "itemId": 10002,
1137
+ "quantity": 100
1138
+ },
1139
+ {
1140
+ "itemId": 10010,
1141
+ "quantity": 100
1142
+ },
1143
+ {
1144
+ "itemId": 10009,
1145
+ "quantity": 100
1146
+ },
1147
+ {
1148
+ "itemId": 10004,
1149
+ "quantity": 100
1150
+ },
1151
+ {
1152
+ "itemId": 10210,
1153
+ "quantity": 1
1154
+ }
1155
+ ],
1156
+ "statSlots": [
1157
+ {
1158
+ "sources": [
1159
+ {
1160
+ "inputIndex": 0,
1161
+ "statIndex": 0
1162
+ },
1163
+ {
1164
+ "inputIndex": 5,
1165
+ "statIndex": 0
1166
+ }
1167
+ ]
1168
+ },
1169
+ {
1170
+ "sources": [
1171
+ {
1172
+ "inputIndex": 1,
1173
+ "statIndex": 0
1174
+ },
1175
+ {
1176
+ "inputIndex": 5,
1177
+ "statIndex": 1
1178
+ }
1179
+ ]
1180
+ },
1181
+ {
1182
+ "sources": [
1183
+ {
1184
+ "inputIndex": 2,
1185
+ "statIndex": 0
1186
+ },
1187
+ {
1188
+ "inputIndex": 5,
1189
+ "statIndex": 2
1190
+ }
1191
+ ]
1192
+ },
1193
+ {
1194
+ "sources": [
1195
+ {
1196
+ "inputIndex": 3,
1197
+ "statIndex": 0
1198
+ },
1199
+ {
1200
+ "inputIndex": 5,
1201
+ "statIndex": 3
1202
+ }
1203
+ ]
1204
+ },
1205
+ {
1206
+ "sources": [
1207
+ {
1208
+ "inputIndex": 4,
1209
+ "statIndex": 0
1210
+ },
1211
+ {
1212
+ "inputIndex": 5,
1213
+ "statIndex": 4
1214
+ }
1215
+ ]
1216
+ }
1217
+ ],
1218
+ "blendWeights": [],
1219
+ "sourceSubclass": 10210
1220
+ },
1221
+ {
1222
+ "outputItemId": 10212,
1223
+ "outputMass": 2400000,
1224
+ "inputs": [
1225
+ {
1226
+ "itemId": 10005,
1227
+ "quantity": 100
1228
+ },
1229
+ {
1230
+ "itemId": 10002,
1231
+ "quantity": 100
1232
+ },
1233
+ {
1234
+ "itemId": 10010,
1235
+ "quantity": 100
1236
+ },
1237
+ {
1238
+ "itemId": 10009,
1239
+ "quantity": 100
1240
+ },
1241
+ {
1242
+ "itemId": 10004,
1243
+ "quantity": 100
1244
+ },
1245
+ {
1246
+ "itemId": 10210,
1247
+ "quantity": 1
1248
+ }
1249
+ ],
1250
+ "statSlots": [
1251
+ {
1252
+ "sources": [
1253
+ {
1254
+ "inputIndex": 0,
1255
+ "statIndex": 0
1256
+ },
1257
+ {
1258
+ "inputIndex": 5,
1259
+ "statIndex": 0
1260
+ }
1261
+ ]
1262
+ },
1263
+ {
1264
+ "sources": [
1265
+ {
1266
+ "inputIndex": 1,
1267
+ "statIndex": 0
1268
+ },
1269
+ {
1270
+ "inputIndex": 5,
1271
+ "statIndex": 1
1272
+ }
1273
+ ]
1274
+ },
1275
+ {
1276
+ "sources": [
1277
+ {
1278
+ "inputIndex": 2,
1279
+ "statIndex": 0
1280
+ },
1281
+ {
1282
+ "inputIndex": 5,
1283
+ "statIndex": 2
1284
+ }
1285
+ ]
1286
+ },
1287
+ {
1288
+ "sources": [
1289
+ {
1290
+ "inputIndex": 3,
1291
+ "statIndex": 0
1292
+ },
1293
+ {
1294
+ "inputIndex": 5,
1295
+ "statIndex": 3
1296
+ }
1297
+ ]
1298
+ },
1299
+ {
1300
+ "sources": [
1301
+ {
1302
+ "inputIndex": 4,
1303
+ "statIndex": 0
1304
+ },
1305
+ {
1306
+ "inputIndex": 5,
1307
+ "statIndex": 4
1308
+ }
1309
+ ]
1310
+ }
1311
+ ],
1312
+ "blendWeights": [],
1313
+ "sourceSubclass": 10210
1314
+ },
1315
+ {
1316
+ "outputItemId": 10213,
1317
+ "outputMass": 2400000,
1318
+ "inputs": [
1319
+ {
1320
+ "itemId": 10005,
1321
+ "quantity": 100
1322
+ },
1323
+ {
1324
+ "itemId": 10002,
1325
+ "quantity": 100
1326
+ },
1327
+ {
1328
+ "itemId": 10010,
1329
+ "quantity": 100
1330
+ },
1331
+ {
1332
+ "itemId": 10009,
1333
+ "quantity": 100
1334
+ },
1335
+ {
1336
+ "itemId": 10004,
1337
+ "quantity": 100
1338
+ },
1339
+ {
1340
+ "itemId": 10210,
1341
+ "quantity": 1
1342
+ }
1343
+ ],
1344
+ "statSlots": [
1345
+ {
1346
+ "sources": [
1347
+ {
1348
+ "inputIndex": 0,
1349
+ "statIndex": 0
1350
+ },
1351
+ {
1352
+ "inputIndex": 5,
1353
+ "statIndex": 0
1354
+ }
1355
+ ]
1356
+ },
1357
+ {
1358
+ "sources": [
1359
+ {
1360
+ "inputIndex": 1,
1361
+ "statIndex": 0
1362
+ },
1363
+ {
1364
+ "inputIndex": 5,
1365
+ "statIndex": 1
1366
+ }
1367
+ ]
1368
+ },
1369
+ {
1370
+ "sources": [
1371
+ {
1372
+ "inputIndex": 2,
1373
+ "statIndex": 0
1374
+ },
1375
+ {
1376
+ "inputIndex": 5,
1377
+ "statIndex": 2
1378
+ }
1379
+ ]
1380
+ },
1381
+ {
1382
+ "sources": [
1383
+ {
1384
+ "inputIndex": 3,
1385
+ "statIndex": 0
1386
+ },
1387
+ {
1388
+ "inputIndex": 5,
1389
+ "statIndex": 3
1390
+ }
1391
+ ]
1392
+ },
1393
+ {
1394
+ "sources": [
1395
+ {
1396
+ "inputIndex": 4,
1397
+ "statIndex": 0
1398
+ },
1399
+ {
1400
+ "inputIndex": 5,
1401
+ "statIndex": 4
1402
+ }
1403
+ ]
1404
+ }
1405
+ ],
1406
+ "blendWeights": [],
1407
+ "sourceSubclass": 10210
1408
+ },
1409
+ {
1410
+ "outputItemId": 10214,
1411
+ "outputMass": 2400000,
1412
+ "inputs": [
1413
+ {
1414
+ "itemId": 10005,
1415
+ "quantity": 100
1416
+ },
1417
+ {
1418
+ "itemId": 10002,
1419
+ "quantity": 100
1420
+ },
1421
+ {
1422
+ "itemId": 10010,
1423
+ "quantity": 100
1424
+ },
1425
+ {
1426
+ "itemId": 10009,
1427
+ "quantity": 100
1428
+ },
1429
+ {
1430
+ "itemId": 10004,
1431
+ "quantity": 100
1432
+ },
1433
+ {
1434
+ "itemId": 10210,
1435
+ "quantity": 1
1436
+ }
1437
+ ],
1438
+ "statSlots": [
1439
+ {
1440
+ "sources": [
1441
+ {
1442
+ "inputIndex": 0,
1443
+ "statIndex": 0
1444
+ },
1445
+ {
1446
+ "inputIndex": 5,
1447
+ "statIndex": 0
1448
+ }
1449
+ ]
1450
+ },
1451
+ {
1452
+ "sources": [
1453
+ {
1454
+ "inputIndex": 1,
1455
+ "statIndex": 0
1456
+ },
1457
+ {
1458
+ "inputIndex": 5,
1459
+ "statIndex": 1
1460
+ }
1461
+ ]
1462
+ },
1463
+ {
1464
+ "sources": [
1465
+ {
1466
+ "inputIndex": 2,
1467
+ "statIndex": 0
1468
+ },
1469
+ {
1470
+ "inputIndex": 5,
1471
+ "statIndex": 2
1472
+ }
1473
+ ]
1474
+ },
1475
+ {
1476
+ "sources": [
1477
+ {
1478
+ "inputIndex": 3,
1479
+ "statIndex": 0
1480
+ },
1481
+ {
1482
+ "inputIndex": 5,
1483
+ "statIndex": 3
1484
+ }
1485
+ ]
1486
+ },
1487
+ {
1488
+ "sources": [
1489
+ {
1490
+ "inputIndex": 4,
1491
+ "statIndex": 0
1492
+ },
1493
+ {
1494
+ "inputIndex": 5,
1495
+ "statIndex": 4
1496
+ }
1497
+ ]
1498
+ }
1499
+ ],
1500
+ "blendWeights": [],
1501
+ "sourceSubclass": 10210
1502
+ },
1503
+ {
1504
+ "outputItemId": 10215,
1505
+ "outputMass": 2400000,
1506
+ "inputs": [
1507
+ {
1508
+ "itemId": 10005,
1509
+ "quantity": 100
1510
+ },
1511
+ {
1512
+ "itemId": 10002,
1513
+ "quantity": 100
1514
+ },
1515
+ {
1516
+ "itemId": 10010,
1517
+ "quantity": 100
1518
+ },
1519
+ {
1520
+ "itemId": 10009,
1521
+ "quantity": 100
1522
+ },
1523
+ {
1524
+ "itemId": 10004,
1525
+ "quantity": 100
1526
+ },
1527
+ {
1528
+ "itemId": 10210,
1529
+ "quantity": 1
1530
+ }
1531
+ ],
1532
+ "statSlots": [
1533
+ {
1534
+ "sources": [
1535
+ {
1536
+ "inputIndex": 0,
1537
+ "statIndex": 0
1538
+ },
1539
+ {
1540
+ "inputIndex": 5,
1541
+ "statIndex": 0
1542
+ }
1543
+ ]
1544
+ },
1545
+ {
1546
+ "sources": [
1547
+ {
1548
+ "inputIndex": 1,
1549
+ "statIndex": 0
1550
+ },
1551
+ {
1552
+ "inputIndex": 5,
1553
+ "statIndex": 1
1554
+ }
1555
+ ]
1556
+ },
1557
+ {
1558
+ "sources": [
1559
+ {
1560
+ "inputIndex": 2,
1561
+ "statIndex": 0
1562
+ },
1563
+ {
1564
+ "inputIndex": 5,
1565
+ "statIndex": 2
1566
+ }
1567
+ ]
1568
+ },
1569
+ {
1570
+ "sources": [
1571
+ {
1572
+ "inputIndex": 3,
1573
+ "statIndex": 0
1574
+ },
1575
+ {
1576
+ "inputIndex": 5,
1577
+ "statIndex": 3
1578
+ }
1579
+ ]
1580
+ },
1581
+ {
1582
+ "sources": [
1583
+ {
1584
+ "inputIndex": 4,
1585
+ "statIndex": 0
1586
+ },
1587
+ {
1588
+ "inputIndex": 5,
1589
+ "statIndex": 4
1590
+ }
1591
+ ]
1592
+ }
1593
+ ],
1594
+ "blendWeights": [],
1595
+ "sourceSubclass": 10210
1596
+ },
1597
+ {
1598
+ "outputItemId": 10218,
1599
+ "outputMass": 2400000,
1600
+ "inputs": [
1601
+ {
1602
+ "itemId": 10005,
1603
+ "quantity": 100
1604
+ },
1605
+ {
1606
+ "itemId": 10002,
1607
+ "quantity": 100
1608
+ },
1609
+ {
1610
+ "itemId": 10010,
1611
+ "quantity": 100
1612
+ },
1613
+ {
1614
+ "itemId": 10009,
1615
+ "quantity": 100
1616
+ },
1617
+ {
1618
+ "itemId": 10004,
1619
+ "quantity": 100
1620
+ },
1621
+ {
1622
+ "itemId": 10210,
1623
+ "quantity": 1
1624
+ }
1625
+ ],
1626
+ "statSlots": [
1627
+ {
1628
+ "sources": [
1629
+ {
1630
+ "inputIndex": 0,
1631
+ "statIndex": 0
1632
+ },
1633
+ {
1634
+ "inputIndex": 5,
1635
+ "statIndex": 0
1636
+ }
1637
+ ]
1638
+ },
1639
+ {
1640
+ "sources": [
1641
+ {
1642
+ "inputIndex": 1,
1643
+ "statIndex": 0
1644
+ },
1645
+ {
1646
+ "inputIndex": 5,
1647
+ "statIndex": 1
1648
+ }
1649
+ ]
1650
+ },
1651
+ {
1652
+ "sources": [
1653
+ {
1654
+ "inputIndex": 2,
1655
+ "statIndex": 0
1656
+ },
1657
+ {
1658
+ "inputIndex": 5,
1659
+ "statIndex": 2
1660
+ }
1661
+ ]
1662
+ },
1663
+ {
1664
+ "sources": [
1665
+ {
1666
+ "inputIndex": 3,
1667
+ "statIndex": 0
1668
+ },
1669
+ {
1670
+ "inputIndex": 5,
1671
+ "statIndex": 3
1672
+ }
1673
+ ]
1674
+ },
1675
+ {
1676
+ "sources": [
1677
+ {
1678
+ "inputIndex": 4,
1679
+ "statIndex": 0
1680
+ },
1681
+ {
1682
+ "inputIndex": 5,
1683
+ "statIndex": 4
1684
+ }
1685
+ ]
1686
+ }
1687
+ ],
1688
+ "blendWeights": [],
1689
+ "sourceSubclass": 10210
1690
+ },
1691
+ {
1692
+ "outputItemId": 20001,
1693
+ "outputMass": 4800,
1694
+ "inputs": [
1695
+ {
1696
+ "itemId": 102,
1697
+ "quantity": 12
1698
+ }
1699
+ ],
1700
+ "statSlots": [
1701
+ {
1702
+ "sources": [
1703
+ {
1704
+ "inputIndex": 0,
1705
+ "statIndex": 0
1706
+ }
1707
+ ]
1708
+ },
1709
+ {
1710
+ "sources": [
1711
+ {
1712
+ "inputIndex": 0,
1713
+ "statIndex": 2
1714
+ }
1715
+ ]
1716
+ },
1717
+ {
1718
+ "sources": [
1719
+ {
1720
+ "inputIndex": 0,
1721
+ "statIndex": 1
1722
+ }
1723
+ ]
1724
+ }
1725
+ ],
1726
+ "blendWeights": []
1727
+ },
1728
+ {
1729
+ "outputItemId": 20002,
1730
+ "outputMass": 4800,
1731
+ "inputs": [
1732
+ {
1733
+ "itemId": 402,
1734
+ "quantity": 6
1735
+ },
1736
+ {
1737
+ "itemId": 502,
1738
+ "quantity": 6
1739
+ }
1740
+ ],
1741
+ "statSlots": [
1742
+ {
1743
+ "sources": [
1744
+ {
1745
+ "inputIndex": 0,
1746
+ "statIndex": 1
1747
+ }
1748
+ ]
1749
+ },
1750
+ {
1751
+ "sources": [
1752
+ {
1753
+ "inputIndex": 0,
1754
+ "statIndex": 0
1755
+ }
1756
+ ]
1757
+ },
1758
+ {
1759
+ "sources": [
1760
+ {
1761
+ "inputIndex": 0,
1762
+ "statIndex": 2
1763
+ }
1764
+ ]
1765
+ },
1766
+ {
1767
+ "sources": [
1768
+ {
1769
+ "inputIndex": 1,
1770
+ "statIndex": 2
1771
+ }
1772
+ ]
1773
+ }
1774
+ ],
1775
+ "blendWeights": []
1776
+ },
1777
+ {
1778
+ "outputItemId": 20003,
1779
+ "outputMass": 4800,
1780
+ "inputs": [
1781
+ {
1782
+ "itemId": 302,
1783
+ "quantity": 12
1784
+ }
1785
+ ],
1786
+ "statSlots": [
1787
+ {
1788
+ "sources": [
1789
+ {
1790
+ "inputIndex": 0,
1791
+ "statIndex": 0
1792
+ }
1793
+ ]
1794
+ },
1795
+ {
1796
+ "sources": [
1797
+ {
1798
+ "inputIndex": 0,
1799
+ "statIndex": 2
1800
+ }
1801
+ ]
1802
+ },
1803
+ {
1804
+ "sources": [
1805
+ {
1806
+ "inputIndex": 0,
1807
+ "statIndex": 1
1808
+ }
1809
+ ]
1810
+ }
1811
+ ],
1812
+ "blendWeights": []
1813
+ },
1814
+ {
1815
+ "outputItemId": 20004,
1816
+ "outputMass": 4800,
1817
+ "inputs": [
1818
+ {
1819
+ "itemId": 202,
1820
+ "quantity": 6
1821
+ },
1822
+ {
1823
+ "itemId": 102,
1824
+ "quantity": 6
1825
+ }
1826
+ ],
1827
+ "statSlots": [
1828
+ {
1829
+ "sources": [
1830
+ {
1831
+ "inputIndex": 0,
1832
+ "statIndex": 1
1833
+ }
1834
+ ]
1835
+ },
1836
+ {
1837
+ "sources": [
1838
+ {
1839
+ "inputIndex": 0,
1840
+ "statIndex": 2
1841
+ }
1842
+ ]
1843
+ },
1844
+ {
1845
+ "sources": [
1846
+ {
1847
+ "inputIndex": 0,
1848
+ "statIndex": 0
1849
+ }
1850
+ ]
1851
+ }
1852
+ ],
1853
+ "blendWeights": []
1854
+ },
1855
+ {
1856
+ "outputItemId": 20005,
1857
+ "outputMass": 4800,
1858
+ "inputs": [
1859
+ {
1860
+ "itemId": 102,
1861
+ "quantity": 6
1862
+ },
1863
+ {
1864
+ "itemId": 302,
1865
+ "quantity": 6
1866
+ }
1867
+ ],
1868
+ "statSlots": [
1869
+ {
1870
+ "sources": [
1871
+ {
1872
+ "inputIndex": 0,
1873
+ "statIndex": 0
1874
+ }
1875
+ ]
1876
+ },
1877
+ {
1878
+ "sources": [
1879
+ {
1880
+ "inputIndex": 0,
1881
+ "statIndex": 1
1882
+ }
1883
+ ]
1884
+ },
1885
+ {
1886
+ "sources": [
1887
+ {
1888
+ "inputIndex": 0,
1889
+ "statIndex": 2
1890
+ }
1891
+ ]
1892
+ }
1893
+ ],
1894
+ "blendWeights": []
1895
+ },
1896
+ {
1897
+ "outputItemId": 20006,
1898
+ "outputMass": 4800,
1899
+ "inputs": [
1900
+ {
1901
+ "itemId": 202,
1902
+ "quantity": 12
1903
+ }
1904
+ ],
1905
+ "statSlots": [
1906
+ {
1907
+ "sources": [
1908
+ {
1909
+ "inputIndex": 0,
1910
+ "statIndex": 0
1911
+ }
1912
+ ]
1913
+ },
1914
+ {
1915
+ "sources": [
1916
+ {
1917
+ "inputIndex": 0,
1918
+ "statIndex": 2
1919
+ }
1920
+ ]
1921
+ },
1922
+ {
1923
+ "sources": [
1924
+ {
1925
+ "inputIndex": 0,
1926
+ "statIndex": 1
1927
+ }
1928
+ ]
1929
+ }
1930
+ ],
1931
+ "blendWeights": []
1932
+ },
1933
+ {
1934
+ "outputItemId": 20007,
1935
+ "outputMass": 4800,
1936
+ "inputs": [
1937
+ {
1938
+ "itemId": 502,
1939
+ "quantity": 12
1940
+ }
1941
+ ],
1942
+ "statSlots": [
1943
+ {
1944
+ "sources": [
1945
+ {
1946
+ "inputIndex": 0,
1947
+ "statIndex": 0
1948
+ }
1949
+ ]
1950
+ },
1951
+ {
1952
+ "sources": [
1953
+ {
1954
+ "inputIndex": 0,
1955
+ "statIndex": 1
1956
+ }
1957
+ ]
1958
+ },
1959
+ {
1960
+ "sources": [
1961
+ {
1962
+ "inputIndex": 0,
1963
+ "statIndex": 2
1964
+ }
1965
+ ]
1966
+ }
1967
+ ],
1968
+ "blendWeights": []
1969
+ },
1970
+ {
1971
+ "outputItemId": 20008,
1972
+ "outputMass": 4800,
1973
+ "inputs": [
1974
+ {
1975
+ "itemId": 402,
1976
+ "quantity": 12
1977
+ }
1978
+ ],
1979
+ "statSlots": [
1980
+ {
1981
+ "sources": [
1982
+ {
1983
+ "inputIndex": 0,
1984
+ "statIndex": 1
1985
+ }
1986
+ ]
1987
+ },
1988
+ {
1989
+ "sources": [
1990
+ {
1991
+ "inputIndex": 0,
1992
+ "statIndex": 2
1993
+ }
1994
+ ]
1995
+ }
1996
+ ],
1997
+ "blendWeights": []
1998
+ },
1999
+ {
2000
+ "outputItemId": 20009,
2001
+ "outputMass": 4800,
2002
+ "inputs": [
2003
+ {
2004
+ "itemId": 302,
2005
+ "quantity": 6
2006
+ },
2007
+ {
2008
+ "itemId": 402,
2009
+ "quantity": 6
2010
+ }
2011
+ ],
2012
+ "statSlots": [
2013
+ {
2014
+ "sources": [
2015
+ {
2016
+ "inputIndex": 0,
2017
+ "statIndex": 1
2018
+ }
2019
+ ]
2020
+ },
2021
+ {
2022
+ "sources": [
2023
+ {
2024
+ "inputIndex": 0,
2025
+ "statIndex": 2
2026
+ }
2027
+ ]
2028
+ },
2029
+ {
2030
+ "sources": [
2031
+ {
2032
+ "inputIndex": 1,
2033
+ "statIndex": 2
2034
+ }
2035
+ ]
2036
+ },
2037
+ {
2038
+ "sources": [
2039
+ {
2040
+ "inputIndex": 1,
2041
+ "statIndex": 0
2042
+ }
2043
+ ]
2044
+ }
2045
+ ],
2046
+ "blendWeights": []
2047
+ },
2048
+ {
2049
+ "outputItemId": 20010,
2050
+ "outputMass": 4800,
2051
+ "inputs": [
2052
+ {
2053
+ "itemId": 502,
2054
+ "quantity": 6
2055
+ },
2056
+ {
2057
+ "itemId": 202,
2058
+ "quantity": 6
2059
+ }
2060
+ ],
2061
+ "statSlots": [
2062
+ {
2063
+ "sources": [
2064
+ {
2065
+ "inputIndex": 0,
2066
+ "statIndex": 2
2067
+ }
2068
+ ]
2069
+ },
2070
+ {
2071
+ "sources": [
2072
+ {
2073
+ "inputIndex": 0,
2074
+ "statIndex": 0
2075
+ }
2076
+ ]
2077
+ },
2078
+ {
2079
+ "sources": [
2080
+ {
2081
+ "inputIndex": 0,
2082
+ "statIndex": 1
2083
+ }
2084
+ ]
2085
+ }
2086
+ ],
2087
+ "blendWeights": []
2088
+ },
2089
+ {
2090
+ "outputItemId": 20100,
2091
+ "outputMass": 1536000,
2092
+ "inputs": [
2093
+ {
2094
+ "itemId": 20003,
2095
+ "quantity": 600
2096
+ },
2097
+ {
2098
+ "itemId": 10100,
2099
+ "quantity": 1
2100
+ }
2101
+ ],
2102
+ "statSlots": [
2103
+ {
2104
+ "sources": [
2105
+ {
2106
+ "inputIndex": 0,
2107
+ "statIndex": 0
2108
+ },
2109
+ {
2110
+ "inputIndex": 1,
2111
+ "statIndex": 0
2112
+ }
2113
+ ]
2114
+ },
2115
+ {
2116
+ "sources": [
2117
+ {
2118
+ "inputIndex": 0,
2119
+ "statIndex": 1
2120
+ },
2121
+ {
2122
+ "inputIndex": 1,
2123
+ "statIndex": 1
2124
+ }
2125
+ ]
2126
+ }
2127
+ ],
2128
+ "blendWeights": []
2129
+ },
2130
+ {
2131
+ "outputItemId": 20101,
2132
+ "outputMass": 1536000,
2133
+ "inputs": [
2134
+ {
2135
+ "itemId": 20004,
2136
+ "quantity": 600
2137
+ },
2138
+ {
2139
+ "itemId": 10101,
2140
+ "quantity": 1
2141
+ }
2142
+ ],
2143
+ "statSlots": [
2144
+ {
2145
+ "sources": [
2146
+ {
2147
+ "inputIndex": 0,
2148
+ "statIndex": 0
2149
+ },
2150
+ {
2151
+ "inputIndex": 1,
2152
+ "statIndex": 0
2153
+ }
2154
+ ]
2155
+ },
2156
+ {
2157
+ "sources": [
2158
+ {
2159
+ "inputIndex": 0,
2160
+ "statIndex": 1
2161
+ },
2162
+ {
2163
+ "inputIndex": 1,
2164
+ "statIndex": 1
2165
+ }
2166
+ ]
2167
+ }
2168
+ ],
2169
+ "blendWeights": []
2170
+ },
2171
+ {
2172
+ "outputItemId": 20102,
2173
+ "outputMass": 1536000,
2174
+ "inputs": [
2175
+ {
2176
+ "itemId": 20005,
2177
+ "quantity": 300
2178
+ },
2179
+ {
2180
+ "itemId": 20002,
2181
+ "quantity": 300
2182
+ },
2183
+ {
2184
+ "itemId": 10102,
2185
+ "quantity": 1
2186
+ }
2187
+ ],
2188
+ "statSlots": [
2189
+ {
2190
+ "sources": [
2191
+ {
2192
+ "inputIndex": 0,
2193
+ "statIndex": 0
2194
+ },
2195
+ {
2196
+ "inputIndex": 2,
2197
+ "statIndex": 0
2198
+ }
2199
+ ]
2200
+ },
2201
+ {
2202
+ "sources": [
2203
+ {
2204
+ "inputIndex": 0,
2205
+ "statIndex": 1
2206
+ },
2207
+ {
2208
+ "inputIndex": 2,
2209
+ "statIndex": 1
2210
+ }
2211
+ ]
2212
+ },
2213
+ {
2214
+ "sources": [
2215
+ {
2216
+ "inputIndex": 1,
2217
+ "statIndex": 3
2218
+ },
2219
+ {
2220
+ "inputIndex": 2,
2221
+ "statIndex": 2
2222
+ }
2223
+ ]
2224
+ }
2225
+ ],
2226
+ "blendWeights": []
2227
+ },
2228
+ {
2229
+ "outputItemId": 20103,
2230
+ "outputMass": 1536000,
2231
+ "inputs": [
2232
+ {
2233
+ "itemId": 20007,
2234
+ "quantity": 600
2235
+ },
2236
+ {
2237
+ "itemId": 10103,
2238
+ "quantity": 1
2239
+ }
2240
+ ],
2241
+ "statSlots": [
2242
+ {
2243
+ "sources": [
2244
+ {
2245
+ "inputIndex": 0,
2246
+ "statIndex": 1
2247
+ },
2248
+ {
2249
+ "inputIndex": 1,
2250
+ "statIndex": 0
2251
+ }
2252
+ ]
2253
+ },
2254
+ {
2255
+ "sources": [
2256
+ {
2257
+ "inputIndex": 0,
2258
+ "statIndex": 0
2259
+ },
2260
+ {
2261
+ "inputIndex": 1,
2262
+ "statIndex": 1
2263
+ }
2264
+ ]
2265
+ }
2266
+ ],
2267
+ "blendWeights": []
2268
+ },
2269
+ {
2270
+ "outputItemId": 20104,
2271
+ "outputMass": 1536000,
2272
+ "inputs": [
2273
+ {
2274
+ "itemId": 20009,
2275
+ "quantity": 300
2276
+ },
2277
+ {
2278
+ "itemId": 20006,
2279
+ "quantity": 300
2280
+ },
2281
+ {
2282
+ "itemId": 10104,
2283
+ "quantity": 1
2284
+ }
2285
+ ],
2286
+ "statSlots": [
2287
+ {
2288
+ "sources": [
2289
+ {
2290
+ "inputIndex": 0,
2291
+ "statIndex": 2
2292
+ },
2293
+ {
2294
+ "inputIndex": 2,
2295
+ "statIndex": 0
2296
+ }
2297
+ ]
2298
+ },
2299
+ {
2300
+ "sources": [
2301
+ {
2302
+ "inputIndex": 1,
2303
+ "statIndex": 0
2304
+ },
2305
+ {
2306
+ "inputIndex": 2,
2307
+ "statIndex": 1
2308
+ }
2309
+ ]
2310
+ }
2311
+ ],
2312
+ "blendWeights": []
2313
+ },
2314
+ {
2315
+ "outputItemId": 20106,
2316
+ "outputMass": 1536000,
2317
+ "inputs": [
2318
+ {
2319
+ "itemId": 20004,
2320
+ "quantity": 300
2321
+ },
2322
+ {
2323
+ "itemId": 20010,
2324
+ "quantity": 300
2325
+ },
2326
+ {
2327
+ "itemId": 10106,
2328
+ "quantity": 1
2329
+ }
2330
+ ],
2331
+ "statSlots": [
2332
+ {
2333
+ "sources": [
2334
+ {
2335
+ "inputIndex": 0,
2336
+ "statIndex": 0
2337
+ },
2338
+ {
2339
+ "inputIndex": 2,
2340
+ "statIndex": 0
2341
+ }
2342
+ ]
2343
+ },
2344
+ {
2345
+ "sources": [
2346
+ {
2347
+ "inputIndex": 1,
2348
+ "statIndex": 1
2349
+ },
2350
+ {
2351
+ "inputIndex": 2,
2352
+ "statIndex": 1
2353
+ }
2354
+ ]
2355
+ },
2356
+ {
2357
+ "sources": [
2358
+ {
2359
+ "inputIndex": 0,
2360
+ "statIndex": 2
2361
+ },
2362
+ {
2363
+ "inputIndex": 2,
2364
+ "statIndex": 2
2365
+ }
2366
+ ]
2367
+ }
2368
+ ],
2369
+ "blendWeights": []
2370
+ },
2371
+ {
2372
+ "outputItemId": 20107,
2373
+ "outputMass": 1536000,
2374
+ "inputs": [
2375
+ {
2376
+ "itemId": 20004,
2377
+ "quantity": 300
2378
+ },
2379
+ {
2380
+ "itemId": 20009,
2381
+ "quantity": 300
2382
+ },
2383
+ {
2384
+ "itemId": 10107,
2385
+ "quantity": 1
2386
+ }
2387
+ ],
2388
+ "statSlots": [
2389
+ {
2390
+ "sources": [
2391
+ {
2392
+ "inputIndex": 0,
2393
+ "statIndex": 1
2394
+ },
788
2395
  {
789
- "inputIndex": 1,
790
- "statIndex": 2
2396
+ "inputIndex": 2,
2397
+ "statIndex": 0
791
2398
  }
792
2399
  ]
793
2400
  }
794
2401
  ],
795
- "blendWeights": [
796
- 1,
797
- 1
798
- ]
2402
+ "blendWeights": []
799
2403
  },
800
2404
  {
801
- "outputItemId": 20002,
802
- "outputMass": 30000,
2405
+ "outputItemId": 20110,
2406
+ "outputMass": 1536000,
803
2407
  "inputs": [
804
2408
  {
805
- "itemId": 10002,
806
- "quantity": 2
2409
+ "itemId": 20006,
2410
+ "quantity": 300
807
2411
  },
808
2412
  {
809
- "category": "regolith",
810
- "tier": 2,
811
- "quantity": 10
2413
+ "itemId": 20008,
2414
+ "quantity": 300
812
2415
  },
813
2416
  {
814
- "category": "biomass",
815
- "tier": 2,
816
- "quantity": 20
2417
+ "itemId": 10110,
2418
+ "quantity": 1
817
2419
  }
818
2420
  ],
819
2421
  "statSlots": [
@@ -821,11 +2423,56 @@
821
2423
  "sources": [
822
2424
  {
823
2425
  "inputIndex": 0,
824
- "statIndex": 0
2426
+ "statIndex": 2
825
2427
  },
2428
+ {
2429
+ "inputIndex": 2,
2430
+ "statIndex": 0
2431
+ }
2432
+ ]
2433
+ },
2434
+ {
2435
+ "sources": [
826
2436
  {
827
2437
  "inputIndex": 1,
828
2438
  "statIndex": 1
2439
+ },
2440
+ {
2441
+ "inputIndex": 2,
2442
+ "statIndex": 1
2443
+ }
2444
+ ]
2445
+ }
2446
+ ],
2447
+ "blendWeights": []
2448
+ },
2449
+ {
2450
+ "outputItemId": 20200,
2451
+ "outputMass": 3100000,
2452
+ "inputs": [
2453
+ {
2454
+ "itemId": 20001,
2455
+ "quantity": 600
2456
+ },
2457
+ {
2458
+ "itemId": 20008,
2459
+ "quantity": 600
2460
+ },
2461
+ {
2462
+ "itemId": 10200,
2463
+ "quantity": 1
2464
+ }
2465
+ ],
2466
+ "statSlots": [
2467
+ {
2468
+ "sources": [
2469
+ {
2470
+ "inputIndex": 0,
2471
+ "statIndex": 0
2472
+ },
2473
+ {
2474
+ "inputIndex": 2,
2475
+ "statIndex": 0
829
2476
  }
830
2477
  ]
831
2478
  },
@@ -835,30 +2482,67 @@
835
2482
  "inputIndex": 0,
836
2483
  "statIndex": 1
837
2484
  },
2485
+ {
2486
+ "inputIndex": 2,
2487
+ "statIndex": 1
2488
+ }
2489
+ ]
2490
+ },
2491
+ {
2492
+ "sources": [
2493
+ {
2494
+ "inputIndex": 1,
2495
+ "statIndex": 0
2496
+ },
838
2497
  {
839
2498
  "inputIndex": 2,
840
2499
  "statIndex": 2
841
2500
  }
842
2501
  ]
2502
+ },
2503
+ {
2504
+ "sources": [
2505
+ {
2506
+ "inputIndex": 1,
2507
+ "statIndex": 1
2508
+ },
2509
+ {
2510
+ "inputIndex": 2,
2511
+ "statIndex": 3
2512
+ }
2513
+ ]
843
2514
  }
844
2515
  ],
845
- "blendWeights": [
846
- 1,
847
- 1,
848
- 1
849
- ]
2516
+ "blendWeights": [],
2517
+ "sourceSubclass": 10200
850
2518
  },
851
2519
  {
852
- "outputItemId": 20200,
853
- "outputMass": 80000,
2520
+ "outputItemId": 20212,
2521
+ "outputMass": 4320000,
854
2522
  "inputs": [
855
2523
  {
856
2524
  "itemId": 20001,
857
- "quantity": 6
2525
+ "quantity": 200
858
2526
  },
859
2527
  {
860
- "itemId": 20002,
861
- "quantity": 2
2528
+ "itemId": 20008,
2529
+ "quantity": 200
2530
+ },
2531
+ {
2532
+ "itemId": 20007,
2533
+ "quantity": 200
2534
+ },
2535
+ {
2536
+ "itemId": 20003,
2537
+ "quantity": 200
2538
+ },
2539
+ {
2540
+ "itemId": 20006,
2541
+ "quantity": 200
2542
+ },
2543
+ {
2544
+ "itemId": 10211,
2545
+ "quantity": 1
862
2546
  }
863
2547
  ],
864
2548
  "statSlots": [
@@ -867,22 +2551,198 @@
867
2551
  {
868
2552
  "inputIndex": 0,
869
2553
  "statIndex": 0
2554
+ },
2555
+ {
2556
+ "inputIndex": 5,
2557
+ "statIndex": 0
870
2558
  }
871
2559
  ]
872
2560
  },
873
2561
  {
874
2562
  "sources": [
875
2563
  {
876
- "inputIndex": 0,
2564
+ "inputIndex": 1,
2565
+ "statIndex": 0
2566
+ },
2567
+ {
2568
+ "inputIndex": 5,
877
2569
  "statIndex": 1
878
2570
  }
879
2571
  ]
880
2572
  },
2573
+ {
2574
+ "sources": [
2575
+ {
2576
+ "inputIndex": 2,
2577
+ "statIndex": 0
2578
+ },
2579
+ {
2580
+ "inputIndex": 5,
2581
+ "statIndex": 2
2582
+ }
2583
+ ]
2584
+ },
2585
+ {
2586
+ "sources": [
2587
+ {
2588
+ "inputIndex": 3,
2589
+ "statIndex": 0
2590
+ },
2591
+ {
2592
+ "inputIndex": 5,
2593
+ "statIndex": 3
2594
+ }
2595
+ ]
2596
+ },
2597
+ {
2598
+ "sources": [
2599
+ {
2600
+ "inputIndex": 4,
2601
+ "statIndex": 0
2602
+ },
2603
+ {
2604
+ "inputIndex": 5,
2605
+ "statIndex": 4
2606
+ }
2607
+ ]
2608
+ }
2609
+ ],
2610
+ "blendWeights": [],
2611
+ "sourceSubclass": 10211
2612
+ },
2613
+ {
2614
+ "outputItemId": 20213,
2615
+ "outputMass": 5760000,
2616
+ "inputs": [
2617
+ {
2618
+ "itemId": 20005,
2619
+ "quantity": 150
2620
+ },
2621
+ {
2622
+ "itemId": 20002,
2623
+ "quantity": 150
2624
+ },
2625
+ {
2626
+ "itemId": 20010,
2627
+ "quantity": 150
2628
+ },
2629
+ {
2630
+ "itemId": 20009,
2631
+ "quantity": 150
2632
+ },
2633
+ {
2634
+ "itemId": 20004,
2635
+ "quantity": 150
2636
+ },
2637
+ {
2638
+ "itemId": 20212,
2639
+ "quantity": 1
2640
+ }
2641
+ ],
2642
+ "statSlots": [
2643
+ {
2644
+ "sources": [
2645
+ {
2646
+ "inputIndex": 0,
2647
+ "statIndex": 0
2648
+ },
2649
+ {
2650
+ "inputIndex": 5,
2651
+ "statIndex": 0
2652
+ }
2653
+ ]
2654
+ },
881
2655
  {
882
2656
  "sources": [
883
2657
  {
884
2658
  "inputIndex": 1,
885
2659
  "statIndex": 0
2660
+ },
2661
+ {
2662
+ "inputIndex": 5,
2663
+ "statIndex": 1
2664
+ }
2665
+ ]
2666
+ },
2667
+ {
2668
+ "sources": [
2669
+ {
2670
+ "inputIndex": 2,
2671
+ "statIndex": 0
2672
+ },
2673
+ {
2674
+ "inputIndex": 5,
2675
+ "statIndex": 2
2676
+ }
2677
+ ]
2678
+ },
2679
+ {
2680
+ "sources": [
2681
+ {
2682
+ "inputIndex": 3,
2683
+ "statIndex": 0
2684
+ },
2685
+ {
2686
+ "inputIndex": 5,
2687
+ "statIndex": 3
2688
+ }
2689
+ ]
2690
+ },
2691
+ {
2692
+ "sources": [
2693
+ {
2694
+ "inputIndex": 4,
2695
+ "statIndex": 0
2696
+ },
2697
+ {
2698
+ "inputIndex": 5,
2699
+ "statIndex": 4
2700
+ }
2701
+ ]
2702
+ }
2703
+ ],
2704
+ "blendWeights": [],
2705
+ "sourceSubclass": 20212
2706
+ },
2707
+ {
2708
+ "outputItemId": 20214,
2709
+ "outputMass": 5760000,
2710
+ "inputs": [
2711
+ {
2712
+ "itemId": 20005,
2713
+ "quantity": 150
2714
+ },
2715
+ {
2716
+ "itemId": 20002,
2717
+ "quantity": 150
2718
+ },
2719
+ {
2720
+ "itemId": 20010,
2721
+ "quantity": 150
2722
+ },
2723
+ {
2724
+ "itemId": 20009,
2725
+ "quantity": 150
2726
+ },
2727
+ {
2728
+ "itemId": 20004,
2729
+ "quantity": 150
2730
+ },
2731
+ {
2732
+ "itemId": 20212,
2733
+ "quantity": 1
2734
+ }
2735
+ ],
2736
+ "statSlots": [
2737
+ {
2738
+ "sources": [
2739
+ {
2740
+ "inputIndex": 0,
2741
+ "statIndex": 0
2742
+ },
2743
+ {
2744
+ "inputIndex": 5,
2745
+ "statIndex": 0
886
2746
  }
887
2747
  ]
888
2748
  },
@@ -890,11 +2750,52 @@
890
2750
  "sources": [
891
2751
  {
892
2752
  "inputIndex": 1,
2753
+ "statIndex": 0
2754
+ },
2755
+ {
2756
+ "inputIndex": 5,
893
2757
  "statIndex": 1
894
2758
  }
895
2759
  ]
2760
+ },
2761
+ {
2762
+ "sources": [
2763
+ {
2764
+ "inputIndex": 2,
2765
+ "statIndex": 0
2766
+ },
2767
+ {
2768
+ "inputIndex": 5,
2769
+ "statIndex": 2
2770
+ }
2771
+ ]
2772
+ },
2773
+ {
2774
+ "sources": [
2775
+ {
2776
+ "inputIndex": 3,
2777
+ "statIndex": 0
2778
+ },
2779
+ {
2780
+ "inputIndex": 5,
2781
+ "statIndex": 3
2782
+ }
2783
+ ]
2784
+ },
2785
+ {
2786
+ "sources": [
2787
+ {
2788
+ "inputIndex": 4,
2789
+ "statIndex": 0
2790
+ },
2791
+ {
2792
+ "inputIndex": 5,
2793
+ "statIndex": 4
2794
+ }
2795
+ ]
896
2796
  }
897
2797
  ],
898
- "blendWeights": []
2798
+ "blendWeights": [],
2799
+ "sourceSubclass": 20212
899
2800
  }
900
2801
  ]