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

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 (156) 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 +3601 -1364
  7. package/lib/shipload.js +15671 -5261
  8. package/lib/shipload.js.map +1 -1
  9. package/lib/shipload.m.js +15392 -5209
  10. package/lib/shipload.m.js.map +1 -1
  11. package/lib/testing.d.ts +1173 -0
  12. package/lib/testing.js +4971 -0
  13. package/lib/testing.js.map +1 -0
  14. package/lib/testing.m.js +4965 -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 +27 -30
  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 +7 -8
  42. package/src/data/colors.ts +14 -48
  43. package/src/data/entities.json +380 -15
  44. package/src/data/item-ids.ts +51 -13
  45. package/src/data/items.json +318 -77
  46. package/src/data/kind-registry.json +195 -0
  47. package/src/data/kind-registry.ts +182 -0
  48. package/src/data/metadata.ts +291 -51
  49. package/src/data/recipes-runtime.ts +6 -23
  50. package/src/data/recipes.json +2260 -173
  51. package/src/data/tiers.ts +9 -6
  52. package/src/derivation/build-methods.test.ts +13 -0
  53. package/src/derivation/build-methods.ts +48 -0
  54. package/src/derivation/capabilities.test.ts +348 -0
  55. package/src/derivation/capabilities.ts +693 -0
  56. package/src/derivation/capability-mappings.ts +60 -16
  57. package/src/derivation/crafting.test.ts +17 -0
  58. package/src/derivation/crafting.ts +57 -34
  59. package/src/derivation/index.ts +27 -2
  60. package/src/derivation/recipe-usage.test.ts +90 -0
  61. package/src/derivation/recipe-usage.ts +141 -0
  62. package/src/derivation/reserve-regen.ts +34 -0
  63. package/src/derivation/resources.ts +9 -1
  64. package/src/derivation/rollups.test.ts +55 -0
  65. package/src/derivation/rollups.ts +72 -0
  66. package/src/derivation/stars.test.ts +67 -0
  67. package/src/derivation/stars.ts +25 -0
  68. package/src/derivation/stat-scaling.ts +12 -0
  69. package/src/derivation/stats.ts +6 -6
  70. package/src/derivation/stratum.ts +26 -22
  71. package/src/derivation/tiers.ts +40 -7
  72. package/src/derivation/upgrades.ts +14 -0
  73. package/src/derivation/wormhole.ts +154 -0
  74. package/src/entities/entity.ts +102 -0
  75. package/src/entities/gamestate.ts +3 -28
  76. package/src/entities/makers.ts +141 -135
  77. package/src/entities/slot-multiplier.ts +43 -0
  78. package/src/errors.ts +12 -16
  79. package/src/format.ts +26 -4
  80. package/src/index-module.ts +333 -35
  81. package/src/managers/actions.ts +668 -103
  82. package/src/managers/base.ts +6 -2
  83. package/src/managers/cluster.test.ts +39 -0
  84. package/src/managers/cluster.ts +53 -0
  85. package/src/managers/construction-types.ts +80 -0
  86. package/src/managers/construction.ts +443 -0
  87. package/src/managers/context.ts +29 -1
  88. package/src/managers/coordinates.ts +14 -0
  89. package/src/managers/entities.ts +27 -66
  90. package/src/managers/epochs.ts +40 -0
  91. package/src/managers/index.ts +20 -1
  92. package/src/managers/locations.ts +25 -29
  93. package/src/managers/nft.test.ts +14 -0
  94. package/src/managers/nft.ts +70 -0
  95. package/src/managers/players.ts +25 -0
  96. package/src/managers/plot.ts +122 -0
  97. package/src/nft/atomicassets.abi.json +1342 -0
  98. package/src/nft/atomicassets.ts +237 -0
  99. package/src/nft/atomicdata.ts +130 -0
  100. package/src/nft/buildImmutableData.ts +388 -0
  101. package/src/nft/description.ts +215 -99
  102. package/src/nft/index.ts +3 -0
  103. package/src/planner/index.ts +242 -0
  104. package/src/planner/planner.test.ts +334 -0
  105. package/src/resolution/describe-module.ts +43 -25
  106. package/src/resolution/display-name.ts +38 -10
  107. package/src/resolution/resolve-item.test.ts +48 -0
  108. package/src/resolution/resolve-item.ts +112 -58
  109. package/src/scan/index.ts +244 -0
  110. package/src/scan/scan-wasm.base64.ts +2 -0
  111. package/src/scheduling/accessor.ts +65 -23
  112. package/src/scheduling/availability.test.ts +204 -0
  113. package/src/scheduling/availability.ts +211 -0
  114. package/src/scheduling/cancel.test.ts +542 -0
  115. package/src/scheduling/cancel.ts +254 -0
  116. package/src/scheduling/cluster-stock.test.ts +31 -0
  117. package/src/scheduling/cluster-stock.ts +15 -0
  118. package/src/scheduling/energy.ts +47 -0
  119. package/src/scheduling/idle-resolve.ts +45 -0
  120. package/src/scheduling/jobs.ts +71 -0
  121. package/src/scheduling/lane-core.ts +128 -0
  122. package/src/scheduling/lanes.test.ts +250 -0
  123. package/src/scheduling/lanes.ts +227 -0
  124. package/src/scheduling/projection.ts +257 -133
  125. package/src/scheduling/schedule.test.ts +119 -0
  126. package/src/scheduling/schedule.ts +257 -117
  127. package/src/scheduling/task-cargo.test.ts +44 -0
  128. package/src/scheduling/task-cargo.ts +46 -0
  129. package/src/scheduling/unwrap.test.ts +86 -0
  130. package/src/scheduling/unwrap.ts +190 -0
  131. package/src/shipload.ts +26 -1
  132. package/src/subscriptions/manager.cluster.test.ts +51 -0
  133. package/src/subscriptions/manager.ts +245 -172
  134. package/src/subscriptions/mappers.ts +5 -8
  135. package/src/subscriptions/types.ts +28 -3
  136. package/src/testing/catalog-hash.ts +19 -0
  137. package/src/testing/index.ts +2 -0
  138. package/src/testing/projection-parity.ts +167 -0
  139. package/src/travel/reach.ts +21 -0
  140. package/src/travel/route-planner.ts +288 -0
  141. package/src/travel/route-simulator.ts +170 -0
  142. package/src/travel/travel.ts +188 -122
  143. package/src/types/capabilities.ts +37 -8
  144. package/src/types/entity.ts +3 -3
  145. package/src/types/index.ts +0 -1
  146. package/src/types.ts +51 -16
  147. package/src/utils/cargo.test.ts +14 -0
  148. package/src/utils/cargo.ts +29 -0
  149. package/src/utils/display-name.ts +70 -0
  150. package/src/utils/system.ts +15 -16
  151. package/src/capabilities/loading.ts +0 -8
  152. package/src/entities/container.ts +0 -123
  153. package/src/entities/ship-deploy.ts +0 -295
  154. package/src/entities/ship.ts +0 -221
  155. package/src/entities/warehouse.ts +0 -127
  156. 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,1720 @@
