-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathitems.js
3256 lines (3253 loc) · 175 KB
/
items.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
const sections = [
{name: 'Armor', id: 1},
{name: 'Banner', id: 2},
{name: 'Brewing ingredient', id: 3},
{name: 'Bucket', id: 4},
{name: 'Decoration', id: 5},
{name: 'Dye', id: 6},
{name: 'Dyed', id: 7},
{name: 'End', id: 8},
{name: 'Firework', id: 9},
{name: 'Food', id: 10},
{name: 'Liquid', id: 11},
{name: 'Manufactured', id: 12},
{name: 'Mechanism', id: 13},
{name: 'Mob head', id: 14},
{name: 'Natural', id: 15},
{name: 'Nether', id: 16},
{name: 'Non-solid', id: 17},
{name: 'Ore', id: 18},
{name: 'Plant', id: 19},
{name: 'Bedrock Edition & Education Edition', id: 20},
{name: 'Chemistry Miscellaneous', id: 33},
{name: 'Element', id: 34},
{name: 'Beaker', id: 35},
{name: 'Flask', id: 36},
{name: 'Jar', id: 37},
{name: 'Potion', id: 21},
{name: 'Splash potion', id: 22},
{name: 'Lingering potion', id: 31},
{name: 'Raw material', id: 23},
{name: 'Spawn egg', id: 24},
{name: 'Tool', id: 25},
{name: 'Utility', id: 26},
{name: 'Vehicle', id: 27},
{name: 'Weapon', id: 28},
{name: 'Legacy: Potion', id: 45},
{name: 'Legacy: Lingering Potion', id: 46},
{name: 'Legacy: Splash Potion', id: 47},
{name: 'Legacy: Spawn Eggs', id: 39},
{name: 'Legacy: Dyed', id: 40},
{name: 'Legacy: before 15w31a stair flip', id: 42},
{name: 'Legacy: Miscellaneous', id: 29},
{name: 'April Fools', id: 32},
{name: 'Other', id: 30},
{name: 'Minecraft Earth', id: 38},
];
let items = [];
items['3D'] = {pos: 446, section: 32};
items['???'] = {pos: 1770, section: 34};
items['A Very Fine Item'] = {pos: 263, section: 32};
items['Acacia Boat'] = {pos: 637, section: 27};
items['Acacia Boat Revision 2'] = {pos: 3618, section: 29};
items['Acacia Boat with Chest'] = {pos: 610, section: 27};
items['Acacia Button'] = {pos: 3326, section: 13};
items['Acacia Door'] = {pos: 566, section: 13};
items['Acacia Door Revision 3'] = {pos: 935, section: 13};
items['Acacia Fence'] = {pos: 645, section: 12};
items['Acacia Fence BE'] = {pos: 3222, section: 12};
items['Acacia Fence Gate'] = {pos: 3221, section: 13};
items['Acacia Fence Gate BE'] = {pos: 52, section: 13};
items['Acacia Leaves'] = {pos: 3398, section: 19};
items['Acacia Log'] = {pos: 3399, section: 19};
items['Acacia Planks'] = {pos: 854, section: 12};
items['Acacia Pressure Plate'] = {pos: 3327, section: 13};
items['Acacia Sapling'] = {pos: 3400, section: 19};
items['Acacia Sign'] = {pos: 2396, section: 17};
items['Acacia Slab'] = {pos: 3223, section: 12};
items['Acacia Stairs'] = {pos: 3224, section: 12};
items['Acacia Trapdoor'] = {pos: 1650, section: 13};
items['Acacia Wood'] = {pos: 3225, section: 12};
items['Acacia Wood Button'] = {pos: 3326, section: 13};
items['Acacia Wood Door'] = {pos: 566, section: 13};
items['Acacia Wood Fence'] = {pos: 645, section: 12};
items['Acacia Wood Fence Gate'] = {pos: 3221, section: 13};
items['Acacia Wood Planks'] = {pos: 854, section: 12};
items['Acacia Wood Pressure Plate'] = {pos: 3327, section: 13};
items['Acacia Wood Sign'] = {pos: 2396, section: 17};
items['Acacia Wood Slab'] = {pos: 3223, section: 12};
items['Acacia Wood Stairs'] = {pos: 3224, section: 12};
items['Acacia Wood Trapdoor'] = {pos: 1650, section: 13};
items['Actinide'] = {pos: 66, section: 34};
items['Actinium'] = {pos: 1771, section: 34};
items['Activator Rail'] = {pos: 3328, section: 13};
items['Adult Carrots'] = {pos: 2138, section: 19};
items['Adult Nether Warts'] = {pos: 2170, section: 16};
items['Adult Potatoes'] = {pos: 2142, section: 19};
items['Adult Wheat Crops'] = {pos: 2144, section: 19};
items['Air'] = {pos: 2363, section: 15};
items['Alkali metal'] = {pos: 67, section: 34};
items['Alkaline earth metal'] = {pos: 68, section: 34};
items['Allay Spawn Egg'] = {pos: 901, section: 24};
items['Allium'] = {pos: 3401, section: 19};
items['Allow'] = {pos: 1435, section: 20};
items['Aluminium'] = {pos: 1772, section: 34};
items['Aluminum'] = {pos: 1772, section: 34};
items['Aluminum Oxide'] = {pos: 1918, section: 37};
items['Americium'] = {pos: 1773, section: 34};
items['Amethyst Cluster'] = {pos: 393, section: 15};
items['Amethyst Shard'] = {pos: 394, section: 23};
items['Ammonia'] = {pos: 1889, section: 35};
items['Ancient Debris'] = {pos: 134, section: 16};
items['Andesite'] = {pos: 3355, section: 15};
items['Andesite Slab'] = {pos: 3226, section: 12};
items['Andesite Stairs'] = {pos: 3227, section: 12};
items['Andesite Wall'] = {pos: 3228, section: 12};
items['Andesite Wall BE'] = {pos: 21, section: 12};
items['Ankle Monitor'] = {pos: 1637, section: 32};
items['Ant'] = {pos: 264, section: 32};
items['Antidote'] = {pos: 1744, section: 33};
items['Antimony'] = {pos: 1774, section: 34};
items['Anvil'] = {pos: 3594, section: 26};
items['Apple'] = {pos: 3193, section: 10};
items['Apple Revision 1'] = {pos: 2034, section: 29};
items['Argentum'] = {pos: 1775, section: 34};
items['Argon'] = {pos: 1776, section: 34};
items['Armor Stand'] = {pos: 3150, section: 5};
items['Arrow'] = {pos: 1267, section: 28};
items['Arrow 15w14a'] = {pos: 117, section: 32};
items['Arrow Loaded Crossbow'] = {pos: 2383, section: 28};
items['Arrow of Decay'] = {pos: 1408, section: 28};
items['Arrow of Decay Revision 1'] = {pos: 1562, section: 29};
items['Arrow of Fire Resistance'] = {pos: 1268, section: 28};
items['Arrow of Harming'] = {pos: 1269, section: 28};
items['Arrow of Healing'] = {pos: 1270, section: 28};
items['Arrow of Invisibility'] = {pos: 1271, section: 28};
items['Arrow of Leaping'] = {pos: 1272, section: 28};
items['Arrow of Luck'] = {pos: 1362, section: 28};
items['Arrow of Night Vision'] = {pos: 1273, section: 28};
items['Arrow of Poison'] = {pos: 1274, section: 28};
items['Arrow of Regeneration'] = {pos: 1275, section: 28};
items['Arrow of Slow Falling'] = {pos: 1734, section: 28};
items['Arrow of Slowness'] = {pos: 1276, section: 28};
items['Arrow of Splashing'] = {pos: 1266, section: 28};
items['Arrow of Strength'] = {pos: 1277, section: 28};
items['Arrow of Swiftness'] = {pos: 1278, section: 28};
items['Arrow of the Turtle Master'] = {pos: 2030, section: 28};
items['Arrow of Water Breathing'] = {pos: 133, section: 28};
items['Arrow of Weakness'] = {pos: 1279, section: 28};
items['Arsenic'] = {pos: 1777, section: 34};
items['Astatine'] = {pos: 1778, section: 34};
items['Aurum'] = {pos: 1779, section: 34};
items['Awkward Lingering Potion'] = {pos: 1097, section: 31};
items['Awkward Potion'] = {pos: 1083, section: 21};
items['Awkward Potion Revision 1'] = {pos: 292, section: 45};
items['Awkward Splash Potion'] = {pos: 1100, section: 22};
items['Axolotl Spawn Egg'] = {pos: 440, section: 24};
items['Azalea'] = {pos: 464, section: 19};
items['Azalea Leaves'] = {pos: 465, section: 19};
items['Azure Bluet'] = {pos: 3402, section: 19};
items['Baked Potato'] = {pos: 3194, section: 10};
items['Baked Potato Revision 1'] = {pos: 2069, section: 29};
items['Bamboo'] = {pos: 2373, section: 19};
items['Banner'] = {pos: 788, section: 7};
items['Banner Pattern'] = {pos: 2391, section: 2};
items['Banner Revision 1'] = {pos: 2042, section: 29};
items['Barium'] = {pos: 1780, section: 34};
items['Barium Sulfate'] = {pos: 1915, section: 37};
items['Barrel'] = {pos: 2435, section: 26};
items['Barrier'] = {pos: 3595, section: 26};
items['Basalt'] = {pos: 148, section: 16};
items['Bat Spawn Egg'] = {pos: 1142, section: 24};
items['Beacon'] = {pos: 3596, section: 26};
items['Beacon BE'] = {pos: 212, section: 26};
items['Beaker'] = {pos: 1889, section: 35};
items['Bedrock'] = {pos: 971, section: 15};
items['Bee Nest'] = {pos: 64, section: 15};
items['Bee Spawn Egg'] = {pos: 104, section: 24};
items['Bee Spawn Egg Revision 1'] = {pos: 65, section: 39};
items['Beehive'] = {pos: 63, section: 12};
items['Beetroot'] = {pos: 3196, section: 10};
items['Beetroot Seeds'] = {pos: 3403, section: 19};
items['Beetroot Soup'] = {pos: 3195, section: 10};
items['Beetroots'] = {pos: 2145, section: 19};
items['Bell'] = {pos: 2409, section: 5};
items['Benzene'] = {pos: 1890, section: 35};
items['Berkelium'] = {pos: 1781, section: 34};
items['Beryllium'] = {pos: 1782, section: 34};
items['Big Dripleaf'] = {pos: 466, section: 19};
items['Birch Boat'] = {pos: 635, section: 27};
items['Birch Boat Revision 2'] = {pos: 3619, section: 29};
items['Birch Boat with Chest'] = {pos: 611, section: 27};
items['Birch Button'] = {pos: 3329, section: 13};
items['Birch Door'] = {pos: 567, section: 13};
items['Birch Door Revision 3'] = {pos: 937, section: 13};
items['Birch Fence'] = {pos: 643, section: 12};
items['Birch Fence BE'] = {pos: 3230, section: 12};
items['Birch Fence Gate'] = {pos: 3229, section: 13};
items['Birch Fence Gate BE'] = {pos: 53, section: 13};
items['Birch Leaves'] = {pos: 3404, section: 19};
items['Birch Log'] = {pos: 3405, section: 19};
items['Birch Log Revision 1'] = {pos: 2238, section: 29};
items['Birch Planks'] = {pos: 859, section: 12};
items['Birch Pressure Plate'] = {pos: 3330, section: 13};
items['Birch Sapling'] = {pos: 3406, section: 19};
items['Birch Sign'] = {pos: 2393, section: 17};
items['Birch Slab'] = {pos: 3231, section: 12};
items['Birch Stairs'] = {pos: 3232, section: 12};
items['Birch Stairs Left'] = {pos: 2256, section: 42};
items['Birch Trapdoor'] = {pos: 1648, section: 13};
items['Birch Wood'] = {pos: 3233, section: 12};
items['Birch Wood Button'] = {pos: 3329, section: 13};
items['Birch Wood Door'] = {pos: 567, section: 13};
items['Birch Wood Fence'] = {pos: 643, section: 12};
items['Birch Wood Fence Gate'] = {pos: 3229, section: 13};
items['Birch Wood Planks'] = {pos: 859, section: 12};
items['Birch Wood Pressure Plate'] = {pos: 3330, section: 13};
items['Birch Wood Sign'] = {pos: 2393, section: 17};
items['Birch Wood Slab'] = {pos: 3231, section: 12};
items['Birch Wood Stairs'] = {pos: 3232, section: 12};
items['Birch Wood Trapdoor'] = {pos: 1648, section: 13};
items['Bismuth'] = {pos: 1783, section: 34};
items['Black Balloon'] = {pos: 1928, section: 33};
items['Black Banner'] = {pos: 704, section: 7};
items['Black Banner 15w14a'] = {pos: 472, section: 32};
items['Black Base Banner'] = {pos: 2530, section: 2};
items['Black Base Dexter Canton Banner'] = {pos: 2531, section: 2};
items['Black Base Gradient Banner'] = {pos: 2532, section: 2};
items['Black Base Indented Banner'] = {pos: 2533, section: 2};
items['Black Base Sinister Canton Banner'] = {pos: 2534, section: 2};
items['Black Beaker'] = {pos: 1891, section: 35};
items['Black Bed'] = {pos: 3171, section: 7};
items['Black Bed BE'] = {pos: 1235, section: 7};
items['Black Bed LCE'] = {pos: 1235, section: 7};
items['Black Bend Banner'] = {pos: 2535, section: 2};
items['Black Bend Sinister Banner'] = {pos: 2536, section: 2};
items['Black Bordure Banner'] = {pos: 2537, section: 2};
items['Black Bordure Indented Banner'] = {pos: 2538, section: 2};
items['Black Candle'] = {pos: 395, section: 7};
items['Black Carpet'] = {pos: 1621, section: 7};
items['Black Carpet Revision 1'] = {pos: 705, section: 40};
items['Black Chevron Banner'] = {pos: 2539, section: 2};
items['Black Chief Banner'] = {pos: 2540, section: 2};
items['Black Chief Dexter Canton Banner'] = {pos: 2541, section: 2};
items['Black Chief Indented Banner'] = {pos: 2542, section: 2};
items['Black Chief Sinister Canton Banner'] = {pos: 2543, section: 2};
items['Black Concrete'] = {pos: 1475, section: 7};
items['Black Concrete Powder'] = {pos: 1476, section: 7};
items['Black Creeper Charge Banner'] = {pos: 2544, section: 2};
items['Black Cross Banner'] = {pos: 2545, section: 2};
items['Black Dye'] = {pos: 2375, section: 6};
items['Black Fess Banner'] = {pos: 2546, section: 2};
items['Black Field Masoned Banner'] = {pos: 2547, section: 2};
items['Black Firework Star'] = {pos: 804, section: 9};
items['Black Flask'] = {pos: 1902, section: 36};
items['Black Flower Charge Banner'] = {pos: 2548, section: 2};
items['Black Glazed Terracotta'] = {pos: 1477, section: 7};
items['Black Globe Banner'] = {pos: 35, section: 2};
items['Black Gradient Banner'] = {pos: 2549, section: 2};
items['Black Inverted Chevron Banner'] = {pos: 2550, section: 2};
items['Black Jar'] = {pos: 1916, section: 37};
items['Black Lozenge Banner'] = {pos: 2551, section: 2};
items['Black Pale Banner'] = {pos: 2552, section: 2};
items['Black Pale Dexter Banner'] = {pos: 2553, section: 2};
items['Black Pale Sinister Banner'] = {pos: 2554, section: 2};
items['Black Paly Banner'] = {pos: 2555, section: 2};
items['Black Per Bend Banner'] = {pos: 2556, section: 2};
items['Black Per Bend Inverted Banner'] = {pos: 2557, section: 2};
items['Black Per Bend Sinister Banner'] = {pos: 2558, section: 2};
items['Black Per Bend Sinister Inverted Banner'] = {pos: 2559, section: 2};
items['Black Per Fess Banner'] = {pos: 2560, section: 2};
items['Black Per Fess Inverted Banner'] = {pos: 2561, section: 2};
items['Black Per Pale Banner'] = {pos: 2562, section: 2};
items['Black Per Pale Inverted Banner'] = {pos: 2563, section: 2};
items['Black Piglin Banner'] = {pos: 359, section: 2};
items['Black Roundel Banner'] = {pos: 2564, section: 2};
items['Black Saltire Banner'] = {pos: 2565, section: 2};
items['Black Shield'] = {pos: 2469, section: 1};
items['Black Shulker Box'] = {pos: 1603, section: 7};
items['Black Shulker Box Revision 1'] = {pos: 1416, section: 40};
items['Black Skull Charge Banner'] = {pos: 2566, section: 2};
items['Black Snout Banner'] = {pos: 359, section: 2};
items['Black Stained Glass'] = {pos: 707, section: 7};
items['Black Stained Glass Pane'] = {pos: 708, section: 7};
items['Black Stained Glass Pane BE'] = {pos: 2008, section: 7};
items['Black Terracotta'] = {pos: 706, section: 7};
items['Black Thing Banner'] = {pos: 2567, section: 2};
items['Black Tinted Glass'] = {pos: 1294, section: 40};
items['Black Tinted Glass Pane'] = {pos: 3, section: 40};
items['Black Wood Planks'] = {pos: 244, section: 30};
items['Black Wool'] = {pos: 1523, section: 7};
items['Black Wool Revision 2'] = {pos: 709, section: 40};
items['Blackstone'] = {pos: 260, section: 16};
items['Blackstone Slab'] = {pos: 276, section: 12};
items['Blackstone Stairs'] = {pos: 277, section: 12};
items['Blackstone Wall'] = {pos: 278, section: 12};
items['Blackstone Wall BE'] = {pos: 386, section: 12};
items['Blank Spawn Egg'] = {pos: 2361, section: 39};
items['Blast Furnace'] = {pos: 2442, section: 26};
items['Blaze Powder'] = {pos: 654, section: 3};
items['Blaze Rod'] = {pos: 655, section: 3};
items['Blaze Spawn Egg'] = {pos: 1143, section: 24};
items['Blaze Spawn Egg Revision 1'] = {pos: 1350, section: 39};
items['Bleach'] = {pos: 1745, section: 33};
items['Bleach (filled)'] = {pos: 1746, section: 33};
items['Block of Amethyst'] = {pos: 396, section: 15};
items['Block of Coal'] = {pos: 3234, section: 12};
items['Block of Coal Revision 1'] = {pos: 1295, section: 29};
items['Block of Copper'] = {pos: 401, section: 12};
items['Block of Diamond'] = {pos: 3235, section: 12};
items['Block of Emerald'] = {pos: 3236, section: 12};
items['Block of Gold'] = {pos: 3237, section: 12};
items['Block of Iron'] = {pos: 3238, section: 12};
items['Block of Lapis Lazuli'] = {pos: 3273, section: 12};
items['Block of Netherite'] = {pos: 132, section: 12};
items['Block of Quartz'] = {pos: 3239, section: 12};
items['Block of Raw Copper'] = {pos: 545, section: 12};
items['Block of Raw Gold'] = {pos: 546, section: 12};
items['Block of Raw Iron'] = {pos: 547, section: 12};
items['Block of Redstone'] = {pos: 3331, section: 13};
items['Blue Balloon'] = {pos: 1929, section: 33};
items['Blue Banner'] = {pos: 710, section: 7};
items['Blue Banner 15w14a'] = {pos: 473, section: 32};
items['Blue Base Banner'] = {pos: 2568, section: 2};
items['Blue Base Dexter Canton Banner'] = {pos: 2569, section: 2};
items['Blue Base Gradient Banner'] = {pos: 2570, section: 2};
items['Blue Base Indented Banner'] = {pos: 2571, section: 2};
items['Blue Base Sinister Canton Banner'] = {pos: 2572, section: 2};
items['Blue Beaker'] = {pos: 1892, section: 35};
items['Blue Bed'] = {pos: 3172, section: 7};
items['Blue Bed BE'] = {pos: 1546, section: 7};
items['Blue Bed LCE'] = {pos: 1546, section: 7};
items['Blue Bend Banner'] = {pos: 2573, section: 2};
items['Blue Bend Sinister Banner'] = {pos: 2574, section: 2};
items['Blue Bordure Banner'] = {pos: 2575, section: 2};
items['Blue Bordure Indented Banner'] = {pos: 2576, section: 2};
items['Blue Candle'] = {pos: 397, section: 7};
items['Blue Carpet'] = {pos: 1622, section: 7};
items['Blue Carpet Revision 1'] = {pos: 711, section: 40};
items['Blue Chevron Banner'] = {pos: 2577, section: 2};
items['Blue Chief Banner'] = {pos: 2578, section: 2};
items['Blue Chief Dexter Canton Banner'] = {pos: 2579, section: 2};
items['Blue Chief Indented Banner'] = {pos: 2580, section: 2};
items['Blue Chief Sinister Canton Banner'] = {pos: 2581, section: 2};
items['Blue Concrete'] = {pos: 1478, section: 7};
items['Blue Concrete Powder'] = {pos: 1479, section: 7};
items['Blue Creeper Charge Banner'] = {pos: 2582, section: 2};
items['Blue Cross Banner'] = {pos: 2583, section: 2};
items['Blue Dye'] = {pos: 2376, section: 6};
items['Blue Fess Banner'] = {pos: 2584, section: 2};
items['Blue Field Masoned Banner'] = {pos: 2585, section: 2};
items['Blue Firework Star'] = {pos: 805, section: 9};
items['Blue Flask'] = {pos: 1903, section: 36};
items['Blue Flower Charge Banner'] = {pos: 2586, section: 2};
items['Blue Glazed Terracotta'] = {pos: 1480, section: 7};
items['Blue Globe Banner'] = {pos: 36, section: 2};
items['Blue Glow Stick'] = {pos: 1977, section: 33};
items['Blue Gradient Banner'] = {pos: 2587, section: 2};
items['Blue Ice'] = {pos: 1735, section: 15};
items['Blue Ice BE'] = {pos: 113, section: 15};
items['Blue Inverted Chevron Banner'] = {pos: 2588, section: 2};
items['Blue Jar'] = {pos: 1917, section: 37};
items['Blue Key'] = {pos: 451, section: 32};
items['Blue Lozenge Banner'] = {pos: 2589, section: 2};
items['Blue Orchid'] = {pos: 3407, section: 19};
items['Blue Pale Banner'] = {pos: 2590, section: 2};
items['Blue Pale Dexter Banner'] = {pos: 2591, section: 2};
items['Blue Pale Sinister Banner'] = {pos: 2592, section: 2};
items['Blue Paly Banner'] = {pos: 2593, section: 2};
items['Blue Per Bend Banner'] = {pos: 2594, section: 2};
items['Blue Per Bend Inverted Banner'] = {pos: 2595, section: 2};
items['Blue Per Bend Sinister Banner'] = {pos: 2596, section: 2};
items['Blue Per Bend Sinister Inverted Banner'] = {pos: 2597, section: 2};
items['Blue Per Fess Banner'] = {pos: 2598, section: 2};
items['Blue Per Fess Inverted Banner'] = {pos: 2599, section: 2};
items['Blue Per Pale Banner'] = {pos: 2600, section: 2};
items['Blue Per Pale Inverted Banner'] = {pos: 2601, section: 2};
items['Blue Piglin Banner'] = {pos: 360, section: 2};
items['Blue Roundel Banner'] = {pos: 2602, section: 2};
items['Blue Saltire Banner'] = {pos: 2603, section: 2};
items['Blue Shield'] = {pos: 2470, section: 1};
items['Blue Shulker Box'] = {pos: 1604, section: 7};
items['Blue Shulker Box Revision 1'] = {pos: 1417, section: 40};
items['Blue Skull Charge Banner'] = {pos: 2604, section: 2};
items['Blue Snout Banner'] = {pos: 360, section: 2};
items['Blue Sparkler'] = {pos: 1747, section: 33};
items['Blue Sparkler (active)'] = {pos: 1748, section: 33};
items['Blue Stained Glass'] = {pos: 713, section: 7};
items['Blue Stained Glass Pane'] = {pos: 714, section: 7};
items['Blue Stained Glass Pane BE'] = {pos: 2009, section: 7};
items['Blue Terracotta'] = {pos: 712, section: 7};
items['Blue Thing Banner'] = {pos: 2605, section: 2};
items['Blue Tinted Glass'] = {pos: 1296, section: 40};
items['Blue Tinted Glass Pane'] = {pos: 4, section: 40};
items['Blue Torch'] = {pos: 1749, section: 33};
items['Blue Wood Planks'] = {pos: 245, section: 30};
items['Blue Wool'] = {pos: 1524, section: 7};
items['Blue Wool Revision 2'] = {pos: 715, section: 40};
items['Board'] = {pos: 1592, section: 20};
items['Boat'] = {pos: 1259, section: 29};
items['Boat 15w14a'] = {pos: 621, section: 32};
items['Boat with Chest'] = {pos: 616, section: 27};
items['Bohrium'] = {pos: 1784, section: 34};
items['Bone'] = {pos: 3502, section: 23};
items['Bone Block'] = {pos: 3356, section: 15};
items['Bone Meal'] = {pos: 3155, section: 6};
items['Book'] = {pos: 3503, section: 23};
items['Book and Quill'] = {pos: 3532, section: 25};
items['Bookshelf'] = {pos: 3240, section: 12};
items['Border'] = {pos: 1593, section: 20};
items['Boron'] = {pos: 1785, section: 34};
items['Boron Trioxide'] = {pos: 1915, section: 37};
items["Bottle o' Enchanting"] = {pos: 3466, section: 22};
items['Bow'] = {pos: 1280, section: 28};
items['Bow BE'] = {pos: 1602, section: 28};
items['Bowl'] = {pos: 3533, section: 25};
items['Box of Infinite Books'] = {pos: 265, section: 32};
items['Brain Coral'] = {pos: 1712, section: 15};
items['Brain Coral Block'] = {pos: 1707, section: 15};
items['Brain Coral Block Revision 1'] = {pos: 1702, section: 29};
items['Brain Coral Fan'] = {pos: 2132, section: 15};
items['Brain Coral Fan Revision 1'] = {pos: 1723, section: 29};
items['Brain Coral Fan Revision 2'] = {pos: 2136, section: 29};
items['Bread'] = {pos: 3197, section: 10};
items['Bread Revision 1'] = {pos: 2035, section: 29};
items['Brewing Stand'] = {pos: 3597, section: 26};
items['Brick'] = {pos: 3504, section: 23};
items['Brick Slab'] = {pos: 3241, section: 12};
items['Brick Slab Old'] = {pos: 871, section: 12};
items['Brick Stairs'] = {pos: 3242, section: 12};
items['Brick Stairs Left'] = {pos: 2257, section: 42};
items['Brick Wall'] = {pos: 3243, section: 12};
items['Brick Wall BE'] = {pos: 22, section: 12};
items['Bricks'] = {pos: 110, section: 12};
items['Bricks Old'] = {pos: 870, section: 12};
items['Broken Anvil'] = {pos: 448, section: 26};
items['Broken Elytra'] = {pos: 2471, section: 1};
items['Bromine'] = {pos: 1786, section: 34};
items['Brown Balloon'] = {pos: 1930, section: 33};
items['Brown Banner'] = {pos: 716, section: 7};
items['Brown Banner 15w14a'] = {pos: 474, section: 32};
items['Brown Base Banner'] = {pos: 2606, section: 2};
items['Brown Base Dexter Canton Banner'] = {pos: 2607, section: 2};
items['Brown Base Gradient Banner'] = {pos: 2608, section: 2};
items['Brown Base Indented Banner'] = {pos: 2609, section: 2};
items['Brown Base Sinister Canton Banner'] = {pos: 2610, section: 2};
items['Brown Beaker'] = {pos: 1893, section: 35};
items['Brown Bed'] = {pos: 3173, section: 7};
items['Brown Bed BE'] = {pos: 1547, section: 7};
items['Brown Bed LCE'] = {pos: 1547, section: 7};
items['Brown Bend Banner'] = {pos: 2611, section: 2};
items['Brown Bend Sinister Banner'] = {pos: 2612, section: 2};
items['Brown Bordure Banner'] = {pos: 2613, section: 2};
items['Brown Bordure Indented Banner'] = {pos: 2614, section: 2};
items['Brown Candle'] = {pos: 398, section: 7};
items['Brown Carpet'] = {pos: 1623, section: 7};
items['Brown Carpet Revision 1'] = {pos: 717, section: 40};
items['Brown Chevron Banner'] = {pos: 2615, section: 2};
items['Brown Chief Banner'] = {pos: 2616, section: 2};
items['Brown Chief Dexter Canton Banner'] = {pos: 2617, section: 2};
items['Brown Chief Indented Banner'] = {pos: 2618, section: 2};
items['Brown Chief Sinister Canton Banner'] = {pos: 2619, section: 2};
items['Brown Concrete'] = {pos: 1481, section: 7};
items['Brown Concrete Powder'] = {pos: 1482, section: 7};
items['Brown Creeper Charge Banner'] = {pos: 2620, section: 2};
items['Brown Cross Banner'] = {pos: 2621, section: 2};
items['Brown Dye'] = {pos: 2377, section: 6};
items['Brown Fess Banner'] = {pos: 2622, section: 2};
items['Brown Field Masoned Banner'] = {pos: 2623, section: 2};
items['Brown Firework Star'] = {pos: 806, section: 9};
items['Brown Flask'] = {pos: 1904, section: 36};
items['Brown Flower Charge Banner'] = {pos: 2624, section: 2};
items['Brown Glazed Terracotta'] = {pos: 1483, section: 7};
items['Brown Globe Banner'] = {pos: 37, section: 2};
items['Brown Glow Stick'] = {pos: 1978, section: 33};
items['Brown Gradient Banner'] = {pos: 2625, section: 2};
items['Brown Inverted Chevron Banner'] = {pos: 2626, section: 2};
items['Brown Jar'] = {pos: 1918, section: 37};
items['Brown Lozenge Banner'] = {pos: 2627, section: 2};
items['Brown Mushroom'] = {pos: 3409, section: 19};
items['Brown Mushroom Block'] = {pos: 3408, section: 19};
items['Brown Pale Banner'] = {pos: 2628, section: 2};
items['Brown Pale Dexter Banner'] = {pos: 2629, section: 2};
items['Brown Pale Sinister Banner'] = {pos: 2630, section: 2};
items['Brown Paly Banner'] = {pos: 2631, section: 2};
items['Brown Per Bend Banner'] = {pos: 2632, section: 2};
items['Brown Per Bend Inverted Banner'] = {pos: 2633, section: 2};
items['Brown Per Bend Sinister Banner'] = {pos: 2634, section: 2};
items['Brown Per Bend Sinister Inverted Banner'] = {pos: 2635, section: 2};
items['Brown Per Fess Banner'] = {pos: 2636, section: 2};
items['Brown Per Fess Inverted Banner'] = {pos: 2637, section: 2};
items['Brown Per Pale Banner'] = {pos: 2638, section: 2};
items['Brown Per Pale Inverted Banner'] = {pos: 2639, section: 2};
items['Brown Piglin Banner'] = {pos: 361, section: 2};
items['Brown Roundel Banner'] = {pos: 2640, section: 2};
items['Brown Saltire Banner'] = {pos: 2641, section: 2};
items['Brown Shield'] = {pos: 2472, section: 1};
items['Brown Shulker Box'] = {pos: 1605, section: 7};
items['Brown Shulker Box Revision 1'] = {pos: 1418, section: 40};
items['Brown Skull Charge Banner'] = {pos: 2642, section: 2};
items['Brown Snout Banner'] = {pos: 361, section: 2};
items['Brown Stained Glass'] = {pos: 719, section: 7};
items['Brown Stained Glass Pane'] = {pos: 720, section: 7};
items['Brown Stained Glass Pane BE'] = {pos: 2010, section: 7};
items['Brown Terracotta'] = {pos: 718, section: 7};
items['Brown Thing Banner'] = {pos: 2643, section: 2};
items['Brown Tinted Glass'] = {pos: 1297, section: 40};
items['Brown Tinted Glass Pane'] = {pos: 5, section: 40};
items['Brown Wood Planks'] = {pos: 246, section: 30};
items['Brown Wool'] = {pos: 1525, section: 7};
items['Brown Wool Revision 2'] = {pos: 721, section: 40};
items['Bubble Column'] = {pos: 2364, section: 15};
items['Bubble Coral'] = {pos: 1713, section: 15};
items['Bubble Coral Block'] = {pos: 1708, section: 15};
items['Bubble Coral Block Revision 1'] = {pos: 1703, section: 29};
items['Bubble Coral Fan'] = {pos: 2133, section: 15};
items['Bubble Coral Fan Revision 1'] = {pos: 1724, section: 29};
items['Bubble Coral Fan Revision 2'] = {pos: 2137, section: 29};
items['Bucket'] = {pos: 3146, section: 4};
items['Bucket of Axolotl'] = {pos: 445, section: 4};
items['Bucket of Cod'] = {pos: 1686, section: 4};
items['Bucket of Mud'] = {pos: 92, section: 38};
items['Bucket of Pufferfish'] = {pos: 1687, section: 4};
items['Bucket of Pufferfish BE'] = {pos: 2087, section: 4};
items['Bucket of Salmon'] = {pos: 1688, section: 4};
items['Bucket of Tadpole'] = {pos: 573, section: 4};
items['Bucket of Tropical Fish'] = {pos: 2028, section: 4};
items['Bucket of Tropical Fish BE'] = {pos: 1685, section: 29};
items['Budding Amethyst'] = {pos: 399, section: 15};
items['Bundle'] = {pos: 447, section: 25};
items['Buried Treasure Map'] = {pos: 3579, section: 25};
items['Buried Treasure Map BE'] = {pos: 123, section: 25};
items['Buried Treasure Map Revision 1'] = {pos: 1219, section: 25};
items['Buttercup'] = {pos: 109, section: 38};
items['Cactus'] = {pos: 3410, section: 19};
items['Cactus BE Revision 1'] = {pos: 2163, section: 29};
items['Cactus Green'] = {pos: 689, section: 6};
items['Cadmium'] = {pos: 1787, section: 34};
items['Caesium'] = {pos: 1792, section: 34};
items['Cake'] = {pos: 3598, section: 26};
items['Cake Revision 1'] = {pos: 2, section: 29};
items['Calcite'] = {pos: 432, section: 15};
items['Calcium'] = {pos: 1788, section: 34};
items['Calcium Bromide'] = {pos: 1915, section: 37};
items['Calcium Chloride'] = {pos: 1915, section: 37};
items['Californium'] = {pos: 1789, section: 34};
items['Camera'] = {pos: 1949, section: 20};
items['Camera (old)'] = {pos: 1365, section: 20};
items['Campfire'] = {pos: 2459, section: 26};
items['Candle'] = {pos: 400, section: 26};
items['Capri Cloth'] = {pos: 232, section: 40};
items['Carbon'] = {pos: 1790, section: 34};
items['Carrot'] = {pos: 3198, section: 10};
items['Carrot on a Stick'] = {pos: 3534, section: 25};
items['Carrot Revision 2'] = {pos: 127, section: 29};
items['Cartography Table'] = {pos: 2452, section: 26};
items['Cartography Table Revision 1'] = {pos: 2443, section: 26};
items['Carved Pumpkin'] = {pos: 3411, section: 19};
items['Cast Fishing Rod'] = {pos: 227, section: 25};
items['Cat Spawn Egg'] = {pos: 2410, section: 24};
items['Cat Spawn Egg Revision 1'] = {pos: 1370, section: 39};
items['Cauldron'] = {pos: 3599, section: 26};
items['Cave Air'] = {pos: 2363, section: 15};
items['Cave Spider Spawn Egg'] = {pos: 1144, section: 24};
items['Cave Spider Spawn Egg Revision 1'] = {pos: 1369, section: 39};
items['Cerium'] = {pos: 1791, section: 34};
items['Cerium Chloride'] = {pos: 1915, section: 37};
items['Cesium'] = {pos: 1792, section: 34};
items['Chain'] = {pos: 290, section: 5};
items['Chainmail Boots'] = {pos: 2473, section: 1};
items['Chainmail Chestplate'] = {pos: 2474, section: 1};
items['Chainmail Helmet'] = {pos: 2475, section: 1};
items['Chainmail Leggings'] = {pos: 2476, section: 1};
items['Charcoal'] = {pos: 3505, section: 23};
items['Charcoal Revision 1'] = {pos: 1119, section: 29};
items['Chartreuse Cloth'] = {pos: 234, section: 40};
items['Chest'] = {pos: 1239, section: 26};
items['Chest BE'] = {pos: 58, section: 26};
items['Chest Revision 2'] = {pos: 375, section: 29};
items['Chicken Spawn Egg'] = {pos: 1145, section: 24};
items['Chicken Spawn Egg Revision 1'] = {pos: 1384, section: 39};
items['Chipped Anvil'] = {pos: 3600, section: 26};
items['Chiseled Deepslate'] = {pos: 489, section: 12};
items['Chiseled Nether Bricks'] = {pos: 269, section: 16};
items['Chiseled Polished Blackstone'] = {pos: 270, section: 16};
items['Chiseled Quartz Block'] = {pos: 872, section: 12};
items['Chiseled Red Sandstone'] = {pos: 3244, section: 12};
items['Chiseled Sandstone'] = {pos: 3245, section: 12};
items['Chiseled Stone Bricks'] = {pos: 3357, section: 15};
items['Chiseled Stone Bricks Monster Egg'] = {pos: 3357, section: 15};
items['Chlorine'] = {pos: 1793, section: 34};
items['Chorus Flower'] = {pos: 3412, section: 19};
items['Chorus Fruit'] = {pos: 3199, section: 10};
items['Chorus Plant'] = {pos: 3413, section: 19};
items['Chromium'] = {pos: 1794, section: 34};
items['Clay'] = {pos: 3358, section: 15};
items['Clay (ball)'] = {pos: 3506, section: 23};
items['Clay (block)'] = {pos: 3358, section: 15};
items['Clay Ball'] = {pos: 3506, section: 23};
items['Clock'] = {pos: 549, section: 25};
items['Clock Revision 1'] = {pos: 2169, section: 29};
items['Clock Revision 2'] = {pos: 511, section: 29};
items['Clownfish'] = {pos: 825, section: 10};
items['Clownfish Revision 1'] = {pos: 825, section: 10};
items['Cluckshroom Spawn Egg'] = {pos: 624, section: 38};
items['Coal'] = {pos: 3507, section: 23};
items['Coal Ore'] = {pos: 3391, section: 18};
items['Coal Revision 2'] = {pos: 1119, section: 29};
items['Coarse Dirt'] = {pos: 974, section: 15};
items['Cobalt'] = {pos: 1795, section: 34};
items['Cobbled Deepslate'] = {pos: 513, section: 12};
items['Cobbled Deepslate Slab'] = {pos: 494, section: 12};
items['Cobbled Deepslate Stairs'] = {pos: 495, section: 12};
items['Cobbled Deepslate Wall'] = {pos: 500, section: 12};
items['Cobbled Deepslate Wall BE'] = {pos: 560, section: 12};
items['Cobblestone'] = {pos: 3359, section: 12};
items['Cobblestone Monster Egg'] = {pos: 3359, section: 12};
items['Cobblestone Slab'] = {pos: 3246, section: 12};
items['Cobblestone Stairs'] = {pos: 3247, section: 12};
items['Cobblestone Stairs Left'] = {pos: 2258, section: 42};
items['Cobblestone Wall'] = {pos: 3248, section: 12};
items['Cobblestone Wall BE'] = {pos: 2024, section: 12};
items['Cobweb'] = {pos: 3360, section: 15};
items['Cocoa Beans'] = {pos: 3156, section: 6};
items['Cod Spawn Egg'] = {pos: 1697, section: 24};
items['Cod Spawn Egg Revision 1'] = {pos: 1968, section: 39};
items['Compass'] = {pos: 550, section: 25};
items['Compass Revision 1'] = {pos: 2168, section: 29};
items['Compass Revision 2'] = {pos: 512, section: 29};
items['Composter'] = {pos: 2460, section: 13};
items['Compound Creator'] = {pos: 1931, section: 33};
items['Conduit'] = {pos: 2033, section: 26};
items['Conduit BE'] = {pos: 213, section: 26};
items['Cooked Beef'] = {pos: 848, section: 10};
items['Cooked Chicken'] = {pos: 3200, section: 10};
items['Cooked Cod'] = {pos: 1690, section: 10};
items['Cooked Fish'] = {pos: 827, section: 10};
items['Cooked Fish Revision 1'] = {pos: 827, section: 10};
items['Cooked Mutton'] = {pos: 3201, section: 10};
items['Cooked Porkchop'] = {pos: 3202, section: 10};
items['Cooked Rabbit'] = {pos: 3203, section: 10};
items['Cooked Salmon'] = {pos: 1691, section: 10};
items['Cooked Salmon 3DS'] = {pos: 831, section: 10};
items['Cooked Salmon Revision 1'] = {pos: 831, section: 10};
items['Cookie'] = {pos: 3204, section: 10};
items['Copernicium'] = {pos: 1796, section: 34};
items['Copper'] = {pos: 1797, section: 34};
items['Copper Block'] = {pos: 401, section: 12};
items['Copper Horn'] = {pos: 583, section: 25};
items['Copper Ingot'] = {pos: 450, section: 23};
items['Copper Ore'] = {pos: 449, section: 18};
items['Cornflower'] = {pos: 2389, section: 19};
items['Cow Spawn Egg'] = {pos: 1146, section: 24};
items['Cow Spawn Egg Revision 1'] = {pos: 1385, section: 39};
items['Cracked Deepslate Bricks'] = {pos: 520, section: 12};
items['Cracked Deepslate Tiles'] = {pos: 521, section: 12};
items['Cracked Nether Bricks'] = {pos: 271, section: 16};
items['Cracked Polished Blackstone Bricks'] = {pos: 272, section: 16};
items['Cracked Stone Bricks'] = {pos: 3361, section: 15};
items['Cracked Stone Bricks Monster Egg'] = {pos: 3361, section: 15};
items['Crafting Table'] = {pos: 3601, section: 26};
items['Creeper Head'] = {pos: 964, section: 14};
items['Creeper Head BE'] = {pos: 215, section: 14};
items['Creeper Spawn Egg'] = {pos: 1147, section: 24};
items['Creeper Spawn Egg Revision 1'] = {pos: 1386, section: 39};
items['Crimson Button'] = {pos: 167, section: 13};
items['Crimson Door'] = {pos: 168, section: 13};
items['Crimson Fence'] = {pos: 648, section: 12};
items['Crimson Fence BE'] = {pos: 161, section: 12};
items['Crimson Fence Gate'] = {pos: 179, section: 13};
items['Crimson Fence Gate BE'] = {pos: 379, section: 13};
items['Crimson Fungus'] = {pos: 158, section: 16};
items['Crimson Hyphae'] = {pos: 198, section: 16};
items['Crimson Nylium'] = {pos: 149, section: 16};
items['Crimson Planks'] = {pos: 146, section: 12};
items['Crimson Pressure Plate'] = {pos: 169, section: 13};
items['Crimson Roots'] = {pos: 190, section: 16};
items['Crimson Sign'] = {pos: 177, section: 17};
items['Crimson Slab'] = {pos: 162, section: 12};
items['Crimson Stairs'] = {pos: 163, section: 12};
items['Crimson Stem'] = {pos: 150, section: 16};
items['Crimson Trapdoor'] = {pos: 170, section: 13};
items['Crossbow'] = {pos: 2382, section: 28};
items['Crude Oil'] = {pos: 1891, section: 35};
items['Crying Obsidian'] = {pos: 197, section: 16};
items['Crying Obsidian BE'] = {pos: 509, section: 16};
items['Crystallized Honey'] = {pos: 95, section: 30};
items['Cuprum'] = {pos: 1797, section: 34};
items['Curium'] = {pos: 1798, section: 34};
items['Cut Copper'] = {pos: 402, section: 12};
items['Cut Copper Block'] = {pos: 402, section: 12};
items['Cut Copper Slab'] = {pos: 403, section: 12};
items['Cut Copper Stairs'] = {pos: 404, section: 12};
items['Cut Red Sandstone'] = {pos: 3249, section: 12};
items['Cut Red Sandstone Slab'] = {pos: 2466, section: 12};
items['Cut Sandstone'] = {pos: 3250, section: 12};
items['Cut Sandstone Slab'] = {pos: 2467, section: 12};
items['Cyan Balloon'] = {pos: 1932, section: 33};
items['Cyan Banner'] = {pos: 722, section: 7};
items['Cyan Banner 15w14a'] = {pos: 475, section: 32};
items['Cyan Base Banner'] = {pos: 2644, section: 2};
items['Cyan Base Dexter Canton Banner'] = {pos: 2645, section: 2};
items['Cyan Base Gradient Banner'] = {pos: 2646, section: 2};
items['Cyan Base Indented Banner'] = {pos: 2647, section: 2};
items['Cyan Base Sinister Canton Banner'] = {pos: 2648, section: 2};
items['Cyan Bed'] = {pos: 3174, section: 7};
items['Cyan Bed BE'] = {pos: 1548, section: 7};
items['Cyan Bed LCE'] = {pos: 1548, section: 7};
items['Cyan Bend Banner'] = {pos: 2649, section: 2};
items['Cyan Bend Sinister Banner'] = {pos: 2650, section: 2};
items['Cyan Bordure Banner'] = {pos: 2651, section: 2};
items['Cyan Bordure Indented Banner'] = {pos: 2652, section: 2};
items['Cyan Candle'] = {pos: 405, section: 7};
items['Cyan Carpet'] = {pos: 1624, section: 7};
items['Cyan Carpet Revision 1'] = {pos: 723, section: 40};
items['Cyan Chevron Banner'] = {pos: 2653, section: 2};
items['Cyan Chief Banner'] = {pos: 2655, section: 2};
items['Cyan Chief Dexter Canton Banner'] = {pos: 2656, section: 2};
items['Cyan Chief Indented Banner'] = {pos: 2657, section: 2};
items['Cyan Chief Sinister Canton Banner'] = {pos: 2658, section: 2};
items['Cyan Cloth'] = {pos: 229, section: 40};
items['Cyan Concrete'] = {pos: 1484, section: 7};
items['Cyan Concrete Powder'] = {pos: 1485, section: 7};
items['Cyan Creeper Charge Banner'] = {pos: 2659, section: 2};
items['Cyan Cross Banner'] = {pos: 2660, section: 2};
items['Cyan Dye'] = {pos: 3157, section: 6};
items['Cyan Fess Banner'] = {pos: 2661, section: 2};
items['Cyan Field Masoned Banner'] = {pos: 2662, section: 2};
items['Cyan Firework Star'] = {pos: 807, section: 9};
items['Cyan Flower Charge Banner'] = {pos: 2663, section: 2};
items['Cyan Glazed Terracotta'] = {pos: 1540, section: 7};
items['Cyan Glazed Terracotta Revision 1'] = {pos: 1486, section: 40};
items['Cyan Globe Banner'] = {pos: 38, section: 2};
items['Cyan Glow Stick'] = {pos: 1979, section: 33};
items['Cyan Gradient Banner'] = {pos: 2664, section: 2};
items['Cyan Inverted Chevron Banner'] = {pos: 2654, section: 2};
items['Cyan Lozenge Banner'] = {pos: 2665, section: 2};
items['Cyan Pale Banner'] = {pos: 2666, section: 2};
items['Cyan Pale Dexter Banner'] = {pos: 2667, section: 2};
items['Cyan Pale Sinister Banner'] = {pos: 2668, section: 2};
items['Cyan Paly Banner'] = {pos: 2669, section: 2};
items['Cyan Per Bend Banner'] = {pos: 2670, section: 2};
items['Cyan Per Bend Inverted Banner'] = {pos: 2671, section: 2};
items['Cyan Per Bend Sinister Banner'] = {pos: 2672, section: 2};
items['Cyan Per Bend Sinister Inverted Banner'] = {pos: 2673, section: 2};
items['Cyan Per Fess Banner'] = {pos: 2674, section: 2};
items['Cyan Per Fess Inverted Banner'] = {pos: 2675, section: 2};
items['Cyan Per Pale Banner'] = {pos: 2676, section: 2};
items['Cyan Per Pale Inverted Banner'] = {pos: 2677, section: 2};
items['Cyan Piglin Banner'] = {pos: 362, section: 2};
items['Cyan Roundel Banner'] = {pos: 2678, section: 2};
items['Cyan Saltire Banner'] = {pos: 2679, section: 2};
items['Cyan Shield'] = {pos: 2477, section: 1};
items['Cyan Shulker Box'] = {pos: 1606, section: 7};
items['Cyan Shulker Box Revision 1'] = {pos: 1419, section: 40};
items['Cyan Skull Charge Banner'] = {pos: 2680, section: 2};
items['Cyan Snout Banner'] = {pos: 362, section: 2};
items['Cyan Stained Glass'] = {pos: 725, section: 7};
items['Cyan Stained Glass Pane'] = {pos: 726, section: 7};
items['Cyan Stained Glass Pane BE'] = {pos: 2011, section: 7};
items['Cyan Terracotta'] = {pos: 724, section: 7};
items['Cyan Thing Banner'] = {pos: 2681, section: 2};
items['Cyan Tinted Glass'] = {pos: 1298, section: 40};
items['Cyan Tinted Glass Pane'] = {pos: 6, section: 40};
items['Cyan Wood Planks'] = {pos: 247, section: 30};
items['Cyan Wool'] = {pos: 1526, section: 7};
items['Cyan Wool Revision 2'] = {pos: 727, section: 40};
items['Cyanoacrylate'] = {pos: 1750, section: 33};
items['Damaged Anvil'] = {pos: 3602, section: 26};
items['Damaged Arrow Loaded Crossbow'] = {pos: 2384, section: 28};
items['Damaged Bow'] = {pos: 1281, section: 28};
items['Damaged Carrot on a Stick'] = {pos: 3535, section: 25};
items['Damaged Chainmail Boots'] = {pos: 2478, section: 1};
items['Damaged Chainmail Chestplate'] = {pos: 2479, section: 1};
items['Damaged Chainmail Helmet'] = {pos: 2480, section: 1};
items['Damaged Chainmail Leggings'] = {pos: 2481, section: 1};
items['Damaged Crossbow'] = {pos: 2385, section: 28};
items['Damaged Diamond Axe'] = {pos: 3536, section: 25};
items['Damaged Diamond Boots'] = {pos: 2482, section: 1};
items['Damaged Diamond Chestplate'] = {pos: 2483, section: 1};
items['Damaged Diamond Helmet'] = {pos: 2484, section: 1};
items['Damaged Diamond Hoe'] = {pos: 3537, section: 25};
items['Damaged Diamond Leggings'] = {pos: 2485, section: 1};
items['Damaged Diamond Pickaxe'] = {pos: 3538, section: 25};
items['Damaged Diamond Shovel'] = {pos: 3539, section: 25};
items['Damaged Diamond Sword'] = {pos: 3630, section: 28};
items['Damaged Elytra'] = {pos: 2486, section: 1};
items['Damaged Firework Loaded Crossbow'] = {pos: 2386, section: 28};
items['Damaged Fishing Rod'] = {pos: 3540, section: 25};
items['Damaged Flint and Steel'] = {pos: 3541, section: 25};
items['Damaged Golden Axe'] = {pos: 3542, section: 25};
items['Damaged Golden Boots'] = {pos: 2487, section: 1};
items['Damaged Golden Chestplate'] = {pos: 2488, section: 1};
items['Damaged Golden Helmet'] = {pos: 2489, section: 1};
items['Damaged Golden Hoe'] = {pos: 3543, section: 25};
items['Damaged Golden Leggings'] = {pos: 2490, section: 1};
items['Damaged Golden Pickaxe'] = {pos: 3544, section: 25};
items['Damaged Golden Shovel'] = {pos: 3545, section: 25};
items['Damaged Golden Sword'] = {pos: 3631, section: 28};
items['Damaged Iron Axe'] = {pos: 3546, section: 25};
items['Damaged Iron Boots'] = {pos: 2491, section: 1};
items['Damaged Iron Chestplate'] = {pos: 2492, section: 1};
items['Damaged Iron Helmet'] = {pos: 2493, section: 1};
items['Damaged Iron Hoe'] = {pos: 3547, section: 25};
items['Damaged Iron Leggings'] = {pos: 2494, section: 1};
items['Damaged Iron Pickaxe'] = {pos: 3548, section: 25};
items['Damaged Iron Shovel'] = {pos: 3549, section: 25};
items['Damaged Iron Sword'] = {pos: 3632, section: 28};
items['Damaged Leather Boots'] = {pos: 2495, section: 1};
items['Damaged Leather Cap'] = {pos: 2496, section: 1};
items['Damaged Leather Pants'] = {pos: 2497, section: 1};
items['Damaged Leather Tunic'] = {pos: 2498, section: 1};
items['Damaged Netherite Axe'] = {pos: 181, section: 25};
items['Damaged Netherite Boots'] = {pos: 182, section: 1};
items['Damaged Netherite Chestplate'] = {pos: 183, section: 1};
items['Damaged Netherite Helmet'] = {pos: 184, section: 1};
items['Damaged Netherite Hoe'] = {pos: 185, section: 25};
items['Damaged Netherite Leggings'] = {pos: 186, section: 1};
items['Damaged Netherite Pickaxe'] = {pos: 187, section: 25};
items['Damaged Netherite Shovel'] = {pos: 188, section: 25};
items['Damaged Netherite Sword'] = {pos: 189, section: 28};
items['Damaged Shears'] = {pos: 3550, section: 25};
items['Damaged Shield'] = {pos: 2499, section: 1};
items['Damaged Stone Axe'] = {pos: 3551, section: 25};
items['Damaged Stone Hoe'] = {pos: 3552, section: 25};
items['Damaged Stone Pickaxe'] = {pos: 3553, section: 25};
items['Damaged Stone Shovel'] = {pos: 3554, section: 25};
items['Damaged Stone Sword'] = {pos: 3633, section: 28};
items['Damaged Trident'] = {pos: 100, section: 28};
items['Damaged Turtle Shell'] = {pos: 2456, section: 1};
items['Damaged Warped Fungus on a Stick'] = {pos: 382, section: 25};
items['Damaged Wooden Axe'] = {pos: 3555, section: 25};
items['Damaged Wooden Hoe'] = {pos: 3556, section: 25};
items['Damaged Wooden Pickaxe'] = {pos: 3557, section: 25};
items['Damaged Wooden Shovel'] = {pos: 3558, section: 25};
items['Damaged Wooden Sword'] = {pos: 3634, section: 28};
items['Dandelion'] = {pos: 3414, section: 19};
items['Dandelion Yellow'] = {pos: 692, section: 6};
items['Dark Gray Beaker'] = {pos: 1894, section: 35};
items['Dark Gray Cloth'] = {pos: 230, section: 40};
items['Dark Gray Flask'] = {pos: 1905, section: 36};
items['Dark Gray Jar'] = {pos: 1919, section: 37};
items['Dark Oak Boat'] = {pos: 638, section: 27};
items['Dark Oak Boat Revision 2'] = {pos: 3620, section: 29};
items['Dark Oak Boat with Chest'] = {pos: 614, section: 27};
items['Dark Oak Button'] = {pos: 3332, section: 13};
items['Dark Oak Door'] = {pos: 568, section: 13};
items['Dark Oak Door Revision 3'] = {pos: 939, section: 13};
items['Dark Oak Fence'] = {pos: 646, section: 12};
items['Dark Oak Fence BE'] = {pos: 3252, section: 12};
items['Dark Oak Fence Gate'] = {pos: 3251, section: 13};
items['Dark Oak Fence Gate BE'] = {pos: 54, section: 13};
items['Dark Oak Leaves'] = {pos: 3415, section: 19};
items['Dark Oak Log'] = {pos: 3416, section: 19};
items['Dark Oak Planks'] = {pos: 881, section: 12};
items['Dark Oak Pressure Plate'] = {pos: 3333, section: 13};
items['Dark Oak Sapling'] = {pos: 3417, section: 19};
items['Dark Oak Sign'] = {pos: 2397, section: 17};
items['Dark Oak Slab'] = {pos: 3253, section: 12};
items['Dark Oak Stairs'] = {pos: 3254, section: 12};
items['Dark Oak Trapdoor'] = {pos: 1651, section: 13};
items['Dark Oak Wood'] = {pos: 3255, section: 12};
items['Dark Oak Wood Button'] = {pos: 3332, section: 13};
items['Dark Oak Wood Door'] = {pos: 568, section: 13};
items['Dark Oak Wood Fence'] = {pos: 646, section: 12};
items['Dark Oak Wood Fence Gate'] = {pos: 3251, section: 13};
items['Dark Oak Wood Planks'] = {pos: 881, section: 12};
items['Dark Oak Wood Pressure Plate'] = {pos: 3333, section: 13};
items['Dark Oak Wood Sign'] = {pos: 2397, section: 17};
items['Dark Oak Wood Slab'] = {pos: 3253, section: 12};
items['Dark Oak Wood Stairs'] = {pos: 3254, section: 12};
items['Dark Oak Wood Trapdoor'] = {pos: 1651, section: 13};
items['Dark Prismarine'] = {pos: 3362, section: 15};
items['Dark Prismarine Slab'] = {pos: 3256, section: 12};
items['Dark Prismarine Stairs'] = {pos: 3257, section: 12};
items['Darmstadtium'] = {pos: 1799, section: 34};
items['Daylight Detector'] = {pos: 1242, section: 26};
items['Daylight Sensor'] = {pos: 1242, section: 26};
items['Dead Brain Coral'] = {pos: 2368, section: 15};
items['Dead Brain Coral Block'] = {pos: 1718, section: 15};
items['Dead Brain Coral Fan'] = {pos: 2146, section: 15};
items['Dead Brain Coral Fan Revision 1'] = {pos: 1737, section: 29};
items['Dead Bubble Coral'] = {pos: 2369, section: 15};
items['Dead Bubble Coral Block'] = {pos: 1719, section: 15};
items['Dead Bubble Coral Fan'] = {pos: 2147, section: 15};
items['Dead Bubble Coral Fan Revision 1'] = {pos: 1738, section: 29};
items['Dead Bush'] = {pos: 3418, section: 19};
items['Dead Coral'] = {pos: 1701, section: 29};
items['Dead Fire Coral'] = {pos: 2370, section: 15};
items['Dead Fire Coral Block'] = {pos: 1720, section: 15};
items['Dead Fire Coral Fan'] = {pos: 2148, section: 15};
items['Dead Fire Coral Fan Revision 1'] = {pos: 1739, section: 29};
items['Dead Horn Coral'] = {pos: 2371, section: 15};
items['Dead Horn Coral Block'] = {pos: 1721, section: 15};
items['Dead Horn Coral Fan'] = {pos: 2149, section: 15};
items['Dead Horn Coral Fan Revision 1'] = {pos: 1740, section: 29};
items['Dead Tube Coral'] = {pos: 2367, section: 15};
items['Dead Tube Coral Block'] = {pos: 1717, section: 15};
items['Dead Tube Coral Fan'] = {pos: 2150, section: 15};
items['Dead Tube Coral Fan Revision 1'] = {pos: 1741, section: 29};
items['Debug Stick'] = {pos: 1140, section: 23};
items['Deepslate'] = {pos: 503, section: 15};
items['Deepslate Brick Slab'] = {pos: 490, section: 12};
items['Deepslate Brick Stairs'] = {pos: 491, section: 12};
items['Deepslate Brick Wall'] = {pos: 492, section: 12};
items['Deepslate Brick Wall BE'] = {pos: 563, section: 12};
items['Deepslate Bricks'] = {pos: 493, section: 12};
items['Deepslate Coal Ore'] = {pos: 522, section: 18};
items['Deepslate Copper Ore'] = {pos: 523, section: 18};
items['Deepslate Diamond Ore'] = {pos: 514, section: 18};
items['Deepslate Emerald Ore'] = {pos: 524, section: 18};
items['Deepslate Gold Ore'] = {pos: 515, section: 18};
items['Deepslate Iron Ore'] = {pos: 516, section: 18};
items['Deepslate Lapis Lazuli Ore'] = {pos: 517, section: 18};
items['Deepslate Redstone Ore'] = {pos: 518, section: 18};
items['Deepslate Tile Slab'] = {pos: 496, section: 12};
items['Deepslate Tile Stairs'] = {pos: 497, section: 12};
items['Deepslate Tile Wall'] = {pos: 498, section: 12};
items['Deepslate Tile Wall BE'] = {pos: 561, section: 12};
items['Deepslate Tiles'] = {pos: 499, section: 12};
items['Deny'] = {pos: 1436, section: 20};
items['Detector Rail'] = {pos: 3334, section: 13};
items['Diamond'] = {pos: 3508, section: 23};
items['Diamond Axe'] = {pos: 3559, section: 25};
items['Diamond Boots'] = {pos: 2500, section: 1};
items['Diamond Chestplate'] = {pos: 2501, section: 1};
items['Diamond Heart'] = {pos: 118, section: 32};
items['Diamond Helmet'] = {pos: 2502, section: 1};
items['Diamond Hoe'] = {pos: 3560, section: 25};
items['Diamond Horse Armor'] = {pos: 29, section: 1};
items['Diamond Leggings'] = {pos: 2503, section: 1};
items['Diamond Ore'] = {pos: 3392, section: 18};
items['Diamond Pickaxe'] = {pos: 3561, section: 25};
items['Diamond Shovel'] = {pos: 3562, section: 25};
items['Diamond Sword'] = {pos: 3635, section: 28};
items['Diorite'] = {pos: 3363, section: 15};
items['Diorite Slab'] = {pos: 3258, section: 12};
items['Diorite Stairs'] = {pos: 3259, section: 12};
items['Diorite Wall'] = {pos: 3260, section: 12};
items['Diorite Wall BE'] = {pos: 23, section: 12};
items['Dirt'] = {pos: 979, section: 15};
items['Dirt Path'] = {pos: 1348, section: 15};
items['Disc Fragment 5'] = {pos: 631, section: 23};
items['Dispenser'] = {pos: 3603, section: 26};
items['Dispenser Revision 1'] = {pos: 2239, section: 29};
items['Dolphin Spawn Egg'] = {pos: 1967, section: 24};
items['Donkey Spawn Egg'] = {pos: 1371, section: 24};
items['Donkey Spawn Egg Revision 1'] = {pos: 1152, section: 24};
items['Double Smooth Stone Slab'] = {pos: 884, section: 12};
items['Dragon Egg'] = {pos: 3187, section: 8};
items['Dragon Egg BE'] = {pos: 506, section: 8};
items['Dragon Head'] = {pos: 965, section: 14};
items['Dragon Head BE'] = {pos: 216, section: 14};
items['Dragon Head BE Revision 1'] = {pos: 108, section: 29};
items["Dragon's Breath"] = {pos: 3138, section: 3};
items['Dried Kelp'] = {pos: 1682, section: 10};
items['Dried Kelp Block'] = {pos: 1669, section: 12};
items['Dripstone Block'] = {pos: 435, section: 15};
items['Dropper'] = {pos: 3604, section: 26};
items['Drowned Spawn Egg'] = {pos: 1727, section: 24};
items['Dubnium'] = {pos: 1800, section: 34};
items['Dysprosium'] = {pos: 1801, section: 34};
items['Earth Ruby'] = {pos: 130, section: 38};
items['Echo Shard'] = {pos: 622, section: 23};
items['Egg'] = {pos: 3205, section: 10};
items['Einsteinium'] = {pos: 1802, section: 34};
items['Elder Guardian Spawn Egg'] = {pos: 1372, section: 24};
items['Element Constructor'] = {pos: 1933, section: 33};
items['Elixir'] = {pos: 1751, section: 33};
items['Elytra'] = {pos: 2504, section: 1};
items['Emerald'] = {pos: 3509, section: 23};
items['Emerald Ore'] = {pos: 3393, section: 18};
items['Empty Locator Map'] = {pos: 3563, section: 25};
items['Empty Map'] = {pos: 3563, section: 25};
items['Enchanted Apple'] = {pos: 261, section: 10};
items['Enchanted Book'] = {pos: 3564, section: 25};
items['Enchanted Golden Apple'] = {pos: 261, section: 10};
items['Enchanting Table'] = {pos: 3605, section: 26};
items['Enchanting Table BE'] = {pos: 214, section: 26};
items['Enchantment Table'] = {pos: 3605, section: 26};
items['End Crystal'] = {pos: 3188, section: 8};
items['End Gateway'] = {pos: 1561, section: 8};
items['End Gateway BE'] = {pos: 352, section: 8};
items['End Portal'] = {pos: 1010, section: 17};
items['End Portal BE'] = {pos: 353, section: 8};
items['End Portal Frame'] = {pos: 3189, section: 8};
items['End Portal Frame BE'] = {pos: 507, section: 8};
items['End Rod'] = {pos: 3190, section: 8};
items['End Rod BE'] = {pos: 208, section: 8};
items['End Stone'] = {pos: 3191, section: 8};
items['End Stone Brick Slab'] = {pos: 2418, section: 12};
items['End Stone Brick Stairs'] = {pos: 2419, section: 12};
items['End Stone Brick Wall'] = {pos: 2401, section: 12};
items['End Stone Brick Wall BE'] = {pos: 24, section: 12};
items['End Stone Bricks'] = {pos: 3261, section: 12};
items['Ender Chest'] = {pos: 3606, section: 26};
items['Ender Chest BE'] = {pos: 2372, section: 26};
items['Ender Pearl'] = {pos: 3510, section: 23};
items['Enderman Spawn Egg'] = {pos: 1148, section: 24};
items['Enderman Spawn Egg Revision 1'] = {pos: 1387, section: 39};
items['Endermite Spawn Egg'] = {pos: 1149, section: 24};
items['Erbium'] = {pos: 1803, section: 34};
items['Etho Slab'] = {pos: 2117, section: 32};
items['Europium'] = {pos: 1804, section: 34};
items['Evoker Spawn Egg'] = {pos: 1411, section: 24};
items['Exposed Copper'] = {pos: 411, section: 12};
items['Exposed Copper Block'] = {pos: 411, section: 12};
items['Exposed Cut Copper'] = {pos: 412, section: 12};
items['Exposed Cut Copper Block'] = {pos: 412, section: 12};