-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemtoschematic.js
1917 lines (1839 loc) · 107 KB
/
schemtoschematic.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
// Copyright 2020 Ethan Bulmer
if (typeof nbt === 'undefined') {
nbt = require('./nbt');
}
if (typeof zlib === 'undefined') {
zlib = require('zlib');
}
var blocksNamespace = {
'minecraft:air':0,
'minecraft:stone':16,
'minecraft:granite':17,
'minecraft:polished_granite':18,
'minecraft:diorite':19,
'minecraft:polished_diorite':20,
'minecraft:andesite':21,
'minecraft:polished_andesite':22,
'minecraft:grass_block[snowy=false]':32,
'minecraft:dirt':48,
'minecraft:coarse_dirt':49,
'minecraft:podzol[snowy=false]':50,
'minecraft:cobblestone':64,
'minecraft:oak_planks':80,
'minecraft:spruce_planks':81,
'minecraft:birch_planks':82,
'minecraft:jungle_planks':83,
'minecraft:acacia_planks':84,
'minecraft:dark_oak_planks':85,
'minecraft:oak_sapling[stage=0]':96,
'minecraft:spruce_sapling[stage=0]':97,
'minecraft:birch_sapling[stage=0]':98,
'minecraft:jungle_sapling[stage=0]':99,
'minecraft:acacia_sapling[stage=0]':100,
'minecraft:dark_oak_sapling[stage=0]':101,
'minecraft:oak_sapling[stage=1]':104,
'minecraft:spruce_sapling[stage=1]':105,
'minecraft:birch_sapling[stage=1]':106,
'minecraft:jungle_sapling[stage=1]':107,
'minecraft:acacia_sapling[stage=1]':108,
'minecraft:dark_oak_sapling[stage=1]':109,
'minecraft:bedrock':112,
'minecraft:water[level=0]':144,
'minecraft:water[level=1]':145,
'minecraft:water[level=2]':146,
'minecraft:water[level=3]':147,
'minecraft:water[level=4]':148,
'minecraft:water[level=5]':149,
'minecraft:water[level=6]':150,
'minecraft:water[level=7]':151,
'minecraft:water[level=8]':152,
'minecraft:water[level=9]':153,
'minecraft:water[level=10]':154,
'minecraft:water[level=11]':155,
'minecraft:water[level=12]':156,
'minecraft:water[level=13]':157,
'minecraft:water[level=14]':158,
'minecraft:water[level=15]':159,
'minecraft:lava[level=0]':176,
'minecraft:lava[level=1]':177,
'minecraft:lava[level=2]':178,
'minecraft:lava[level=3]':179,
'minecraft:lava[level=4]':180,
'minecraft:lava[level=5]':181,
'minecraft:lava[level=6]':182,
'minecraft:lava[level=7]':183,
'minecraft:lava[level=8]':184,
'minecraft:lava[level=9]':185,
'minecraft:lava[level=10]':186,
'minecraft:lava[level=11]':187,
'minecraft:lava[level=12]':188,
'minecraft:lava[level=13]':189,
'minecraft:lava[level=14]':190,
'minecraft:lava[level=15]':191,
'minecraft:sand':192,
'minecraft:red_sand':193,
'minecraft:gravel':208,
'minecraft:gold_ore':224,
'minecraft:iron_ore':240,
'minecraft:coal_ore':256,
'minecraft:oak_log[axis=y]':272,
'minecraft:spruce_log[axis=y]':273,
'minecraft:birch_log[axis=y]':274,
'minecraft:jungle_log[axis=y]':275,
'minecraft:oak_log[axis=x]':276,
'minecraft:spruce_log[axis=x]':277,
'minecraft:birch_log[axis=x]':278,
'minecraft:jungle_log[axis=x]':279,
'minecraft:oak_log[axis=z]':280,
'minecraft:spruce_log[axis=z]':281,
'minecraft:birch_log[axis=z]':282,
'minecraft:jungle_log[axis=z]':283,
'minecraft:oak_wood[axis=y]':284,
'minecraft:spruce_wood[axis=y]':285,
'minecraft:birch_wood[axis=y]':286,
'minecraft:jungle_wood[axis=y]':287,
'minecraft:oak_leaves[distance=1,persistent=false]':288,
'minecraft:spruce_leaves[distance=1,persistent=false]':289,
'minecraft:birch_leaves[distance=1,persistent=false]':290,
'minecraft:jungle_leaves[distance=1,persistent=false]':291,
'minecraft:oak_leaves[distance=1,persistent=true]':292,
'minecraft:spruce_leaves[distance=1,persistent=true]':293,
'minecraft:birch_leaves[distance=1,persistent=true]':294,
'minecraft:jungle_leaves[distance=1,persistent=true]':295,
'minecraft:oak_leaves[distance=2,persistent=false]':296,
'minecraft:spruce_leaves[distance=2,persistent=false]':297,
'minecraft:birch_leaves[distance=2,persistent=false]':298,
'minecraft:jungle_leaves[distance=2,persistent=false]':299,
'minecraft:oak_leaves[distance=2,persistent=true]':300,
'minecraft:spruce_leaves[distance=2,persistent=true]':301,
'minecraft:birch_leaves[distance=2,persistent=true]':302,
'minecraft:jungle_leaves[distance=2,persistent=true]':303,
'minecraft:sponge':304,
'minecraft:wet_sponge':305,
'minecraft:glass':320,
'minecraft:lapis_ore':336,
'minecraft:lapis_block':352,
'minecraft:dispenser[facing=down,triggered=false]':368,
'minecraft:dispenser[facing=up,triggered=false]':369,
'minecraft:dispenser[facing=north,triggered=false]':370,
'minecraft:dispenser[facing=south,triggered=false]':371,
'minecraft:dispenser[facing=west,triggered=false]':372,
'minecraft:dispenser[facing=east,triggered=false]':373,
'minecraft:dispenser[facing=down,triggered=true]':376,
'minecraft:dispenser[facing=up,triggered=true]':377,
'minecraft:dispenser[facing=north,triggered=true]':378,
'minecraft:dispenser[facing=south,triggered=true]':379,
'minecraft:dispenser[facing=west,triggered=true]':380,
'minecraft:dispenser[facing=east,triggered=true]':381,
'minecraft:sandstone':384,
'minecraft:chiseled_sandstone':385,
'minecraft:cut_sandstone':386,
'minecraft:note_block[instrument=harp,note=0,powered=false]':400,
'minecraft:red_bed[facing=south,occupied=false,part=foot]':416,
'minecraft:red_bed[facing=west,occupied=false,part=foot]':417,
'minecraft:red_bed[facing=north,occupied=false,part=foot]':418,
'minecraft:red_bed[facing=east,occupied=false,part=foot]':419,
'minecraft:red_bed[facing=south,occupied=false,part=head]':424,
'minecraft:red_bed[facing=west,occupied=false,part=head]':425,
'minecraft:red_bed[facing=north,occupied=false,part=head]':426,
'minecraft:red_bed[facing=east,occupied=false,part=head]':427,
'minecraft:red_bed[facing=south,occupied=true,part=head]':428,
'minecraft:red_bed[facing=west,occupied=true,part=head]':429,
'minecraft:red_bed[facing=north,occupied=true,part=head]':430,
'minecraft:red_bed[facing=east,occupied=true,part=head]':431,
'minecraft:powered_rail[powered=false,shape=north_south]':432,
'minecraft:powered_rail[powered=false,shape=east_west]':433,
'minecraft:powered_rail[powered=false,shape=ascending_east]':434,
'minecraft:powered_rail[powered=false,shape=ascending_west]':435,
'minecraft:powered_rail[powered=false,shape=ascending_north]':436,
'minecraft:powered_rail[powered=false,shape=ascending_south]':437,
'minecraft:powered_rail[powered=true,shape=north_south]':440,
'minecraft:powered_rail[powered=true,shape=east_west]':441,
'minecraft:powered_rail[powered=true,shape=ascending_east]':442,
'minecraft:powered_rail[powered=true,shape=ascending_west]':443,
'minecraft:powered_rail[powered=true,shape=ascending_north]':444,
'minecraft:powered_rail[powered=true,shape=ascending_south]':445,
'minecraft:detector_rail[powered=false,shape=north_south]':448,
'minecraft:detector_rail[powered=false,shape=east_west]':449,
'minecraft:detector_rail[powered=false,shape=ascending_east]':450,
'minecraft:detector_rail[powered=false,shape=ascending_west]':451,
'minecraft:detector_rail[powered=false,shape=ascending_north]':452,
'minecraft:detector_rail[powered=false,shape=ascending_south]':453,
'minecraft:detector_rail[powered=true,shape=north_south]':456,
'minecraft:detector_rail[powered=true,shape=east_west]':457,
'minecraft:detector_rail[powered=true,shape=ascending_east]':458,
'minecraft:detector_rail[powered=true,shape=ascending_west]':459,
'minecraft:detector_rail[powered=true,shape=ascending_north]':460,
'minecraft:detector_rail[powered=true,shape=ascending_south]':461,
'minecraft:sticky_piston[extended=false,facing=down]':464,
'minecraft:sticky_piston[extended=false,facing=up]':465,
'minecraft:sticky_piston[extended=false,facing=north]':466,
'minecraft:sticky_piston[extended=false,facing=south]':467,
'minecraft:sticky_piston[extended=false,facing=west]':468,
'minecraft:sticky_piston[extended=false,facing=east]':469,
'minecraft:sticky_piston[extended=true,facing=down]':472,
'minecraft:sticky_piston[extended=true,facing=up]':473,
'minecraft:sticky_piston[extended=true,facing=north]':474,
'minecraft:sticky_piston[extended=true,facing=south]':475,
'minecraft:sticky_piston[extended=true,facing=west]':476,
'minecraft:sticky_piston[extended=true,facing=east]':477,
'minecraft:cobweb':480,
'minecraft:dead_bush':512,
'minecraft:grass':497,
'minecraft:fern':498,
'minecraft:piston[extended=false,facing=down]':528,
'minecraft:piston[extended=false,facing=up]':529,
'minecraft:piston[extended=false,facing=north]':530,
'minecraft:piston[extended=false,facing=south]':531,
'minecraft:piston[extended=false,facing=west]':532,
'minecraft:piston[extended=false,facing=east]':533,
'minecraft:piston[extended=true,facing=down]':536,
'minecraft:piston[extended=true,facing=up]':537,
'minecraft:piston[extended=true,facing=north]':538,
'minecraft:piston[extended=true,facing=south]':539,
'minecraft:piston[extended=true,facing=west]':540,
'minecraft:piston[extended=true,facing=east]':541,
'minecraft:piston_head[facing=down,short=false,type=normal]':544,
'minecraft:piston_head[facing=up,short=false,type=normal]':545,
'minecraft:piston_head[facing=north,short=false,type=normal]':546,
'minecraft:piston_head[facing=south,short=false,type=normal]':547,
'minecraft:piston_head[facing=west,short=false,type=normal]':548,
'minecraft:piston_head[facing=east,short=false,type=normal]':549,
'minecraft:piston_head[facing=down,short=false,type=sticky]':552,
'minecraft:piston_head[facing=up,short=false,type=sticky]':553,
'minecraft:piston_head[facing=north,short=false,type=sticky]':554,
'minecraft:piston_head[facing=south,short=false,type=sticky]':555,
'minecraft:piston_head[facing=west,short=false,type=sticky]':556,
'minecraft:piston_head[facing=east,short=false,type=sticky]':557,
'minecraft:white_wool':560,
'minecraft:orange_wool':561,
'minecraft:magenta_wool':562,
'minecraft:light_blue_wool':563,
'minecraft:yellow_wool':564,
'minecraft:lime_wool':565,
'minecraft:pink_wool':566,
'minecraft:gray_wool':567,
'minecraft:light_gray_wool':568,
'minecraft:cyan_wool':569,
'minecraft:purple_wool':570,
'minecraft:blue_wool':571,
'minecraft:brown_wool':572,
'minecraft:green_wool':573,
'minecraft:red_wool':574,
'minecraft:black_wool':575,
'minecraft:moving_piston[facing=down,type=normal]':576,
'minecraft:moving_piston[facing=up,type=normal]':577,
'minecraft:moving_piston[facing=north,type=normal]':578,
'minecraft:moving_piston[facing=south,type=normal]':579,
'minecraft:moving_piston[facing=west,type=normal]':580,
'minecraft:moving_piston[facing=east,type=normal]':581,
'minecraft:moving_piston[facing=down,type=sticky]':584,
'minecraft:moving_piston[facing=up,type=sticky]':585,
'minecraft:moving_piston[facing=north,type=sticky]':586,
'minecraft:moving_piston[facing=south,type=sticky]':587,
'minecraft:moving_piston[facing=west,type=sticky]':588,
'minecraft:moving_piston[facing=east,type=sticky]':589,
'minecraft:dandelion':592,
'minecraft:poppy':608,
'minecraft:blue_orchid':609,
'minecraft:allium':610,
'minecraft:azure_bluet':611,
'minecraft:red_tulip':612,
'minecraft:orange_tulip':613,
'minecraft:white_tulip':614,
'minecraft:pink_tulip':615,
'minecraft:oxeye_daisy':616,
'minecraft:brown_mushroom':624,
'minecraft:red_mushroom':640,
'minecraft:gold_block':656,
'minecraft:iron_block':672,
'minecraft:stone_slab[type=double,waterlogged=false]':688,
'minecraft:sandstone_slab[type=double,waterlogged=false]':689,
'minecraft:petrified_oak_slab[type=double,waterlogged=false]':698,
'minecraft:cobblestone_slab[type=double,waterlogged=false]':699,
'minecraft:brick_slab[type=double,waterlogged=false]':700,
'minecraft:stone_brick_slab[type=double,waterlogged=false]':701,
'minecraft:nether_brick_slab[type=double,waterlogged=false]':702,
'minecraft:quartz_slab[type=double,waterlogged=false]':695,
'minecraft:smooth_stone':696,
'minecraft:smooth_sandstone':697,
'minecraft:smooth_quartz':703,
'minecraft:stone_slab[type=bottom,waterlogged=false]':704,
'minecraft:sandstone_slab[type=bottom,waterlogged=false]':705,
'minecraft:petrified_oak_slab[type=bottom,waterlogged=false]':706,
'minecraft:cobblestone_slab[type=bottom,waterlogged=false]':707,
'minecraft:brick_slab[type=bottom,waterlogged=false]':708,
'minecraft:stone_brick_slab[type=bottom,waterlogged=false]':709,
'minecraft:nether_brick_slab[type=bottom,waterlogged=false]':710,
'minecraft:quartz_slab[type=bottom,waterlogged=false]':711,
'minecraft:stone_slab[type=top,waterlogged=false]':712,
'minecraft:sandstone_slab[type=top,waterlogged=false]':713,
'minecraft:petrified_oak_slab[type=top,waterlogged=false]':714,
'minecraft:cobblestone_slab[type=top,waterlogged=false]':715,
'minecraft:brick_slab[type=top,waterlogged=false]':716,
'minecraft:stone_brick_slab[type=top,waterlogged=false]':717,
'minecraft:nether_brick_slab[type=top,waterlogged=false]':718,
'minecraft:quartz_slab[type=top,waterlogged=false]':719,
'minecraft:bricks':720,
'minecraft:tnt':737,
'minecraft:bookshelf':752,
'minecraft:mossy_cobblestone':768,
'minecraft:obsidian':784,
'minecraft:wall_torch[facing=east]':801,
'minecraft:wall_torch[facing=west]':802,
'minecraft:wall_torch[facing=south]':803,
'minecraft:wall_torch[facing=north]':804,
'minecraft:torch':805,
'minecraft:fire[age=0,east=false,north=false,south=false,up=false,west=false]':816,
'minecraft:fire[age=1,east=false,north=false,south=false,up=false,west=false]':817,
'minecraft:fire[age=2,east=false,north=false,south=false,up=false,west=false]':818,
'minecraft:fire[age=3,east=false,north=false,south=false,up=false,west=false]':819,
'minecraft:fire[age=4,east=false,north=false,south=false,up=false,west=false]':820,
'minecraft:fire[age=5,east=false,north=false,south=false,up=false,west=false]':821,
'minecraft:fire[age=6,east=false,north=false,south=false,up=false,west=false]':822,
'minecraft:fire[age=7,east=false,north=false,south=false,up=false,west=false]':823,
'minecraft:fire[age=8,east=false,north=false,south=false,up=false,west=false]':824,
'minecraft:fire[age=9,east=false,north=false,south=false,up=false,west=false]':825,
'minecraft:fire[age=10,east=false,north=false,south=false,up=false,west=false]':826,
'minecraft:fire[age=11,east=false,north=false,south=false,up=false,west=false]':827,
'minecraft:fire[age=12,east=false,north=false,south=false,up=false,west=false]':828,
'minecraft:fire[age=13,east=false,north=false,south=false,up=false,west=false]':829,
'minecraft:fire[age=14,east=false,north=false,south=false,up=false,west=false]':830,
'minecraft:fire[age=15,east=false,north=false,south=false,up=false,west=false]':831,
'minecraft:spawner':832,
'minecraft:oak_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':848,
'minecraft:oak_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':849,
'minecraft:oak_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':850,
'minecraft:oak_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':851,
'minecraft:oak_stairs[facing=east,half=top,shape=straight,waterlogged=false]':852,
'minecraft:oak_stairs[facing=west,half=top,shape=straight,waterlogged=false]':853,
'minecraft:oak_stairs[facing=south,half=top,shape=straight,waterlogged=false]':854,
'minecraft:oak_stairs[facing=north,half=top,shape=straight,waterlogged=false]':855,
'minecraft:chest[facing=north,type=single,waterlogged=false]':866,
'minecraft:chest[facing=south,type=single,waterlogged=false]':867,
'minecraft:chest[facing=west,type=single,waterlogged=false]':868,
'minecraft:chest[facing=east,type=single,waterlogged=false]':869,
'minecraft:redstone_wire[east=none,north=none,power=0,south=none,west=none]':880,
'minecraft:redstone_wire[east=none,north=none,power=1,south=none,west=none]':881,
'minecraft:redstone_wire[east=none,north=none,power=2,south=none,west=none]':882,
'minecraft:redstone_wire[east=none,north=none,power=3,south=none,west=none]':883,
'minecraft:redstone_wire[east=none,north=none,power=4,south=none,west=none]':884,
'minecraft:redstone_wire[east=none,north=none,power=5,south=none,west=none]':885,
'minecraft:redstone_wire[east=none,north=none,power=6,south=none,west=none]':886,
'minecraft:redstone_wire[east=none,north=none,power=7,south=none,west=none]':887,
'minecraft:redstone_wire[east=none,north=none,power=8,south=none,west=none]':888,
'minecraft:redstone_wire[east=none,north=none,power=9,south=none,west=none]':889,
'minecraft:redstone_wire[east=none,north=none,power=10,south=none,west=none]':890,
'minecraft:redstone_wire[east=none,north=none,power=11,south=none,west=none]':891,
'minecraft:redstone_wire[east=none,north=none,power=12,south=none,west=none]':892,
'minecraft:redstone_wire[east=none,north=none,power=13,south=none,west=none]':893,
'minecraft:redstone_wire[east=none,north=none,power=14,south=none,west=none]':894,
'minecraft:redstone_wire[east=none,north=none,power=15,south=none,west=none]':895,
'minecraft:diamond_ore':896,
'minecraft:diamond_block':912,
'minecraft:crafting_table':928,
'minecraft:wheat[age=0]':944,
'minecraft:wheat[age=1]':945,
'minecraft:wheat[age=2]':946,
'minecraft:wheat[age=3]':947,
'minecraft:wheat[age=4]':948,
'minecraft:wheat[age=5]':949,
'minecraft:wheat[age=6]':950,
'minecraft:wheat[age=7]':951,
'minecraft:farmland[moisture=0]':960,
'minecraft:farmland[moisture=1]':961,
'minecraft:farmland[moisture=2]':962,
'minecraft:farmland[moisture=3]':963,
'minecraft:farmland[moisture=4]':964,
'minecraft:farmland[moisture=5]':965,
'minecraft:farmland[moisture=6]':966,
'minecraft:farmland[moisture=7]':967,
'minecraft:furnace[facing=north,lit=false]':978,
'minecraft:furnace[facing=south,lit=false]':979,
'minecraft:furnace[facing=west,lit=false]':980,
'minecraft:furnace[facing=east,lit=false]':981,
'minecraft:furnace[facing=north,lit=true]':994,
'minecraft:furnace[facing=south,lit=true]':995,
'minecraft:furnace[facing=west,lit=true]':996,
'minecraft:furnace[facing=east,lit=true]':997,
'minecraft:sign[rotation=0,waterlogged=false]':1008,
'minecraft:sign[rotation=1,waterlogged=false]':1009,
'minecraft:sign[rotation=2,waterlogged=false]':1010,
'minecraft:sign[rotation=3,waterlogged=false]':1011,
'minecraft:sign[rotation=4,waterlogged=false]':1012,
'minecraft:sign[rotation=5,waterlogged=false]':1013,
'minecraft:sign[rotation=6,waterlogged=false]':1014,
'minecraft:sign[rotation=7,waterlogged=false]':1015,
'minecraft:sign[rotation=8,waterlogged=false]':1016,
'minecraft:sign[rotation=9,waterlogged=false]':1017,
'minecraft:sign[rotation=10,waterlogged=false]':1018,
'minecraft:sign[rotation=11,waterlogged=false]':1019,
'minecraft:sign[rotation=12,waterlogged=false]':1020,
'minecraft:sign[rotation=13,waterlogged=false]':1021,
'minecraft:sign[rotation=14,waterlogged=false]':1022,
'minecraft:sign[rotation=15,waterlogged=false]':1023,
'minecraft:oak_door[facing=east,half=lower,hinge=right,open=false,powered=false]':1024,
'minecraft:oak_door[facing=south,half=lower,hinge=right,open=false,powered=false]':1025,
'minecraft:oak_door[facing=west,half=lower,hinge=right,open=false,powered=false]':1026,
'minecraft:oak_door[facing=north,half=lower,hinge=right,open=false,powered=false]':1027,
'minecraft:oak_door[facing=east,half=lower,hinge=right,open=true,powered=false]':1028,
'minecraft:oak_door[facing=south,half=lower,hinge=right,open=true,powered=false]':1029,
'minecraft:oak_door[facing=west,half=lower,hinge=right,open=true,powered=false]':1030,
'minecraft:oak_door[facing=north,half=lower,hinge=right,open=true,powered=false]':1031,
'minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=false]':1032,
'minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=false]':1033,
'minecraft:oak_door[facing=east,half=upper,hinge=left,open=false,powered=true]':1034,
'minecraft:oak_door[facing=east,half=upper,hinge=right,open=false,powered=true]':1035,
'minecraft:ladder[facing=north,waterlogged=false]':1042,
'minecraft:ladder[facing=south,waterlogged=false]':1043,
'minecraft:ladder[facing=west,waterlogged=false]':1044,
'minecraft:ladder[facing=east,waterlogged=false]':1045,
'minecraft:rail[shape=north_south]':1056,
'minecraft:rail[shape=east_west]':1057,
'minecraft:rail[shape=ascending_east]':1058,
'minecraft:rail[shape=ascending_west]':1059,
'minecraft:rail[shape=ascending_north]':1060,
'minecraft:rail[shape=ascending_south]':1061,
'minecraft:rail[shape=south_east]':1062,
'minecraft:rail[shape=south_west]':1063,
'minecraft:rail[shape=north_west]':1064,
'minecraft:rail[shape=north_east]':1065,
'minecraft:cobblestone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':1072,
'minecraft:cobblestone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':1073,
'minecraft:cobblestone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':1074,
'minecraft:cobblestone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':1075,
'minecraft:cobblestone_stairs[facing=east,half=top,shape=straight,waterlogged=false]':1076,
'minecraft:cobblestone_stairs[facing=west,half=top,shape=straight,waterlogged=false]':1077,
'minecraft:cobblestone_stairs[facing=south,half=top,shape=straight,waterlogged=false]':1078,
'minecraft:cobblestone_stairs[facing=north,half=top,shape=straight,waterlogged=false]':1079,
'minecraft:wall_sign[facing=north,waterlogged=false]':1090,
'minecraft:wall_sign[facing=south,waterlogged=false]':1091,
'minecraft:wall_sign[facing=west,waterlogged=false]':1092,
'minecraft:wall_sign[facing=east,waterlogged=false]':1093,
'minecraft:lever[face=ceiling,facing=west,powered=false]':1104,
'minecraft:lever[face=wall,facing=east,powered=false]':1105,
'minecraft:lever[face=wall,facing=west,powered=false]':1106,
'minecraft:lever[face=wall,facing=south,powered=false]':1107,
'minecraft:lever[face=wall,facing=north,powered=false]':1108,
'minecraft:lever[face=floor,facing=north,powered=false]':1109,
'minecraft:lever[face=floor,facing=west,powered=false]':1110,
'minecraft:lever[face=ceiling,facing=north,powered=false]':1111,
'minecraft:lever[face=ceiling,facing=west,powered=true]':1112,
'minecraft:lever[face=wall,facing=east,powered=true]':1113,
'minecraft:lever[face=wall,facing=west,powered=true]':1114,
'minecraft:lever[face=wall,facing=south,powered=true]':1115,
'minecraft:lever[face=wall,facing=north,powered=true]':1116,
'minecraft:lever[face=floor,facing=north,powered=true]':1117,
'minecraft:lever[face=floor,facing=west,powered=true]':1118,
'minecraft:lever[face=ceiling,facing=north,powered=true]':1119,
'minecraft:stone_pressure_plate[powered=false]':1120,
'minecraft:stone_pressure_plate[powered=true]':1121,
'minecraft:iron_door[facing=east,half=lower,hinge=right,open=false,powered=false]':1136,
'minecraft:iron_door[facing=south,half=lower,hinge=right,open=false,powered=false]':1137,
'minecraft:iron_door[facing=west,half=lower,hinge=right,open=false,powered=false]':1138,
'minecraft:iron_door[facing=north,half=lower,hinge=right,open=false,powered=false]':1139,
'minecraft:iron_door[facing=east,half=lower,hinge=right,open=true,powered=false]':1140,
'minecraft:iron_door[facing=south,half=lower,hinge=right,open=true,powered=false]':1141,
'minecraft:iron_door[facing=west,half=lower,hinge=right,open=true,powered=false]':1142,
'minecraft:iron_door[facing=north,half=lower,hinge=right,open=true,powered=false]':1143,
'minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=false]':1144,
'minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=false]':1145,
'minecraft:iron_door[facing=east,half=upper,hinge=left,open=false,powered=true]':1146,
'minecraft:iron_door[facing=east,half=upper,hinge=right,open=false,powered=true]':1147,
'minecraft:oak_pressure_plate[powered=false]':1152,
'minecraft:oak_pressure_plate[powered=true]':1153,
'minecraft:redstone_ore[lit=false]':1168,
'minecraft:redstone_ore[lit=true]':1184,
'minecraft:redstone_wall_torch[facing=east,lit=false]':1201,
'minecraft:redstone_wall_torch[facing=west,lit=false]':1202,
'minecraft:redstone_wall_torch[facing=south,lit=false]':1203,
'minecraft:redstone_wall_torch[facing=north,lit=false]':1204,
'minecraft:redstone_torch[lit=false]':1205,
'minecraft:redstone_wall_torch[facing=east,lit=true]':1217,
'minecraft:redstone_wall_torch[facing=west,lit=true]':1218,
'minecraft:redstone_wall_torch[facing=south,lit=true]':1219,
'minecraft:redstone_wall_torch[facing=north,lit=true]':1220,
'minecraft:redstone_torch[lit=true]':1221,
'minecraft:stone_button[face=ceiling,facing=north,powered=false]':1232,
'minecraft:stone_button[face=wall,facing=east,powered=false]':1233,
'minecraft:stone_button[face=wall,facing=west,powered=false]':1234,
'minecraft:stone_button[face=wall,facing=south,powered=false]':1235,
'minecraft:stone_button[face=wall,facing=north,powered=false]':1236,
'minecraft:stone_button[face=floor,facing=north,powered=false]':1237,
'minecraft:stone_button[face=ceiling,facing=north,powered=true]':1240,
'minecraft:stone_button[face=wall,facing=east,powered=true]':1241,
'minecraft:stone_button[face=wall,facing=west,powered=true]':1242,
'minecraft:stone_button[face=wall,facing=south,powered=true]':1243,
'minecraft:stone_button[face=wall,facing=north,powered=true]':1244,
'minecraft:stone_button[face=floor,facing=north,powered=true]':1245,
'minecraft:snow[layers=1]':1248,
'minecraft:snow[layers=2]':1249,
'minecraft:snow[layers=3]':1250,
'minecraft:snow[layers=4]':1251,
'minecraft:snow[layers=5]':1252,
'minecraft:snow[layers=6]':1253,
'minecraft:snow[layers=7]':1254,
'minecraft:snow[layers=8]':1255,
'minecraft:ice':1264,
'minecraft:snow_block':1280,
'minecraft:cactus[age=0]':1296,
'minecraft:cactus[age=1]':1297,
'minecraft:cactus[age=2]':1298,
'minecraft:cactus[age=3]':1299,
'minecraft:cactus[age=4]':1300,
'minecraft:cactus[age=5]':1301,
'minecraft:cactus[age=6]':1302,
'minecraft:cactus[age=7]':1303,
'minecraft:cactus[age=8]':1304,
'minecraft:cactus[age=9]':1305,
'minecraft:cactus[age=10]':1306,
'minecraft:cactus[age=11]':1307,
'minecraft:cactus[age=12]':1308,
'minecraft:cactus[age=13]':1309,
'minecraft:cactus[age=14]':1310,
'minecraft:cactus[age=15]':1311,
'minecraft:clay':1312,
'minecraft:sugar_cane[age=0]':1328,
'minecraft:sugar_cane[age=1]':1329,
'minecraft:sugar_cane[age=2]':1330,
'minecraft:sugar_cane[age=3]':1331,
'minecraft:sugar_cane[age=4]':1332,
'minecraft:sugar_cane[age=5]':1333,
'minecraft:sugar_cane[age=6]':1334,
'minecraft:sugar_cane[age=7]':1335,
'minecraft:sugar_cane[age=8]':1336,
'minecraft:sugar_cane[age=9]':1337,
'minecraft:sugar_cane[age=10]':1338,
'minecraft:sugar_cane[age=11]':1339,
'minecraft:sugar_cane[age=12]':1340,
'minecraft:sugar_cane[age=13]':1341,
'minecraft:sugar_cane[age=14]':1342,
'minecraft:sugar_cane[age=15]':1343,
'minecraft:jukebox[has_record=false]':1344,
'minecraft:jukebox[has_record=true]':1345,
'minecraft:oak_fence[east=false,north=false,south=false,waterlogged=false,west=false]':1360,
'minecraft:carved_pumpkin[facing=south]':1376,
'minecraft:carved_pumpkin[facing=west]':1377,
'minecraft:carved_pumpkin[facing=north]':1378,
'minecraft:carved_pumpkin[facing=east]':1379,
'minecraft:netherrack':1392,
'minecraft:soul_sand':1408,
'minecraft:glowstone':1424,
'minecraft:nether_portal[axis=x]':1441,
'minecraft:nether_portal[axis=z]':1442,
'minecraft:jack_o_lantern[facing=south]':1456,
'minecraft:jack_o_lantern[facing=west]':1457,
'minecraft:jack_o_lantern[facing=north]':1458,
'minecraft:jack_o_lantern[facing=east]':1459,
'minecraft:cake[bites=0]':1472,
'minecraft:cake[bites=1]':1473,
'minecraft:cake[bites=2]':1474,
'minecraft:cake[bites=3]':1475,
'minecraft:cake[bites=4]':1476,
'minecraft:cake[bites=5]':1477,
'minecraft:cake[bites=6]':1478,
'minecraft:repeater[delay=1,facing=south,locked=false,powered=false]':1488,
'minecraft:repeater[delay=1,facing=west,locked=false,powered=false]':1489,
'minecraft:repeater[delay=1,facing=north,locked=false,powered=false]':1490,
'minecraft:repeater[delay=1,facing=east,locked=false,powered=false]':1491,
'minecraft:repeater[delay=2,facing=south,locked=false,powered=false]':1492,
'minecraft:repeater[delay=2,facing=west,locked=false,powered=false]':1493,
'minecraft:repeater[delay=2,facing=north,locked=false,powered=false]':1494,
'minecraft:repeater[delay=2,facing=east,locked=false,powered=false]':1495,
'minecraft:repeater[delay=3,facing=south,locked=false,powered=false]':1496,
'minecraft:repeater[delay=3,facing=west,locked=false,powered=false]':1497,
'minecraft:repeater[delay=3,facing=north,locked=false,powered=false]':1498,
'minecraft:repeater[delay=3,facing=east,locked=false,powered=false]':1499,
'minecraft:repeater[delay=4,facing=south,locked=false,powered=false]':1500,
'minecraft:repeater[delay=4,facing=west,locked=false,powered=false]':1501,
'minecraft:repeater[delay=4,facing=north,locked=false,powered=false]':1502,
'minecraft:repeater[delay=4,facing=east,locked=false,powered=false]':1503,
'minecraft:repeater[delay=1,facing=south,locked=false,powered=true]':1504,
'minecraft:repeater[delay=1,facing=west,locked=false,powered=true]':1505,
'minecraft:repeater[delay=1,facing=north,locked=false,powered=true]':1506,
'minecraft:repeater[delay=1,facing=east,locked=false,powered=true]':1507,
'minecraft:repeater[delay=2,facing=south,locked=false,powered=true]':1508,
'minecraft:repeater[delay=2,facing=west,locked=false,powered=true]':1509,
'minecraft:repeater[delay=2,facing=north,locked=false,powered=true]':1510,
'minecraft:repeater[delay=2,facing=east,locked=false,powered=true]':1511,
'minecraft:repeater[delay=3,facing=south,locked=false,powered=true]':1512,
'minecraft:repeater[delay=3,facing=west,locked=false,powered=true]':1513,
'minecraft:repeater[delay=3,facing=north,locked=false,powered=true]':1514,
'minecraft:repeater[delay=3,facing=east,locked=false,powered=true]':1515,
'minecraft:repeater[delay=4,facing=south,locked=false,powered=true]':1516,
'minecraft:repeater[delay=4,facing=west,locked=false,powered=true]':1517,
'minecraft:repeater[delay=4,facing=north,locked=false,powered=true]':1518,
'minecraft:repeater[delay=4,facing=east,locked=false,powered=true]':1519,
'minecraft:white_stained_glass':1520,
'minecraft:orange_stained_glass':1521,
'minecraft:magenta_stained_glass':1522,
'minecraft:light_blue_stained_glass':1523,
'minecraft:yellow_stained_glass':1524,
'minecraft:lime_stained_glass':1525,
'minecraft:pink_stained_glass':1526,
'minecraft:gray_stained_glass':1527,
'minecraft:light_gray_stained_glass':1528,
'minecraft:cyan_stained_glass':1529,
'minecraft:purple_stained_glass':1530,
'minecraft:blue_stained_glass':1531,
'minecraft:brown_stained_glass':1532,
'minecraft:green_stained_glass':1533,
'minecraft:red_stained_glass':1534,
'minecraft:black_stained_glass':1535,
'minecraft:oak_trapdoor[facing=north,half=bottom,open=false,powered=false,waterlogged=false]':1536,
'minecraft:oak_trapdoor[facing=south,half=bottom,open=false,powered=false,waterlogged=false]':1537,
'minecraft:oak_trapdoor[facing=west,half=bottom,open=false,powered=false,waterlogged=false]':1538,
'minecraft:oak_trapdoor[facing=east,half=bottom,open=false,powered=false,waterlogged=false]':1539,
'minecraft:oak_trapdoor[facing=north,half=bottom,open=true,powered=false,waterlogged=false]':1540,
'minecraft:oak_trapdoor[facing=south,half=bottom,open=true,powered=false,waterlogged=false]':1541,
'minecraft:oak_trapdoor[facing=west,half=bottom,open=true,powered=false,waterlogged=false]':1542,
'minecraft:oak_trapdoor[facing=east,half=bottom,open=true,powered=false,waterlogged=false]':1543,
'minecraft:oak_trapdoor[facing=north,half=top,open=false,powered=false,waterlogged=false]':1544,
'minecraft:oak_trapdoor[facing=south,half=top,open=false,powered=false,waterlogged=false]':1545,
'minecraft:oak_trapdoor[facing=west,half=top,open=false,powered=false,waterlogged=false]':1546,
'minecraft:oak_trapdoor[facing=east,half=top,open=false,powered=false,waterlogged=false]':1547,
'minecraft:oak_trapdoor[facing=north,half=top,open=true,powered=false,waterlogged=false]':1548,
'minecraft:oak_trapdoor[facing=south,half=top,open=true,powered=false,waterlogged=false]':1549,
'minecraft:oak_trapdoor[facing=west,half=top,open=true,powered=false,waterlogged=false]':1550,
'minecraft:oak_trapdoor[facing=east,half=top,open=true,powered=false,waterlogged=false]':1551,
'minecraft:infested_stone':1552,
'minecraft:infested_cobblestone':1553,
'minecraft:infested_stone_bricks':1554,
'minecraft:infested_mossy_stone_bricks':1555,
'minecraft:infested_cracked_stone_bricks':1556,
'minecraft:infested_chiseled_stone_bricks':1557,
'minecraft:stone_bricks':1568,
'minecraft:mossy_stone_bricks':1569,
'minecraft:cracked_stone_bricks':1570,
'minecraft:chiseled_stone_bricks':1571,
'minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]':1597,
'minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]':1585,
'minecraft:brown_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]':1586,
'minecraft:brown_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]':1587,
'minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]':1588,
'minecraft:brown_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]':1589,
'minecraft:brown_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]':1590,
'minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]':1591,
'minecraft:brown_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]':1592,
'minecraft:brown_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]':1593,
'minecraft:mushroom_stem[down=false,east=true,north=true,south=true,up=false,west=true]':1610,
'minecraft:brown_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]':1598,
'minecraft:brown_mushroom_block':1598,
'minecraft:mushroom_stem[down=true,east=true,north=true,south=true,up=true,west=true]':1615,
'minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=false,west=false]':1613,
'minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=true]':1601,
'minecraft:red_mushroom_block[down=false,east=false,north=true,south=false,up=true,west=false]':1602,
'minecraft:red_mushroom_block[down=false,east=true,north=true,south=false,up=true,west=false]':1603,
'minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=true]':1604,
'minecraft:red_mushroom_block[down=false,east=false,north=false,south=false,up=true,west=false]':1605,
'minecraft:red_mushroom_block[down=false,east=true,north=false,south=false,up=true,west=false]':1606,
'minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=true]':1607,
'minecraft:red_mushroom_block[down=false,east=false,north=false,south=true,up=true,west=false]':1608,
'minecraft:red_mushroom_block[down=false,east=true,north=false,south=true,up=true,west=false]':1609,
'minecraft:red_mushroom_block[down=true,east=true,north=true,south=true,up=true,west=true]':1614,
'minecraft:red_mushroom_block':1614,
'minecraft:iron_bars[east=false,north=false,south=false,waterlogged=false,west=false]':1616,
'minecraft:glass_pane[east=false,north=false,south=false,waterlogged=false,west=false]':1632,
'minecraft:melon':1648,
'minecraft:pumpkin_stem[age=0]':1664,
'minecraft:pumpkin_stem[age=1]':1665,
'minecraft:pumpkin_stem[age=2]':1666,
'minecraft:pumpkin_stem[age=3]':1667,
'minecraft:pumpkin_stem[age=4]':1668,
'minecraft:pumpkin_stem[age=5]':1669,
'minecraft:pumpkin_stem[age=6]':1670,
'minecraft:pumpkin_stem[age=7]':1671,
'minecraft:melon_stem[age=0]':1680,
'minecraft:melon_stem[age=1]':1681,
'minecraft:melon_stem[age=2]':1682,
'minecraft:melon_stem[age=3]':1683,
'minecraft:melon_stem[age=4]':1684,
'minecraft:melon_stem[age=5]':1685,
'minecraft:melon_stem[age=6]':1686,
'minecraft:melon_stem[age=7]':1687,
'minecraft:vine[east=false,north=false,south=false,up=false,west=false]':1696,
'minecraft:vine[east=false,north=false,south=true,up=false,west=false]':1697,
'minecraft:vine[east=false,north=false,south=false,up=false,west=true]':1698,
'minecraft:vine[east=false,north=false,south=true,up=false,west=true]':1699,
'minecraft:vine[east=false,north=true,south=false,up=false,west=false]':1700,
'minecraft:vine[east=false,north=true,south=true,up=false,west=false]':1701,
'minecraft:vine[east=false,north=true,south=false,up=false,west=true]':1702,
'minecraft:vine[east=false,north=true,south=true,up=false,west=true]':1703,
'minecraft:vine[east=true,north=false,south=false,up=false,west=false]':1704,
'minecraft:vine[east=true,north=false,south=true,up=false,west=false]':1705,
'minecraft:vine[east=true,north=false,south=false,up=false,west=true]':1706,
'minecraft:vine[east=true,north=false,south=true,up=false,west=true]':1707,
'minecraft:vine[east=true,north=true,south=false,up=false,west=false]':1708,
'minecraft:vine[east=true,north=true,south=true,up=false,west=false]':1709,
'minecraft:vine[east=true,north=true,south=false,up=false,west=true]':1710,
'minecraft:vine[east=true,north=true,south=true,up=false,west=true]':1711,
'minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=false]':1712,
'minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=false]':1713,
'minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=false]':1714,
'minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=false]':1715,
'minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=false]':1716,
'minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=false]':1717,
'minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=false]':1718,
'minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=false]':1719,
'minecraft:oak_fence_gate[facing=south,in_wall=false,open=false,powered=true]':1720,
'minecraft:oak_fence_gate[facing=west,in_wall=false,open=false,powered=true]':1721,
'minecraft:oak_fence_gate[facing=north,in_wall=false,open=false,powered=true]':1722,
'minecraft:oak_fence_gate[facing=east,in_wall=false,open=false,powered=true]':1723,
'minecraft:oak_fence_gate[facing=south,in_wall=false,open=true,powered=true]':1724,
'minecraft:oak_fence_gate[facing=west,in_wall=false,open=true,powered=true]':1725,
'minecraft:oak_fence_gate[facing=north,in_wall=false,open=true,powered=true]':1726,
'minecraft:oak_fence_gate[facing=east,in_wall=false,open=true,powered=true]':1727,
'minecraft:brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':1728,
'minecraft:brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':1729,
'minecraft:brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':1730,
'minecraft:brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':1731,
'minecraft:brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]':1732,
'minecraft:brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]':1733,
'minecraft:brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]':1734,
'minecraft:brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]':1735,
'minecraft:stone_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':1744,
'minecraft:stone_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':1745,
'minecraft:stone_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':1746,
'minecraft:stone_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':1747,
'minecraft:stone_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]':1748,
'minecraft:stone_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]':1749,
'minecraft:stone_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]':1750,
'minecraft:stone_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]':1751,
'minecraft:mycelium[snowy=false]':1760,
'minecraft:lily_pad':1776,
'minecraft:nether_bricks':1792,
'minecraft:nether_brick_fence[east=false,north=false,south=false,waterlogged=false,west=false]':1808,
'minecraft:nether_brick_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':1824,
'minecraft:nether_brick_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':1825,
'minecraft:nether_brick_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':1826,
'minecraft:nether_brick_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':1827,
'minecraft:nether_brick_stairs[facing=east,half=top,shape=straight,waterlogged=false]':1828,
'minecraft:nether_brick_stairs[facing=west,half=top,shape=straight,waterlogged=false]':1829,
'minecraft:nether_brick_stairs[facing=south,half=top,shape=straight,waterlogged=false]':1830,
'minecraft:nether_brick_stairs[facing=north,half=top,shape=straight,waterlogged=false]':1831,
'minecraft:nether_wart[age=0]':1840,
'minecraft:nether_wart[age=1]':1841,
'minecraft:nether_wart[age=2]':1842,
'minecraft:nether_wart[age=3]':1843,
'minecraft:enchanting_table':1856,
'minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=false]':1872,
'minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=false]':1873,
'minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=false]':1874,
'minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=false]':1875,
'minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=false,has_bottle_2=true]':1876,
'minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=false,has_bottle_2=true]':1877,
'minecraft:brewing_stand[has_bottle_0=false,has_bottle_1=true,has_bottle_2=true]':1878,
'minecraft:brewing_stand[has_bottle_0=true,has_bottle_1=true,has_bottle_2=true]':1879,
'minecraft:cauldron[level=0]':1888,
'minecraft:cauldron[level=1]':1889,
'minecraft:cauldron[level=2]':1890,
'minecraft:cauldron[level=3]':1891,
'minecraft:end_portal':1904,
'minecraft:end_portal_frame[eye=false,facing=south]':1920,
'minecraft:end_portal_frame[eye=false,facing=west]':1921,
'minecraft:end_portal_frame[eye=false,facing=north]':1922,
'minecraft:end_portal_frame[eye=false,facing=east]':1923,
'minecraft:end_portal_frame[eye=true,facing=south]':1924,
'minecraft:end_portal_frame[eye=true,facing=west]':1925,
'minecraft:end_portal_frame[eye=true,facing=north]':1926,
'minecraft:end_portal_frame[eye=true,facing=east]':1927,
'minecraft:end_stone':1936,
'minecraft:dragon_egg':1952,
'minecraft:redstone_lamp[lit=false]':1968,
'minecraft:redstone_lamp[lit=true]':1984,
'minecraft:oak_slab[type=double,waterlogged=false]':2000,
'minecraft:spruce_slab[type=double,waterlogged=false]':2001,
'minecraft:birch_slab[type=double,waterlogged=false]':2002,
'minecraft:jungle_slab[type=double,waterlogged=false]':2003,
'minecraft:acacia_slab[type=double,waterlogged=false]':2004,
'minecraft:dark_oak_slab[type=double,waterlogged=false]':2005,
'minecraft:oak_slab[type=bottom,waterlogged=false]':2016,
'minecraft:spruce_slab[type=bottom,waterlogged=false]':2017,
'minecraft:birch_slab[type=bottom,waterlogged=false]':2018,
'minecraft:jungle_slab[type=bottom,waterlogged=false]':2019,
'minecraft:acacia_slab[type=bottom,waterlogged=false]':2020,
'minecraft:dark_oak_slab[type=bottom,waterlogged=false]':2021,
'minecraft:oak_slab[type=top,waterlogged=false]':2024,
'minecraft:spruce_slab[type=top,waterlogged=false]':2025,
'minecraft:birch_slab[type=top,waterlogged=false]':2026,
'minecraft:jungle_slab[type=top,waterlogged=false]':2027,
'minecraft:acacia_slab[type=top,waterlogged=false]':2028,
'minecraft:dark_oak_slab[type=top,waterlogged=false]':2029,
'minecraft:cocoa[age=0,facing=south]':2032,
'minecraft:cocoa[age=0,facing=west]':2033,
'minecraft:cocoa[age=0,facing=north]':2034,
'minecraft:cocoa[age=0,facing=east]':2035,
'minecraft:cocoa[age=1,facing=south]':2036,
'minecraft:cocoa[age=1,facing=west]':2037,
'minecraft:cocoa[age=1,facing=north]':2038,
'minecraft:cocoa[age=1,facing=east]':2039,
'minecraft:cocoa[age=2,facing=south]':2040,
'minecraft:cocoa[age=2,facing=west]':2041,
'minecraft:cocoa[age=2,facing=north]':2042,
'minecraft:cocoa[age=2,facing=east]':2043,
'minecraft:sandstone_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':2048,
'minecraft:sandstone_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':2049,
'minecraft:sandstone_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':2050,
'minecraft:sandstone_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':2051,
'minecraft:sandstone_stairs[facing=east,half=top,shape=straight,waterlogged=false]':2052,
'minecraft:sandstone_stairs[facing=west,half=top,shape=straight,waterlogged=false]':2053,
'minecraft:sandstone_stairs[facing=south,half=top,shape=straight,waterlogged=false]':2054,
'minecraft:sandstone_stairs[facing=north,half=top,shape=straight,waterlogged=false]':2055,
'minecraft:emerald_ore':2064,
'minecraft:ender_chest[facing=north,waterlogged=false]':2082,
'minecraft:ender_chest[facing=south,waterlogged=false]':2083,
'minecraft:ender_chest[facing=west,waterlogged=false]':2084,
'minecraft:ender_chest[facing=east,waterlogged=false]':2085,
'minecraft:tripwire_hook[attached=false,facing=south,powered=false]':2096,
'minecraft:tripwire_hook[attached=false,facing=west,powered=false]':2097,
'minecraft:tripwire_hook[attached=false,facing=north,powered=false]':2098,
'minecraft:tripwire_hook[attached=false,facing=east,powered=false]':2099,
'minecraft:tripwire_hook[attached=true,facing=south,powered=false]':2100,
'minecraft:tripwire_hook[attached=true,facing=west,powered=false]':2101,
'minecraft:tripwire_hook[attached=true,facing=north,powered=false]':2102,
'minecraft:tripwire_hook[attached=true,facing=east,powered=false]':2103,
'minecraft:tripwire_hook[attached=false,facing=south,powered=true]':2104,
'minecraft:tripwire_hook[attached=false,facing=west,powered=true]':2105,
'minecraft:tripwire_hook[attached=false,facing=north,powered=true]':2106,
'minecraft:tripwire_hook[attached=false,facing=east,powered=true]':2107,
'minecraft:tripwire_hook[attached=true,facing=south,powered=true]':2108,
'minecraft:tripwire_hook[attached=true,facing=west,powered=true]':2109,
'minecraft:tripwire_hook[attached=true,facing=north,powered=true]':2110,
'minecraft:tripwire_hook[attached=true,facing=east,powered=true]':2111,
'minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=false,south=false,west=false]':2114,
'minecraft:tripwire[attached=false,disarmed=false,east=false,north=false,powered=true,south=false,west=false]':2115,
'minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=false,south=false,west=false]':2118,
'minecraft:tripwire[attached=true,disarmed=false,east=false,north=false,powered=true,south=false,west=false]':2119,
'minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=false,south=false,west=false]':2122,
'minecraft:tripwire[attached=false,disarmed=true,east=false,north=false,powered=true,south=false,west=false]':2123,
'minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=false,south=false,west=false]':2126,
'minecraft:tripwire[attached=true,disarmed=true,east=false,north=false,powered=true,south=false,west=false]':2125,
'minecraft:emerald_block':2128,
'minecraft:spruce_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':2144,
'minecraft:spruce_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':2145,
'minecraft:spruce_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':2146,
'minecraft:spruce_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':2147,
'minecraft:spruce_stairs[facing=east,half=top,shape=straight,waterlogged=false]':2148,
'minecraft:spruce_stairs[facing=west,half=top,shape=straight,waterlogged=false]':2149,
'minecraft:spruce_stairs[facing=south,half=top,shape=straight,waterlogged=false]':2150,
'minecraft:spruce_stairs[facing=north,half=top,shape=straight,waterlogged=false]':2151,
'minecraft:birch_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':2160,
'minecraft:birch_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':2161,
'minecraft:birch_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':2162,
'minecraft:birch_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':2163,
'minecraft:birch_stairs[facing=east,half=top,shape=straight,waterlogged=false]':2164,
'minecraft:birch_stairs[facing=west,half=top,shape=straight,waterlogged=false]':2165,
'minecraft:birch_stairs[facing=south,half=top,shape=straight,waterlogged=false]':2166,
'minecraft:birch_stairs[facing=north,half=top,shape=straight,waterlogged=false]':2167,
'minecraft:jungle_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':2176,
'minecraft:jungle_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':2177,
'minecraft:jungle_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':2178,
'minecraft:jungle_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':2179,
'minecraft:jungle_stairs[facing=east,half=top,shape=straight,waterlogged=false]':2180,
'minecraft:jungle_stairs[facing=west,half=top,shape=straight,waterlogged=false]':2181,
'minecraft:jungle_stairs[facing=south,half=top,shape=straight,waterlogged=false]':2182,
'minecraft:jungle_stairs[facing=north,half=top,shape=straight,waterlogged=false]':2183,
'minecraft:command_block[conditional=false,facing=down]':2192,
'minecraft:command_block[conditional=false,facing=up]':2193,
'minecraft:command_block[conditional=false,facing=north]':2194,
'minecraft:command_block[conditional=false,facing=south]':2195,
'minecraft:command_block[conditional=false,facing=west]':2196,
'minecraft:command_block[conditional=false,facing=east]':2197,
'minecraft:command_block[conditional=true,facing=down]':2200,
'minecraft:command_block[conditional=true,facing=up]':2201,
'minecraft:command_block[conditional=true,facing=north]':2202,
'minecraft:command_block[conditional=true,facing=south]':2203,
'minecraft:command_block[conditional=true,facing=west]':2204,
'minecraft:command_block[conditional=true,facing=east]':2205,
'minecraft:beacon':2208,
'minecraft:cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]':2224,
'minecraft:mossy_cobblestone_wall[east=false,north=false,south=false,up=true,waterlogged=false,west=false]':2225,
'minecraft:flower_pot':2255,
'minecraft:carrots[age=0]':2256,
'minecraft:carrots[age=1]':2257,
'minecraft:carrots[age=2]':2258,
'minecraft:carrots[age=3]':2259,
'minecraft:carrots[age=4]':2260,
'minecraft:carrots[age=5]':2261,
'minecraft:carrots[age=6]':2262,
'minecraft:carrots[age=7]':2263,
'minecraft:potatoes[age=0]':2272,
'minecraft:potatoes[age=1]':2273,
'minecraft:potatoes[age=2]':2274,
'minecraft:potatoes[age=3]':2275,
'minecraft:potatoes[age=4]':2276,
'minecraft:potatoes[age=5]':2277,
'minecraft:potatoes[age=6]':2278,
'minecraft:potatoes[age=7]':2279,
'minecraft:oak_button[face=ceiling,facing=north,powered=false]':2288,
'minecraft:oak_button[face=wall,facing=east,powered=false]':2289,
'minecraft:oak_button[face=wall,facing=west,powered=false]':2290,
'minecraft:oak_button[face=wall,facing=south,powered=false]':2291,
'minecraft:oak_button[face=wall,facing=north,powered=false]':2292,
'minecraft:oak_button[face=floor,facing=north,powered=false]':2293,
'minecraft:oak_button[face=ceiling,facing=north,powered=true]':2296,
'minecraft:oak_button[face=wall,facing=east,powered=true]':2297,
'minecraft:oak_button[face=wall,facing=west,powered=true]':2298,
'minecraft:oak_button[face=wall,facing=south,powered=true]':2299,
'minecraft:oak_button[face=wall,facing=north,powered=true]':2300,
'minecraft:oak_button[face=floor,facing=north,powered=true]':2301,
'minecraft:skeleton_skull[rotation=0]':2313,
'minecraft:skeleton_wall_skull[facing=north]':2314,
'minecraft:skeleton_wall_skull[facing=south]':2315,
'minecraft:skeleton_wall_skull[facing=west]':2316,
'minecraft:skeleton_wall_skull[facing=east]':2317,
'minecraft:anvil[facing=south]':2320,
'minecraft:anvil[facing=west]':2321,
'minecraft:anvil[facing=north]':2322,
'minecraft:anvil[facing=east]':2323,
'minecraft:chipped_anvil[facing=south]':2324,
'minecraft:chipped_anvil[facing=west]':2325,
'minecraft:chipped_anvil[facing=north]':2326,
'minecraft:chipped_anvil[facing=east]':2327,
'minecraft:damaged_anvil[facing=south]':2328,
'minecraft:damaged_anvil[facing=west]':2329,
'minecraft:damaged_anvil[facing=north]':2330,
'minecraft:damaged_anvil[facing=east]':2331,
'minecraft:trapped_chest[facing=north,type=single,waterlogged=false]':2338,
'minecraft:trapped_chest[facing=south,type=single,waterlogged=false]':2339,
'minecraft:trapped_chest[facing=west,type=single,waterlogged=false]':2340,
'minecraft:trapped_chest[facing=east,type=single,waterlogged=false]':2341,
'minecraft:light_weighted_pressure_plate[power=0]':2352,
'minecraft:light_weighted_pressure_plate[power=1]':2353,
'minecraft:light_weighted_pressure_plate[power=2]':2354,
'minecraft:light_weighted_pressure_plate[power=3]':2355,
'minecraft:light_weighted_pressure_plate[power=4]':2356,
'minecraft:light_weighted_pressure_plate[power=5]':2357,
'minecraft:light_weighted_pressure_plate[power=6]':2358,
'minecraft:light_weighted_pressure_plate[power=7]':2359,
'minecraft:light_weighted_pressure_plate[power=8]':2360,
'minecraft:light_weighted_pressure_plate[power=9]':2361,
'minecraft:light_weighted_pressure_plate[power=10]':2362,
'minecraft:light_weighted_pressure_plate[power=11]':2363,
'minecraft:light_weighted_pressure_plate[power=12]':2364,
'minecraft:light_weighted_pressure_plate[power=13]':2365,
'minecraft:light_weighted_pressure_plate[power=14]':2366,
'minecraft:light_weighted_pressure_plate[power=15]':2367,
'minecraft:heavy_weighted_pressure_plate[power=0]':2368,
'minecraft:heavy_weighted_pressure_plate[power=1]':2369,
'minecraft:heavy_weighted_pressure_plate[power=2]':2370,
'minecraft:heavy_weighted_pressure_plate[power=3]':2371,
'minecraft:heavy_weighted_pressure_plate[power=4]':2372,
'minecraft:heavy_weighted_pressure_plate[power=5]':2373,
'minecraft:heavy_weighted_pressure_plate[power=6]':2374,
'minecraft:heavy_weighted_pressure_plate[power=7]':2375,
'minecraft:heavy_weighted_pressure_plate[power=8]':2376,
'minecraft:heavy_weighted_pressure_plate[power=9]':2377,
'minecraft:heavy_weighted_pressure_plate[power=10]':2378,
'minecraft:heavy_weighted_pressure_plate[power=11]':2379,
'minecraft:heavy_weighted_pressure_plate[power=12]':2380,
'minecraft:heavy_weighted_pressure_plate[power=13]':2381,
'minecraft:heavy_weighted_pressure_plate[power=14]':2382,
'minecraft:heavy_weighted_pressure_plate[power=15]':2383,
'minecraft:comparator[facing=south,mode=compare,powered=false]':2400,
'minecraft:comparator[facing=west,mode=compare,powered=false]':2401,
'minecraft:comparator[facing=north,mode=compare,powered=false]':2402,
'minecraft:comparator[facing=east,mode=compare,powered=false]':2403,
'minecraft:comparator[facing=south,mode=subtract,powered=false]':2404,
'minecraft:comparator[facing=west,mode=subtract,powered=false]':2405,
'minecraft:comparator[facing=north,mode=subtract,powered=false]':2406,
'minecraft:comparator[facing=east,mode=subtract,powered=false]':2407,
'minecraft:comparator[facing=south,mode=compare,powered=true]':2408,
'minecraft:comparator[facing=west,mode=compare,powered=true]':2409,
'minecraft:comparator[facing=north,mode=compare,powered=true]':2410,
'minecraft:comparator[facing=east,mode=compare,powered=true]':2411,
'minecraft:comparator[facing=south,mode=subtract,powered=true]':2412,
'minecraft:comparator[facing=west,mode=subtract,powered=true]':2413,
'minecraft:comparator[facing=north,mode=subtract,powered=true]':2414,
'minecraft:comparator[facing=east,mode=subtract,powered=true]':2415,
'minecraft:daylight_detector[inverted=false,power=0]':2416,
'minecraft:daylight_detector[inverted=false,power=1]':2417,
'minecraft:daylight_detector[inverted=false,power=2]':2418,
'minecraft:daylight_detector[inverted=false,power=3]':2419,
'minecraft:daylight_detector[inverted=false,power=4]':2420,
'minecraft:daylight_detector[inverted=false,power=5]':2421,
'minecraft:daylight_detector[inverted=false,power=6]':2422,
'minecraft:daylight_detector[inverted=false,power=7]':2423,
'minecraft:daylight_detector[inverted=false,power=8]':2424,
'minecraft:daylight_detector[inverted=false,power=9]':2425,
'minecraft:daylight_detector[inverted=false,power=10]':2426,
'minecraft:daylight_detector[inverted=false,power=11]':2427,
'minecraft:daylight_detector[inverted=false,power=12]':2428,
'minecraft:daylight_detector[inverted=false,power=13]':2429,
'minecraft:daylight_detector[inverted=false,power=14]':2430,
'minecraft:daylight_detector[inverted=false,power=15]':2431,
'minecraft:redstone_block':2432,
'minecraft:nether_quartz_ore':2448,
'minecraft:hopper[enabled=true,facing=down]':2464,
'minecraft:hopper[enabled=true,facing=north]':2466,
'minecraft:hopper[enabled=true,facing=south]':2467,
'minecraft:hopper[enabled=true,facing=west]':2468,
'minecraft:hopper[enabled=true,facing=east]':2469,
'minecraft:hopper[enabled=false,facing=down]':2472,
'minecraft:hopper[enabled=false,facing=north]':2474,
'minecraft:hopper[enabled=false,facing=south]':2475,
'minecraft:hopper[enabled=false,facing=west]':2476,
'minecraft:hopper[enabled=false,facing=east]':2477,
'minecraft:quartz_block':2480,
'minecraft:chiseled_quartz_block':2481,
'minecraft:quartz_pillar[axis=y]':2482,
'minecraft:quartz_pillar[axis=x]':2483,
'minecraft:quartz_pillar[axis=z]':2484,
'minecraft:quartz_stairs[facing=east,half=bottom,shape=straight,waterlogged=false]':2496,
'minecraft:quartz_stairs[facing=west,half=bottom,shape=straight,waterlogged=false]':2497,
'minecraft:quartz_stairs[facing=south,half=bottom,shape=straight,waterlogged=false]':2498,
'minecraft:quartz_stairs[facing=north,half=bottom,shape=straight,waterlogged=false]':2499,
'minecraft:quartz_stairs[facing=east,half=top,shape=straight,waterlogged=false]':2500,
'minecraft:quartz_stairs[facing=west,half=top,shape=straight,waterlogged=false]':2501,
'minecraft:quartz_stairs[facing=south,half=top,shape=straight,waterlogged=false]':2502,
'minecraft:quartz_stairs[facing=north,half=top,shape=straight,waterlogged=false]':2503,
'minecraft:activator_rail[powered=false,shape=north_south]':2512,
'minecraft:activator_rail[powered=false,shape=east_west]':2513,
'minecraft:activator_rail[powered=false,shape=ascending_east]':2514,
'minecraft:activator_rail[powered=false,shape=ascending_west]':2515,
'minecraft:activator_rail[powered=false,shape=ascending_north]':2516,
'minecraft:activator_rail[powered=false,shape=ascending_south]':2517,
'minecraft:activator_rail[powered=true,shape=north_south]':2520,
'minecraft:activator_rail[powered=true,shape=east_west]':2521,
'minecraft:activator_rail[powered=true,shape=ascending_east]':2522,