784
888
  {
785
889
  "inputIndex": 0,
786
890
  "statIndex": 1
787
- },
788
- {
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": 10208,
1021
+ "outputMass": 4800000,
1022
+ "inputs": [
1023
+ {
1024
+ "itemId": 10006,
1025
+ "quantity": 1000
1026
+ },
1027
+ {
1028
+ "itemId": 10003,
1029
+ "quantity": 1000
1030
+ },
1031
+ {
1032
+ "itemId": 10007,
1033
+ "quantity": 1000
1034
+ }
1035
+ ],
1036
+ "statSlots": [
1037
+ {
1038
+ "sources": []
1039
+ },
1040
+ {
1041
+ "sources": [
1042
+ {
1043
+ "inputIndex": 1,
1044
+ "statIndex": 0
1045
+ }
1046
+ ]
1047
+ },
1048
+ {
1049
+ "sources": [
1050
+ {
1051
+ "inputIndex": 0,
1052
+ "statIndex": 0
1053
+ }
1054
+ ]
1055
+ },
1056
+ {
1057
+ "sources": [
1058
+ {
1059
+ "inputIndex": 2,
1060
+ "statIndex": 0
1061
+ }
1062
+ ]
1063
+ }
1064
+ ],
1065
+ "blendWeights": []
1066
+ },
1067
+ {
1068
+ "outputItemId": 10209,
1069
+ "outputMass": 1900000,
1070
+ "inputs": [
1071
+ {
1072
+ "itemId": 10001,
1073
+ "quantity": 600
1074
+ },
1075
+ {
1076
+ "itemId": 10003,
1077
+ "quantity": 600
1078
+ }
1079
+ ],
1080
+ "statSlots": [
1081
+ {
1082
+ "sources": [
1083
+ {
1084
+ "inputIndex": 0,
1085
+ "statIndex": 0
1086
+ }
1087
+ ]
1088
+ },
1089
+ {
1090
+ "sources": [
1091
+ {
1092
+ "inputIndex": 0,
1093
+ "statIndex": 1
1094
+ }
1095
+ ]
1096
+ },
1097
+ {
1098
+ "sources": []
1099
+ },
1100
+ {
1101
+ "sources": []
1102
+ }
1103
+ ],
1104
+ "blendWeights": []
1105
+ },
1106
+ {
1107
+ "outputItemId": 10210,
1108
+ "outputMass": 1600000,
1109
+ "inputs": [
1110
+ {
1111
+ "itemId": 10001,
1112
+ "quantity": 200
1113
+ },
1114
+ {
1115
+ "itemId": 10008,
1116
+ "quantity": 200
1117
+ },
1118
+ {
1119
+ "itemId": 10007,
1120
+ "quantity": 200
1121
+ },
1122
+ {
1123
+ "itemId": 10003,
1124
+ "quantity": 200
1125
+ },
1126
+ {
1127
+ "itemId": 10006,
1128
+ "quantity": 200
1129
+ }
1130
+ ],
1131
+ "statSlots": [
1132
+ {
1133
+ "sources": [
1134
+ {
1135
+ "inputIndex": 0,
1136
+ "statIndex": 0
1137
+ }
1138
+ ]
1139
+ },
1140
+ {
1141
+ "sources": [
1142
+ {
1143
+ "inputIndex": 1,
1144
+ "statIndex": 0
1145
+ }
1146
+ ]
1147
+ },
1148
+ {
1149
+ "sources": [
1150
+ {
1151
+ "inputIndex": 2,
1152
+ "statIndex": 0
1153
+ }
1154
+ ]
1155
+ },
1156
+ {
1157
+ "sources": [
1158
+ {
1159
+ "inputIndex": 3,
1160
+ "statIndex": 0
1161
+ }
1162
+ ]
1163
+ },
1164
+ {
1165
+ "sources": [
1166
+ {
1167
+ "inputIndex": 4,
1168
+ "statIndex": 0
1169
+ }
1170
+ ]
1171
+ }
1172
+ ],
1173
+ "blendWeights": []
1174
+ },
1175
+ {
1176
+ "outputItemId": 10211,
1177
+ "outputMass": 2400000,
1178
+ "inputs": [
1179
+ {
1180
+ "itemId": 10005,
1181
+ "quantity": 100
1182
+ },
1183
+ {
1184
+ "itemId": 10002,
1185
+ "quantity": 100
1186
+ },
1187
+ {
1188
+ "itemId": 10010,
1189
+ "quantity": 100
1190
+ },
1191
+ {
1192
+ "itemId": 10009,
1193
+ "quantity": 100
1194
+ },
1195
+ {
1196
+ "itemId": 10004,
1197
+ "quantity": 100
1198
+ },
1199
+ {
1200
+ "itemId": 10210,
1201
+ "quantity": 1
1202
+ }
1203
+ ],
1204
+ "statSlots": [
1205
+ {
1206
+ "sources": [
1207
+ {
1208
+ "inputIndex": 0,
1209
+ "statIndex": 0
1210
+ },
1211
+ {
1212
+ "inputIndex": 5,
1213
+ "statIndex": 0
1214
+ }
1215
+ ]
1216
+ },
1217
+ {
1218
+ "sources": [
1219
+ {
1220
+ "inputIndex": 1,
1221
+ "statIndex": 0
1222
+ },
1223
+ {
1224
+ "inputIndex": 5,
1225
+ "statIndex": 1
1226
+ }
1227
+ ]
1228
+ },
1229
+ {
1230
+ "sources": [
1231
+ {
1232
+ "inputIndex": 2,
1233
+ "statIndex": 0
1234
+ },
1235
+ {
1236
+ "inputIndex": 5,
1237
+ "statIndex": 2
1238
+ }
1239
+ ]
1240
+ },
1241
+ {
1242
+ "sources": [
1243
+ {
1244
+ "inputIndex": 3,
1245
+ "statIndex": 0
1246
+ },
1247
+ {
1248
+ "inputIndex": 5,
1249
+ "statIndex": 3
1250
+ }
1251
+ ]
1252
+ },
1253
+ {
1254
+ "sources": [
1255
+ {
1256
+ "inputIndex": 4,
1257
+ "statIndex": 0
1258
+ },
1259
+ {
1260
+ "inputIndex": 5,
1261
+ "statIndex": 4
1262
+ }
1263
+ ]
1264
+ }
1265
+ ],
1266
+ "blendWeights": [],
1267
+ "sourceSubclass": 10210
1268
+ },
1269
+ {
1270
+ "outputItemId": 10212,
1271
+ "outputMass": 2400000,
1272
+ "inputs": [
1273
+ {
1274
+ "itemId": 10005,
1275
+ "quantity": 100
1276
+ },
1277
+ {
1278
+ "itemId": 10002,
1279
+ "quantity": 100
1280
+ },
1281
+ {
1282
+ "itemId": 10010,
1283
+ "quantity": 100
1284
+ },
1285
+ {
1286
+ "itemId": 10009,
1287
+ "quantity": 100
1288
+ },
1289
+ {
1290
+ "itemId": 10004,
1291
+ "quantity": 100
1292
+ },
1293
+ {
1294
+ "itemId": 10210,
1295
+ "quantity": 1
1296
+ }
1297
+ ],
1298
+ "statSlots": [
1299
+ {
1300
+ "sources": [
1301
+ {
1302
+ "inputIndex": 0,
1303
+ "statIndex": 0
1304
+ },
1305
+ {
1306
+ "inputIndex": 5,
1307
+ "statIndex": 0
1308
+ }
1309
+ ]
1310
+ },
1311
+ {
1312
+ "sources": [
1313
+ {
1314
+ "inputIndex": 1,
1315
+ "statIndex": 0
1316
+ },
1317
+ {
1318
+ "inputIndex": 5,
1319
+ "statIndex": 1
1320
+ }
1321
+ ]
1322
+ },
1323
+ {
1324
+ "sources": [
1325
+ {
1326
+ "inputIndex": 2,
1327
+ "statIndex": 0
1328
+ },
1329
+ {
1330
+ "inputIndex": 5,
1331
+ "statIndex": 2
1332
+ }
1333
+ ]
1334
+ },
1335
+ {
1336
+ "sources": [
1337
+ {
1338
+ "inputIndex": 3,
1339
+ "statIndex": 0
1340
+ },
1341
+ {
1342
+ "inputIndex": 5,
1343
+ "statIndex": 3
1344
+ }
1345
+ ]
1346
+ },
1347
+ {
1348
+ "sources": [
1349
+ {
1350
+ "inputIndex": 4,
1351
+ "statIndex": 0
1352
+ },
1353
+ {
1354
+ "inputIndex": 5,
1355
+ "statIndex": 4
1356
+ }
1357
+ ]
1358
+ }
1359
+ ],
1360
+ "blendWeights": [],
1361
+ "sourceSubclass": 10210
1362
+ },
1363
+ {
1364
+ "outputItemId": 10213,
1365
+ "outputMass": 2400000,
1366
+ "inputs": [
1367
+ {
1368
+ "itemId": 10005,
1369
+ "quantity": 100
1370
+ },
1371
+ {
1372
+ "itemId": 10002,
1373
+ "quantity": 100
1374
+ },
1375
+ {
1376
+ "itemId": 10010,
1377
+ "quantity": 100
1378
+ },
1379
+ {
1380
+ "itemId": 10009,
1381
+ "quantity": 100
1382
+ },
1383
+ {
1384
+ "itemId": 10004,
1385
+ "quantity": 100
1386
+ },
1387
+ {
1388
+ "itemId": 10210,
1389
+ "quantity": 1
1390
+ }
1391
+ ],
1392
+ "statSlots": [
1393
+ {
1394
+ "sources": [
1395
+ {
1396
+ "inputIndex": 0,
1397
+ "statIndex": 0
1398
+ },
1399
+ {
1400
+ "inputIndex": 5,
1401
+ "statIndex": 0
1402
+ }
1403
+ ]
1404
+ },
1405
+ {
1406
+ "sources": [
1407
+ {
1408
+ "inputIndex": 1,
1409
+ "statIndex": 0
1410
+ },
1411
+ {
1412
+ "inputIndex": 5,
1413
+ "statIndex": 1
1414
+ }
1415
+ ]
1416
+ },
1417
+ {
1418
+ "sources": [
1419
+ {
1420
+ "inputIndex": 2,
1421
+ "statIndex": 0
1422
+ },
1423
+ {
1424
+ "inputIndex": 5,
1425
+ "statIndex": 2
1426
+ }
1427
+ ]
1428
+ },
1429
+ {
1430
+ "sources": [
1431
+ {
1432
+ "inputIndex": 3,
1433
+ "statIndex": 0
1434
+ },
1435
+ {
1436
+ "inputIndex": 5,
1437
+ "statIndex": 3
1438
+ }
1439
+ ]
1440
+ },
1441
+ {
1442
+ "sources": [
1443
+ {
1444
+ "inputIndex": 4,
1445
+ "statIndex": 0
1446
+ },
1447
+ {
1448
+ "inputIndex": 5,
1449
+ "statIndex": 4
1450
+ }
1451
+ ]
1452
+ }
1453
+ ],
1454
+ "blendWeights": [],
1455
+ "sourceSubclass": 10210
1456
+ },
1457
+ {
1458
+ "outputItemId": 10214,
1459
+ "outputMass": 2400000,
1460
+ "inputs": [
1461
+ {
1462
+ "itemId": 10005,
1463
+ "quantity": 100
1464
+ },
1465
+ {
1466
+ "itemId": 10002,
1467
+ "quantity": 100
1468
+ },
1469
+ {
1470
+ "itemId": 10010,
1471
+ "quantity": 100
1472
+ },
1473
+ {
1474
+ "itemId": 10009,
1475
+ "quantity": 100
1476
+ },
1477
+ {
1478
+ "itemId": 10004,
1479
+ "quantity": 100
1480
+ },
1481
+ {
1482
+ "itemId": 10210,
1483
+ "quantity": 1
1484
+ }
1485
+ ],
1486
+ "statSlots": [
1487
+ {
1488
+ "sources": [
1489
+ {
1490
+ "inputIndex": 0,
1491
+ "statIndex": 0
1492
+ },
1493
+ {
1494
+ "inputIndex": 5,
1495
+ "statIndex": 0
1496
+ }
1497
+ ]
1498
+ },
1499
+ {
1500
+ "sources": [
1501
+ {
1502
+ "inputIndex": 1,
1503
+ "statIndex": 0
1504
+ },
1505
+ {
1506
+ "inputIndex": 5,
1507
+ "statIndex": 1
1508
+ }
1509
+ ]
1510
+ },
1511
+ {
1512
+ "sources": [
1513
+ {
1514
+ "inputIndex": 2,
1515
+ "statIndex": 0
1516
+ },
1517
+ {
1518
+ "inputIndex": 5,
1519
+ "statIndex": 2
1520
+ }
1521
+ ]
1522
+ },
1523
+ {
1524
+ "sources": [
1525
+ {
1526
+ "inputIndex": 3,
1527
+ "statIndex": 0
1528
+ },
1529
+ {
1530
+ "inputIndex": 5,
1531
+ "statIndex": 3
1532
+ }
1533
+ ]
1534
+ },
1535
+ {
1536
+ "sources": [
1537
+ {
1538
+ "inputIndex": 4,
1539
+ "statIndex": 0
1540
+ },
1541
+ {
1542
+ "inputIndex": 5,
1543
+ "statIndex": 4
1544
+ }
1545
+ ]
1546
+ }
1547
+ ],
1548
+ "blendWeights": [],
1549
+ "sourceSubclass": 10210
1550
+ },
1551
+ {
1552
+ "outputItemId": 10215,
1553
+ "outputMass": 2400000,
1554
+ "inputs": [
1555
+ {
1556
+ "itemId": 10005,
1557
+ "quantity": 100
1558
+ },
1559
+ {
1560
+ "itemId": 10002,
1561
+ "quantity": 100
1562
+ },
1563
+ {
1564
+ "itemId": 10010,
1565
+ "quantity": 100
1566
+ },
1567
+ {
1568
+ "itemId": 10009,
1569
+ "quantity": 100
1570
+ },
1571
+ {
1572
+ "itemId": 10004,
1573
+ "quantity": 100
1574
+ },
1575
+ {
1576
+ "itemId": 10210,
1577
+ "quantity": 1
1578
+ }
1579
+ ],
1580
+ "statSlots": [
1581
+ {
1582
+ "sources": [
1583
+ {
1584
+ "inputIndex": 0,
1585
+ "statIndex": 0
1586
+ },
1587
+ {
1588
+ "inputIndex": 5,
1589
+ "statIndex": 0
1590
+ }
1591
+ ]
1592
+ },
1593
+ {
1594
+ "sources": [
1595
+ {
1596
+ "inputIndex": 1,
1597
+ "statIndex": 0
1598
+ },
1599
+ {
1600
+ "inputIndex": 5,
1601
+ "statIndex": 1
1602
+ }
1603
+ ]
1604
+ },
1605
+ {
1606
+ "sources": [
1607
+ {
1608
+ "inputIndex": 2,
1609
+ "statIndex": 0
1610
+ },
1611
+ {
1612
+ "inputIndex": 5,
1613
+ "statIndex": 2
1614
+ }
1615
+ ]
1616
+ },
1617
+ {
1618
+ "sources": [
1619
+ {
1620
+ "inputIndex": 3,
1621
+ "statIndex": 0
1622
+ },
1623
+ {
1624
+ "inputIndex": 5,
1625
+ "statIndex": 3
1626
+ }
1627
+ ]
1628
+ },
1629
+ {
1630
+ "sources": [
1631
+ {
1632
+ "inputIndex": 4,
1633
+ "statIndex": 0
1634
+ },
1635
+ {
1636
+ "inputIndex": 5,
1637
+ "statIndex": 4
1638
+ }
1639
+ ]
1640
+ }
1641
+ ],
1642
+ "blendWeights": [],
1643
+ "sourceSubclass": 10210
1644
+ },
1645
+ {
1646
+ "outputItemId": 10218,
1647
+ "outputMass": 2400000,
1648
+ "inputs": [
1649
+ {
1650
+ "itemId": 10005,
1651
+ "quantity": 100
1652
+ },
1653
+ {
1654
+ "itemId": 10002,
1655
+ "quantity": 100
1656
+ },
1657
+ {
1658
+ "itemId": 10010,
1659
+ "quantity": 100
1660
+ },
1661
+ {
1662
+ "itemId": 10009,
1663
+ "quantity": 100
1664
+ },
1665
+ {
1666
+ "itemId": 10004,
1667
+ "quantity": 100
1668
+ },
1669
+ {
1670
+ "itemId": 10210,
1671
+ "quantity": 1
1672
+ }
1673
+ ],
1674
+ "statSlots": [
1675
+ {
1676
+ "sources": [
1677
+ {
1678
+ "inputIndex": 0,
1679
+ "statIndex": 0
1680
+ },
1681
+ {
1682
+ "inputIndex": 5,
1683
+ "statIndex": 0
1684
+ }
1685
+ ]
1686
+ },
1687
+ {
1688
+ "sources": [
1689
+ {
1690
+ "inputIndex": 1,
1691
+ "statIndex": 0
1692
+ },
1693
+ {
1694
+ "inputIndex": 5,
1695
+ "statIndex": 1
1696
+ }
1697
+ ]
1698
+ },
1699
+ {
1700
+ "sources": [
1701
+ {
1702
+ "inputIndex": 2,
1703
+ "statIndex": 0
1704
+ },
1705
+ {
1706
+ "inputIndex": 5,
1707
+ "statIndex": 2
1708
+ }
1709
+ ]
1710
+ },
1711
+ {
1712
+ "sources": [
1713
+ {
1714
+ "inputIndex": 3,
1715
+ "statIndex": 0
1716
+ },
1717
+ {
1718
+ "inputIndex": 5,
1719
+ "statIndex": 3
1720
+ }
1721
+ ]
1722
+ },
1723
+ {
1724
+ "sources": [
1725
+ {
1726
+ "inputIndex": 4,
1727
+ "statIndex": 0
1728
+ },
1729
+ {
1730
+ "inputIndex": 5,
1731
+ "statIndex": 4
1732
+ }
1733
+ ]
1734
+ }
1735
+ ],
1736
+ "blendWeights": [],
1737
+ "sourceSubclass": 10210
1738
+ },
1739
+ {
1740
+ "outputItemId": 11001,
1741
+ "outputMass": 4800,
1742
+ "inputs": [
1743
+ {
1744
+ "itemId": 102,
1745
+ "quantity": 12
1746
+ }
1747
+ ],
1748
+ "statSlots": [
1749
+ {
1750
+ "sources": [
1751
+ {
1752
+ "inputIndex": 0,
1753
+ "statIndex": 0
1754
+ }
1755
+ ]
1756
+ },
1757
+ {
1758
+ "sources": [
1759
+ {
1760
+ "inputIndex": 0,
1761
+ "statIndex": 2
1762
+ }
1763
+ ]
1764
+ },
1765
+ {
1766
+ "sources": [
1767
+ {
1768
+ "inputIndex": 0,
1769
+ "statIndex": 1
1770
+ }
1771
+ ]
1772
+ }
1773
+ ],
1774
+ "blendWeights": []
1775
+ },
1776
+ {
1777
+ "outputItemId": 11002,
1778
+ "outputMass": 4800,
1779
+ "inputs": [
1780
+ {
1781
+ "itemId": 402,
1782
+ "quantity": 6
1783
+ },
1784
+ {
1785
+ "itemId": 502,
1786
+ "quantity": 6
1787
+ }
1788
+ ],
1789
+ "statSlots": [
1790
+ {
1791
+ "sources": [
1792
+ {
1793
+ "inputIndex": 0,
1794
+ "statIndex": 1
1795
+ }
1796
+ ]
1797
+ },
1798
+ {
1799
+ "sources": [
1800
+ {
1801
+ "inputIndex": 0,
1802
+ "statIndex": 0
1803
+ }
1804
+ ]
1805
+ },
1806
+ {
1807
+ "sources": [
1808
+ {
1809
+ "inputIndex": 0,
1810
+ "statIndex": 2
1811
+ }
1812
+ ]
1813
+ },
1814
+ {
1815
+ "sources": [
1816
+ {
1817
+ "inputIndex": 1,
1818
+ "statIndex": 2
1819
+ }
1820
+ ]
1821
+ }
1822
+ ],
1823
+ "blendWeights": []
1824
+ },
1825
+ {
1826
+ "outputItemId": 11003,
1827
+ "outputMass": 4800,
1828
+ "inputs": [
1829
+ {
1830
+ "itemId": 302,
1831
+ "quantity": 12
1832
+ }
1833
+ ],
1834
+ "statSlots": [
1835
+ {
1836
+ "sources": [
1837
+ {
1838
+ "inputIndex": 0,
1839
+ "statIndex": 0
1840
+ }
1841
+ ]
1842
+ },
1843
+ {
1844
+ "sources": [
1845
+ {
1846
+ "inputIndex": 0,
1847
+ "statIndex": 2
1848
+ }
1849
+ ]
1850
+ },
1851
+ {
1852
+ "sources": [
1853
+ {
1854
+ "inputIndex": 0,
1855
+ "statIndex": 1
1856
+ }
1857
+ ]
1858
+ }
1859
+ ],
1860
+ "blendWeights": []
1861
+ },
1862
+ {
1863
+ "outputItemId": 11004,
1864
+ "outputMass": 4800,
1865
+ "inputs": [
1866
+ {
1867
+ "itemId": 202,
1868
+ "quantity": 6
1869
+ },
1870
+ {
1871
+ "itemId": 102,
1872
+ "quantity": 6
1873
+ }
1874
+ ],
1875
+ "statSlots": [
1876
+ {
1877
+ "sources": [
1878
+ {
1879
+ "inputIndex": 0,
1880
+ "statIndex": 1
1881
+ }
1882
+ ]
1883
+ },
1884
+ {
1885
+ "sources": [
1886
+ {
1887
+ "inputIndex": 0,
1888
+ "statIndex": 2
1889
+ }
1890
+ ]
1891
+ },
1892
+ {
1893
+ "sources": [
1894
+ {
1895
+ "inputIndex": 0,
1896
+ "statIndex": 0
1897
+ }
1898
+ ]
1899
+ }
1900
+ ],
1901
+ "blendWeights": []
1902
+ },
1903
+ {
1904
+ "outputItemId": 11005,
1905
+ "outputMass": 4800,
1906
+ "inputs": [
1907
+ {
1908
+ "itemId": 102,
1909
+ "quantity": 6
1910
+ },
1911
+ {
1912
+ "itemId": 302,
1913
+ "quantity": 6
1914
+ }
1915
+ ],
1916
+ "statSlots": [
1917
+ {
1918
+ "sources": [
1919
+ {
1920
+ "inputIndex": 0,
1921
+ "statIndex": 0
1922
+ }
1923
+ ]
1924
+ },
1925
+ {
1926
+ "sources": [
1927
+ {
1928
+ "inputIndex": 0,
1929
+ "statIndex": 1
1930
+ }
1931
+ ]
1932
+ },
1933
+ {
1934
+ "sources": [
1935
+ {
1936
+ "inputIndex": 0,
1937
+ "statIndex": 2
1938
+ }
1939
+ ]
1940
+ }
1941
+ ],
1942
+ "blendWeights": []
1943
+ },
1944
+ {
1945
+ "outputItemId": 11006,
1946
+ "outputMass": 4800,
1947
+ "inputs": [
1948
+ {
1949
+ "itemId": 202,
1950
+ "quantity": 12
1951
+ }
1952
+ ],
1953
+ "statSlots": [
1954
+ {
1955
+ "sources": [
1956
+ {
1957
+ "inputIndex": 0,
1958
+ "statIndex": 0
1959
+ }
1960
+ ]
1961
+ },
1962
+ {
1963
+ "sources": [
1964
+ {
1965
+ "inputIndex": 0,
1966
+ "statIndex": 2
1967
+ }
1968
+ ]
1969
+ },
1970
+ {
1971
+ "sources": [
1972
+ {
1973
+ "inputIndex": 0,
1974
+ "statIndex": 1
1975
+ }
1976
+ ]
1977
+ }
1978
+ ],
1979
+ "blendWeights": []
1980
+ },
1981
+ {
1982
+ "outputItemId": 11007,
1983
+ "outputMass": 4800,
1984
+ "inputs": [
1985
+ {
1986
+ "itemId": 502,
1987
+ "quantity": 12
1988
+ }
1989
+ ],
1990
+ "statSlots": [
1991
+ {
1992
+ "sources": [
1993
+ {
1994
+ "inputIndex": 0,
1995
+ "statIndex": 0
1996
+ }
1997
+ ]
1998
+ },
1999
+ {
2000
+ "sources": [
2001
+ {
2002
+ "inputIndex": 0,
2003
+ "statIndex": 1
2004
+ }
2005
+ ]
2006
+ },
2007
+ {
2008
+ "sources": [
2009
+ {
2010
+ "inputIndex": 0,
2011
+ "statIndex": 2
2012
+ }
2013
+ ]
2014
+ }
2015
+ ],
2016
+ "blendWeights": []
2017
+ },
2018
+ {
2019
+ "outputItemId": 11008,
2020
+ "outputMass": 4800,
2021
+ "inputs": [
2022
+ {
2023
+ "itemId": 402,
2024
+ "quantity": 12
2025
+ }
2026
+ ],
2027
+ "statSlots": [
2028
+ {
2029
+ "sources": [
2030
+ {
2031
+ "inputIndex": 0,
2032
+ "statIndex": 1
2033
+ }
2034
+ ]
2035
+ },
2036
+ {
2037
+ "sources": [
2038
+ {
2039
+ "inputIndex": 0,
2040
+ "statIndex": 2
2041
+ }
2042
+ ]
2043
+ }
2044
+ ],
2045
+ "blendWeights": []
2046
+ },
2047
+ {
2048
+ "outputItemId": 11009,
2049
+ "outputMass": 4800,
2050
+ "inputs": [
2051
+ {
2052
+ "itemId": 302,
2053
+ "quantity": 6
2054
+ },
2055
+ {
2056
+ "itemId": 402,
2057
+ "quantity": 6
2058
+ }
2059
+ ],
2060
+ "statSlots": [
2061
+ {
2062
+ "sources": [
2063
+ {
2064
+ "inputIndex": 0,
2065
+ "statIndex": 1
2066
+ }
2067
+ ]
2068
+ },
2069
+ {
2070
+ "sources": [
2071
+ {
2072
+ "inputIndex": 0,
2073
+ "statIndex": 2
2074
+ }
2075
+ ]
2076
+ },
2077
+ {
2078
+ "sources": [
2079
+ {
2080
+ "inputIndex": 1,
2081
+ "statIndex": 2
2082
+ }
2083
+ ]
2084
+ },
2085
+ {
2086
+ "sources": [
2087
+ {
2088
+ "inputIndex": 1,
2089
+ "statIndex": 0
2090
+ }
2091
+ ]
2092
+ }
2093
+ ],
2094
+ "blendWeights": []
2095
+ },
2096
+ {
2097
+ "outputItemId": 11010,
2098
+ "outputMass": 4800,
2099
+ "inputs": [
2100
+ {
2101
+ "itemId": 502,
2102
+ "quantity": 6
2103
+ },
2104
+ {
2105
+ "itemId": 202,
2106
+ "quantity": 6
2107
+ }
2108
+ ],
2109
+ "statSlots": [
2110
+ {
2111
+ "sources": [
2112
+ {
2113
+ "inputIndex": 0,
2114
+ "statIndex": 2
2115
+ }
2116
+ ]
2117
+ },
2118
+ {
2119
+ "sources": [
2120
+ {
2121
+ "inputIndex": 0,
2122
+ "statIndex": 0
2123
+ }
2124
+ ]
2125
+ },
2126
+ {
2127
+ "sources": [
2128
+ {
2129
+ "inputIndex": 0,
2130
+ "statIndex": 1
2131
+ }
2132
+ ]
2133
+ }
2134
+ ],
2135
+ "blendWeights": []
2136
+ },
2137
+ {
2138
+ "outputItemId": 11100,
2139
+ "outputMass": 1536000,
2140
+ "inputs": [
2141
+ {
2142
+ "itemId": 11003,
2143
+ "quantity": 600
2144
+ },
2145
+ {
2146
+ "itemId": 10100,
2147
+ "quantity": 1
2148
+ }
2149
+ ],
2150
+ "statSlots": [
2151
+ {
2152
+ "sources": [
2153
+ {
2154
+ "inputIndex": 0,
2155
+ "statIndex": 0
2156
+ },
2157
+ {
2158
+ "inputIndex": 1,
2159
+ "statIndex": 0
2160
+ }
2161
+ ]
2162
+ },
2163
+ {
2164
+ "sources": [
2165
+ {
2166
+ "inputIndex": 0,
2167
+ "statIndex": 1
2168
+ },
2169
+ {
2170
+ "inputIndex": 1,
2171
+ "statIndex": 1
2172
+ }
2173
+ ]
2174
+ }
2175
+ ],
2176
+ "blendWeights": []
2177
+ },
2178
+ {
2179
+ "outputItemId": 11101,
2180
+ "outputMass": 1536000,
2181
+ "inputs": [
2182
+ {
2183
+ "itemId": 11004,
2184
+ "quantity": 600
2185
+ },
2186
+ {
2187
+ "itemId": 10101,
2188
+ "quantity": 1
2189
+ }
2190
+ ],
2191
+ "statSlots": [
2192
+ {
2193
+ "sources": [
2194
+ {
2195
+ "inputIndex": 0,
2196
+ "statIndex": 0
2197
+ },
2198
+ {
2199
+ "inputIndex": 1,
2200
+ "statIndex": 0
2201
+ }
2202
+ ]
2203
+ },
2204
+ {
2205
+ "sources": [
2206
+ {
2207
+ "inputIndex": 0,
2208
+ "statIndex": 1
2209
+ },
2210
+ {
2211
+ "inputIndex": 1,
2212
+ "statIndex": 1
2213
+ }
2214
+ ]
2215
+ }
2216
+ ],
2217
+ "blendWeights": []
2218
+ },
2219
+ {
2220
+ "outputItemId": 11102,
2221
+ "outputMass": 1536000,
2222
+ "inputs": [
2223
+ {
2224
+ "itemId": 11005,
2225
+ "quantity": 300
2226
+ },
2227
+ {
2228
+ "itemId": 11002,
2229
+ "quantity": 300
2230
+ },
2231
+ {
2232
+ "itemId": 10102,
2233
+ "quantity": 1
2234
+ }
2235
+ ],
2236
+ "statSlots": [
2237
+ {
2238
+ "sources": [
2239
+ {
2240
+ "inputIndex": 0,
2241
+ "statIndex": 0
2242
+ },
2243
+ {
2244
+ "inputIndex": 2,
2245
+ "statIndex": 0
2246
+ }
2247
+ ]
2248
+ },
2249
+ {
2250
+ "sources": [
2251
+ {
2252
+ "inputIndex": 0,
2253
+ "statIndex": 1
2254
+ },
2255
+ {
2256
+ "inputIndex": 2,
2257
+ "statIndex": 1
2258
+ }
2259
+ ]
2260
+ },
2261
+ {
2262
+ "sources": [
2263
+ {
789
2264
  "inputIndex": 1,
2265
+ "statIndex": 3
2266
+ },
2267
+ {
2268
+ "inputIndex": 2,
2269
+ "statIndex": 2
2270
+ }
2271
+ ]
2272
+ }
2273
+ ],
2274
+ "blendWeights": []
2275
+ },
2276
+ {
2277
+ "outputItemId": 11103,
2278
+ "outputMass": 1536000,
2279
+ "inputs": [
2280
+ {
2281
+ "itemId": 11007,
2282
+ "quantity": 600
2283
+ },
2284
+ {
2285
+ "itemId": 10103,
2286
+ "quantity": 1
2287
+ }
2288
+ ],
2289
+ "statSlots": [
2290
+ {
2291
+ "sources": [
2292
+ {
2293
+ "inputIndex": 0,
2294
+ "statIndex": 1
2295
+ },
2296
+ {
2297
+ "inputIndex": 1,
2298
+ "statIndex": 0
2299
+ }
2300
+ ]
2301
+ },
2302
+ {
2303
+ "sources": [
2304
+ {
2305
+ "inputIndex": 0,
2306
+ "statIndex": 0
2307
+ },
2308
+ {
2309
+ "inputIndex": 1,
2310
+ "statIndex": 1
2311
+ }
2312
+ ]
2313
+ }
2314
+ ],
2315
+ "blendWeights": []
2316
+ },
2317
+ {
2318
+ "outputItemId": 11104,
2319
+ "outputMass": 1536000,
2320
+ "inputs": [
2321
+ {
2322
+ "itemId": 11009,
2323
+ "quantity": 300
2324
+ },
2325
+ {
2326
+ "itemId": 11006,
2327
+ "quantity": 300
2328
+ },
2329
+ {
2330
+ "itemId": 10104,
2331
+ "quantity": 1
2332
+ }
2333
+ ],
2334
+ "statSlots": [
2335
+ {
2336
+ "sources": [
2337
+ {
2338
+ "inputIndex": 0,
2339
+ "statIndex": 2
2340
+ },
2341
+ {
2342
+ "inputIndex": 2,
2343
+ "statIndex": 0
2344
+ }
2345
+ ]
2346
+ },
2347
+ {
2348
+ "sources": [
2349
+ {
2350
+ "inputIndex": 1,
2351
+ "statIndex": 0
2352
+ },
2353
+ {
2354
+ "inputIndex": 2,
2355
+ "statIndex": 1
2356
+ }
2357
+ ]
2358
+ }
2359
+ ],
2360
+ "blendWeights": []
2361
+ },
2362
+ {
2363
+ "outputItemId": 11105,
2364
+ "outputMass": 1536000,
2365
+ "inputs": [
2366
+ {
2367
+ "itemId": 11001,
2368
+ "quantity": 300
2369
+ },
2370
+ {
2371
+ "itemId": 11002,
2372
+ "quantity": 300
2373
+ },
2374
+ {
2375
+ "itemId": 10105,
2376
+ "quantity": 1
2377
+ }
2378
+ ],
2379
+ "statSlots": [
2380
+ {
2381
+ "sources": [
2382
+ {
2383
+ "inputIndex": 0,
2384
+ "statIndex": 0
2385
+ },
2386
+ {
2387
+ "inputIndex": 2,
2388
+ "statIndex": 0
2389
+ }
2390
+ ]
2391
+ },
2392
+ {
2393
+ "sources": [
2394
+ {
2395
+ "inputIndex": 0,
2396
+ "statIndex": 1
2397
+ },
2398
+ {
2399
+ "inputIndex": 2,
2400
+ "statIndex": 1
2401
+ }
2402
+ ]
2403
+ },
2404
+ {
2405
+ "sources": [
2406
+ {
2407
+ "inputIndex": 1,
2408
+ "statIndex": 0
2409
+ },
2410
+ {
2411
+ "inputIndex": 2,
2412
+ "statIndex": 2
2413
+ }
2414
+ ]
2415
+ },
2416
+ {
2417
+ "sources": [
2418
+ {
2419
+ "inputIndex": 1,
2420
+ "statIndex": 1
2421
+ },
2422
+ {
2423
+ "inputIndex": 2,
2424
+ "statIndex": 3
2425
+ }
2426
+ ]
2427
+ }
2428
+ ],
2429
+ "blendWeights": []
2430
+ },
2431
+ {
2432
+ "outputItemId": 11106,
2433
+ "outputMass": 1536000,
2434
+ "inputs": [
2435
+ {
2436
+ "itemId": 11004,
2437
+ "quantity": 300
2438
+ },
2439
+ {
2440
+ "itemId": 11010,
2441
+ "quantity": 300
2442
+ },
2443
+ {
2444
+ "itemId": 10106,
2445
+ "quantity": 1
2446
+ }
2447
+ ],
2448
+ "statSlots": [
2449
+ {
2450
+ "sources": [
2451
+ {
2452
+ "inputIndex": 0,
2453
+ "statIndex": 0
2454
+ },
2455
+ {
2456
+ "inputIndex": 2,
2457
+ "statIndex": 0
2458
+ }
2459
+ ]
2460
+ },
2461
+ {
2462
+ "sources": [
2463
+ {
2464
+ "inputIndex": 1,
2465
+ "statIndex": 1
2466
+ },
2467
+ {
2468
+ "inputIndex": 2,
2469
+ "statIndex": 1
2470
+ }
2471
+ ]
2472
+ },
2473
+ {
2474
+ "sources": [
2475
+ {
2476
+ "inputIndex": 0,
2477
+ "statIndex": 2
2478
+ },
2479
+ {
2480
+ "inputIndex": 2,
2481
+ "statIndex": 2
2482
+ }
2483
+ ]
2484
+ }
2485
+ ],
2486
+ "blendWeights": []
2487
+ },
2488
+ {
2489
+ "outputItemId": 11107,
2490
+ "outputMass": 1536000,
2491
+ "inputs": [
2492
+ {
2493
+ "itemId": 11004,
2494
+ "quantity": 300
2495
+ },
2496
+ {
2497
+ "itemId": 11009,
2498
+ "quantity": 300
2499
+ },
2500
+ {
2501
+ "itemId": 10107,
2502
+ "quantity": 1
2503
+ }
2504
+ ],
2505
+ "statSlots": [
2506
+ {
2507
+ "sources": [
2508
+ {
2509
+ "inputIndex": 0,
2510
+ "statIndex": 1
2511
+ },
2512
+ {
2513
+ "inputIndex": 2,
2514
+ "statIndex": 0
2515
+ }
2516
+ ]
2517
+ }
2518
+ ],
2519
+ "blendWeights": []
2520
+ },
2521
+ {
2522
+ "outputItemId": 11108,
2523
+ "outputMass": 1536000,
2524
+ "inputs": [
2525
+ {
2526
+ "itemId": 11003,
2527
+ "quantity": 300
2528
+ },
2529
+ {
2530
+ "itemId": 11007,
2531
+ "quantity": 300
2532
+ },
2533
+ {
2534
+ "itemId": 10108,
2535
+ "quantity": 1
2536
+ }
2537
+ ],
2538
+ "statSlots": [
2539
+ {
2540
+ "sources": [
2541
+ {
2542
+ "inputIndex": 0,
2543
+ "statIndex": 0
2544
+ },
2545
+ {
2546
+ "inputIndex": 2,
2547
+ "statIndex": 0
2548
+ }
2549
+ ]
2550
+ },
2551
+ {
2552
+ "sources": [
2553
+ {
2554
+ "inputIndex": 0,
2555
+ "statIndex": 1
2556
+ },
2557
+ {
2558
+ "inputIndex": 2,
2559
+ "statIndex": 1
2560
+ }
2561
+ ]
2562
+ },
2563
+ {
2564
+ "sources": [
2565
+ {
2566
+ "inputIndex": 1,
2567
+ "statIndex": 0
2568
+ },
2569
+ {
2570
+ "inputIndex": 2,
790
2571
  "statIndex": 2
791
2572
  }
792
2573
  ]
2574
+ },
2575
+ {
2576
+ "sources": [
2577
+ {
2578
+ "inputIndex": 1,
2579
+ "statIndex": 1
2580
+ },
2581
+ {
2582
+ "inputIndex": 2,
2583
+ "statIndex": 3
2584
+ }
2585
+ ]
793
2586
  }
794
2587
  ],
795
- "blendWeights": [
796
- 1,
797
- 1
798
- ]
2588
+ "blendWeights": []
799
2589
  },
800
2590
  {
801
- "outputItemId": 20002,
802
- "outputMass": 30000,
2591
+ "outputItemId": 11110,
2592
+ "outputMass": 1536000,
803
2593
  "inputs": [
804
2594
  {
805
- "itemId": 10002,
806
- "quantity": 2
2595
+ "itemId": 11006,
2596
+ "quantity": 300
807
2597
  },
808
2598
  {
809
- "category": "regolith",
810
- "tier": 2,
811
- "quantity": 10
2599
+ "itemId": 11008,
2600
+ "quantity": 300
812
2601
  },
813
2602
  {
814
- "category": "biomass",
815
- "tier": 2,
816
- "quantity": 20
2603
+ "itemId": 10110,
2604
+ "quantity": 1
817
2605
  }
818
2606
  ],
819
2607
  "statSlots": [
@@ -821,11 +2609,56 @@
821
2609
  "sources": [
822
2610
  {
823
2611
  "inputIndex": 0,
824
- "statIndex": 0
2612
+ "statIndex": 2
825
2613
  },
2614
+ {
2615
+ "inputIndex": 2,
2616
+ "statIndex": 0
2617
+ }
2618
+ ]
2619
+ },
2620
+ {
2621
+ "sources": [
826
2622
  {
827
2623
  "inputIndex": 1,
828
2624
  "statIndex": 1
2625
+ },
2626
+ {
2627
+ "inputIndex": 2,
2628
+ "statIndex": 1
2629
+ }
2630
+ ]
2631
+ }
2632
+ ],
2633
+ "blendWeights": []
2634
+ },
2635
+ {
2636
+ "outputItemId": 11200,
2637
+ "outputMass": 3100000,
2638
+ "inputs": [
2639
+ {
2640
+ "itemId": 11001,
2641
+ "quantity": 600
2642
+ },
2643
+ {
2644
+ "itemId": 11008,
2645
+ "quantity": 600
2646
+ },
2647
+ {
2648
+ "itemId": 10200,
2649
+ "quantity": 1
2650
+ }
2651
+ ],
2652
+ "statSlots": [
2653
+ {
2654
+ "sources": [
2655
+ {
2656
+ "inputIndex": 0,
2657
+ "statIndex": 0
2658
+ },
2659
+ {
2660
+ "inputIndex": 2,
2661
+ "statIndex": 0
829
2662
  }
830
2663
  ]
831
2664
  },
@@ -835,30 +2668,67 @@
835
2668
  "inputIndex": 0,
836
2669
  "statIndex": 1
837
2670
  },
2671
+ {
2672
+ "inputIndex": 2,
2673
+ "statIndex": 1
2674
+ }
2675
+ ]
2676
+ },
2677
+ {
2678
+ "sources": [
2679
+ {
2680
+ "inputIndex": 1,
2681
+ "statIndex": 0
2682
+ },
838
2683
  {
839
2684
  "inputIndex": 2,
840
2685
  "statIndex": 2
841
2686
  }
842
2687
  ]
2688
+ },
2689
+ {
2690
+ "sources": [
2691
+ {
2692
+ "inputIndex": 1,
2693
+ "statIndex": 1
2694
+ },
2695
+ {
2696
+ "inputIndex": 2,
2697
+ "statIndex": 3
2698
+ }
2699
+ ]
843
2700
  }
844
2701
  ],
845
- "blendWeights": [
846
- 1,
847
- 1,
848
- 1
849
- ]
2702
+ "blendWeights": [],
2703
+ "sourceSubclass": 10200
850
2704
  },
851
2705
  {
852
- "outputItemId": 20200,
853
- "outputMass": 80000,
2706
+ "outputItemId": 11212,
2707
+ "outputMass": 4320000,
854
2708
  "inputs": [
855
2709
  {
856
- "itemId": 20001,
857
- "quantity": 6
2710
+ "itemId": 11001,
2711
+ "quantity": 200
2712
+ },
2713
+ {
2714
+ "itemId": 11008,
2715
+ "quantity": 200
2716
+ },
2717
+ {
2718
+ "itemId": 11007,
2719
+ "quantity": 200
2720
+ },
2721
+ {
2722
+ "itemId": 11003,
2723
+ "quantity": 200
2724
+ },
2725
+ {
2726
+ "itemId": 11006,
2727
+ "quantity": 200
858
2728
  },
859
2729
  {
860
- "itemId": 20002,
861
- "quantity": 2
2730
+ "itemId": 10211,
2731
+ "quantity": 1
862
2732
  }
863
2733
  ],
864
2734
  "statSlots": [
@@ -867,22 +2737,198 @@
867
2737
  {
868
2738
  "inputIndex": 0,
869
2739
  "statIndex": 0
2740
+ },
2741
+ {
2742
+ "inputIndex": 5,
2743
+ "statIndex": 0
870
2744
  }
871
2745
  ]
872
2746
  },
873
2747
  {
874
2748
  "sources": [
875
2749
  {
876
- "inputIndex": 0,
2750
+ "inputIndex": 1,
2751
+ "statIndex": 0
2752
+ },
2753
+ {
2754
+ "inputIndex": 5,
877
2755
  "statIndex": 1
878
2756
  }
879
2757
  ]
880
2758
  },
2759
+ {
2760
+ "sources": [
2761
+ {
2762
+ "inputIndex": 2,
2763
+ "statIndex": 0
2764
+ },
2765
+ {
2766
+ "inputIndex": 5,
2767
+ "statIndex": 2
2768
+ }
2769
+ ]
2770
+ },
2771
+ {
2772
+ "sources": [
2773
+ {
2774
+ "inputIndex": 3,
2775
+ "statIndex": 0
2776
+ },
2777
+ {
2778
+ "inputIndex": 5,
2779
+ "statIndex": 3
2780
+ }
2781
+ ]
2782
+ },
2783
+ {
2784
+ "sources": [
2785
+ {
2786
+ "inputIndex": 4,
2787
+ "statIndex": 0
2788
+ },
2789
+ {
2790
+ "inputIndex": 5,
2791
+ "statIndex": 4
2792
+ }
2793
+ ]
2794
+ }
2795
+ ],
2796
+ "blendWeights": [],
2797
+ "sourceSubclass": 10211
2798
+ },
2799
+ {
2800
+ "outputItemId": 11213,
2801
+ "outputMass": 5760000,
2802
+ "inputs": [
2803
+ {
2804
+ "itemId": 11005,
2805
+ "quantity": 150
2806
+ },
2807
+ {
2808
+ "itemId": 11002,
2809
+ "quantity": 150
2810
+ },
2811
+ {
2812
+ "itemId": 11010,
2813
+ "quantity": 150
2814
+ },
2815
+ {
2816
+ "itemId": 11009,
2817
+ "quantity": 150
2818
+ },
2819
+ {
2820
+ "itemId": 11004,
2821
+ "quantity": 150
2822
+ },
2823
+ {
2824
+ "itemId": 11212,
2825
+ "quantity": 1
2826
+ }
2827
+ ],
2828
+ "statSlots": [
2829
+ {
2830
+ "sources": [
2831
+ {
2832
+ "inputIndex": 0,
2833
+ "statIndex": 0
2834
+ },
2835
+ {
2836
+ "inputIndex": 5,
2837
+ "statIndex": 0
2838
+ }
2839
+ ]
2840
+ },
881
2841
  {
882
2842
  "sources": [
883
2843
  {
884
2844
  "inputIndex": 1,
885
2845
  "statIndex": 0
2846
+ },
2847
+ {
2848
+ "inputIndex": 5,
2849
+ "statIndex": 1
2850
+ }
2851
+ ]
2852
+ },
2853
+ {
2854
+ "sources": [
2855
+ {
2856
+ "inputIndex": 2,
2857
+ "statIndex": 0
2858
+ },
2859
+ {
2860
+ "inputIndex": 5,
2861
+ "statIndex": 2
2862
+ }
2863
+ ]
2864
+ },
2865
+ {
2866
+ "sources": [
2867
+ {
2868
+ "inputIndex": 3,
2869
+ "statIndex": 0
2870
+ },
2871
+ {
2872
+ "inputIndex": 5,
2873
+ "statIndex": 3
2874
+ }
2875
+ ]
2876
+ },
2877
+ {
2878
+ "sources": [
2879
+ {
2880
+ "inputIndex": 4,
2881
+ "statIndex": 0
2882
+ },
2883
+ {
2884
+ "inputIndex": 5,
2885
+ "statIndex": 4
2886
+ }
2887
+ ]
2888
+ }
2889
+ ],
2890
+ "blendWeights": [],
2891
+ "sourceSubclass": 11212
2892
+ },
2893
+ {
2894
+ "outputItemId": 11214,
2895
+ "outputMass": 5760000,
2896
+ "inputs": [
2897
+ {
2898
+ "itemId": 11005,
2899
+ "quantity": 150
2900
+ },
2901
+ {
2902
+ "itemId": 11002,
2903
+ "quantity": 150
2904
+ },
2905
+ {
2906
+ "itemId": 11010,
2907
+ "quantity": 150
2908
+ },
2909
+ {
2910
+ "itemId": 11009,
2911
+ "quantity": 150
2912
+ },
2913
+ {
2914
+ "itemId": 11004,
2915
+ "quantity": 150
2916
+ },
2917
+ {
2918
+ "itemId": 11212,
2919
+ "quantity": 1
2920
+ }
2921
+ ],
2922
+ "statSlots": [
2923
+ {
2924
+ "sources": [
2925
+ {
2926
+ "inputIndex": 0,
2927
+ "statIndex": 0
2928
+ },
2929
+ {
2930
+ "inputIndex": 5,
2931
+ "statIndex": 0
886
2932
  }
887
2933
  ]
888
2934
  },
@@ -890,11 +2936,52 @@
890
2936
  "sources": [
891
2937
  {
892
2938
  "inputIndex": 1,
2939
+ "statIndex": 0
2940
+ },
2941
+ {
2942
+ "inputIndex": 5,
893
2943
  "statIndex": 1
894
2944
  }
895
2945
  ]
2946
+ },
2947
+ {
2948
+ "sources": [
2949
+ {
2950
+ "inputIndex": 2,
2951
+ "statIndex": 0
2952
+ },
2953
+ {
2954
+ "inputIndex": 5,
2955
+ "statIndex": 2
2956
+ }
2957
+ ]
2958
+ },
2959
+ {
2960
+ "sources": [
2961
+ {
2962
+ "inputIndex": 3,
2963
+ "statIndex": 0
2964
+ },
2965
+ {
2966
+ "inputIndex": 5,
2967
+ "statIndex": 3
2968
+ }
2969
+ ]
2970
+ },
2971
+ {
2972
+ "sources": [
2973
+ {
2974
+ "inputIndex": 4,
2975
+ "statIndex": 0
2976
+ },
2977
+ {
2978
+ "inputIndex": 5,
2979
+ "statIndex": 4
2980
+ }
2981
+ ]
896
2982
  }
897
2983
  ],
898
- "blendWeights": []
2984
+ "blendWeights": [],
2985
+ "sourceSubclass": 11212
899
2986
  }
900
2987
  ]