summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.13.2-cl.csrg
blob: fe01676009c1d8889ec177cf875f5c6ff262ffbb (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
# (c) 2018 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CriterionTriggerBrewedPotion
aaa DataConverterPotionId
aab DataConverterItemName
aac DataConverterShulkerBoxItem
aad DataConverterSpawnEgg
aae DataConverterItemStackEnchantment
aaf DataConverterMap
aag DataConverterFlattenSpawnEgg
aah DataConverterFlatten
aai DataConverterPotionWater
aaj DataConverterBook
aak DataConverterLeaves
aal DataConverterLevelDataGeneratorOptions
aam DataConverterWorldGenSettings
aan DataConverterMobSpawner
aao DataConverterNamedEntity
aap DataConverterObjectiveDisplayName
aaq DataConverterObjectiveRenderType
aar DataConverterVBO
aas DataConverterKeybind
aat DataConverterKeybind2
aau DataConverterLang
aav DataConverterRecipes
aaw DataConverterRecipeRename
aax DataConverterTypes
aay DataConverterCoralFan
aaz DataConverterCoral
ab CriterionTriggerChangedDimension
aba DataConverterVillage
abb DataConverterEntityNameAbstract
abc DataConverterEntityRenameAbstract
abd DataConverterStatistic
abe DataConverterSwimStats
abf DataConverterTeamDisplayName
abg DataConverterTrappedChest
abh DataConverterVillagerTrade
abi DataConverterShoulderEntity
abl DataConverterSchemaNamed
abm DataConverterSchemaV100
abn DataConverterSchemaV102
abo DataConverterSchemaV1022
abp DataConverterSchemaV106
abq DataConverterSchemaV107
abr DataConverterSchemaV1125
abs DataConverterSchemaV135
abt DataConverterSchemaV143
abu DataConverterSchemaV1451
abv DataConverterSchemaV1451_1
abw DataConverterSchemaV1451_2
abx DataConverterSchemaV1451_3
aby DataConverterSchemaV1451_4
abz DataConverterSchemaV1451_5
ac CriterionTriggerChanneledLightning
aca DataConverterSchemaV1451_6
acb DataConverterSchemaV1451_7
acc DataConverterSchemaV1460
acd DataConverterSchemaV1466
ace DataConverterSchemaV1470
acf DataConverterSchemaV1481
acg DataConverterSchemaV1483
ach DataConverterSchemaV1486
aci DataConverterSchemaV1510
acj DataConverterSchemaV501
ack DataConverterSchemaV700
acl DataConverterSchemaV701
acm DataConverterSchemaV702
acn DataConverterSchemaV703
aco DataConverterSchemaV704
acp DataConverterSchemaV705
acq DataConverterSchemaV808
acr DataConverterSchemaV99
act NamedIncrementingThreadFactory
acu Scheduler
acv IAsyncTaskHandler
acw SchedulerBatch
acx SchedulerTask
acz WorldUpgraderIterator
ad CriterionTriggerConstructBeacon
ada WorldUpgrader
adc BossBattle
adc$a BossBattle$BarColor
adc$b BossBattle$BarStyle
add InventoryLargeChest
ade IInventory
adf ContainerUtil
adg IInventoryListener
adh InventoryUtils
adi EnumDifficulty
adj DifficultyDamageScaler
adk EnumHand
adl ITileEntityContainer
adm EnumInteractionResult
adn InteractionResultWrapper
adp ChestLock
adq ITileInventory
adr INamableTileEntity
ads ILootable
adt InventorySubcontainer
adu MojangStatisticsGenerator
adv IMojangStatistics
adw IWorldInventory
adx CombatEntry
ady CombatMath
adz CombatTracker
ae CriterionTriggerConsumeItem
aea DamageSource
aeb EntityDamageSource
aec EntityDamageSourceIndirect
aed DamageSourceNetherBed
aef MobEffectAbsorption
aeg MobEffectAttackDamage
aeh MobEffectHealthBoost
aei InstantMobEffect
aej MobEffectList
aek MobEffect
ael MobEffectUtil
aem MobEffects
aeo EntityAgeable
aep EntityAreaEffectCloud
aeq IAnimal
aer Entity
aeu IEntitySelector
aeu$a IEntitySelector$EntitySelectorEquipable
aev EntityTypes
aew EnumItemSlot
aew$a EnumItemSlot$Function
aex EntityExperienceOrb
aey EntityFlying
aez EnumMainHand
af CriterionTriggerCuredZombieVillager
afa EntityLiving
afb EntityInsentient
afc EnumCreatureType
afd EnumMonsterType
afe EnumMoveType
aff EntityOwnable
afg EntityCreature
afi IJumpable
afj GroupDataEntity
afk EntityPositionTypes
afk$b EntityPositionTypes$Surface
afl EntityTameableAnimal
afm IAttribute
afn AttributeInstance
afo AttributeModifier
afp AttributeBase
afq AttributeMapBase
afr AttributeModifiable
afs AttributeMapServer
aft AttributeRanged
afv EntityAIBodyControl
afx ControllerLookDolphin
afy ControllerMoveFlying
afz ControllerJump
ag CriterionConditionDamage
aga ControllerLook
agb ControllerMove
agb$a ControllerMove$Operation
agd PathfinderGoalAvoidTarget
age PathfinderGoalBeg
agf PathfinderGoalBoat
agg PathfinderGoalBreakDoor
agh PathfinderGoalBreath
agi PathfinderGoalBreed
agj PathfinderGoalDoorInteract
agk PathfinderGoalEatTile
agl PathfinderGoalFleeSun
agm PathfinderGoalFloat
agn PathfinderGoalFollowBoat
ago PathfinderGoalFishSchool
agp PathfinderGoalFollowEntity
agq PathfinderGoalFollowOwnerParrot
agr PathfinderGoalFollowOwner
ags PathfinderGoalFollowParent
agt PathfinderGoal
agu PathfinderGoalSelector
agu$a PathfinderGoalSelector$PathfinderGoalSelectorItem
agv PathfinderGoalVillagerFarm
agw PathfinderGoalInteract
agx PathfinderGoalWaterJump
agy PathfinderGoalPerch
agz PathfinderGoalLeapAtTarget
ah CriterionConditionDamageSource
aha PathfinderGoalLlamaFollow
ahb PathfinderGoalLookAtPlayer
ahc PathfinderGoalLookAtTradingPlayer
ahd PathfinderGoalMakeLove
ahe PathfinderGoalMeleeAttack
ahf PathfinderGoalMoveIndoors
ahg PathfinderGoalMoveThroughVillage
ahh PathfinderGoalGotoTarget
ahi PathfinderGoalMoveTowardsRestriction
ahj PathfinderGoalMoveTowardsTarget
ahk PathfinderGoalOcelotAttack
ahl PathfinderGoalJumpOnBlock
ahm PathfinderGoalOfferFlower
ahn PathfinderGoalOpenDoor
aho PathfinderGoalPanic
ahp PathfinderGoalPlay
ahq PathfinderGoalRandomLookaround
ahr PathfinderGoalRandomStroll
ahs PathfinderGoalRandomSwim
aht PathfinderGoalArrowAttack
ahu PathfinderGoalBowShoot
ahv PathfinderGoalRemoveBlock
ahw PathfinderGoalRestrictOpenDoor
ahx PathfinderGoalRestrictSun
ahy PathfinderGoalTame
ahz PathfinderGoalSit
ai CriterionConditionDistance
aia PathfinderGoalSwell
aib PathfinderGoalTakeFlower
aic PathfinderGoalTempt
aid PathfinderGoalTradeWithPlayer
aie PathfinderGoalWater
aif PathfinderGoalInteractVillagers
aig PathfinderGoalRandomFly
aih PathfinderGoalRandomStrollLand
aii PathfinderGoalZombieAttack
aik PathfinderGoalDefendVillage
ail PathfinderGoalHurtByTarget
aim PathfinderGoalNearestAttackableTargetInsentient
ain PathfinderGoalTargetNearestPlayer
aio PathfinderGoalNearestAttackableTarget
aio$a PathfinderGoalNearestAttackableTarget$DistanceComparator
aip PathfinderGoalRandomTargetNonTamed
aiq PathfinderGoalOwnerHurtByTarget
air PathfinderGoalOwnerHurtTarget
ais PathfinderGoalTarget
aiu NavigationFlying
aiv Navigation
aiw NavigationAbstract
aix NavigationListener
aiy NavigationSpider
aiz NavigationGuardian
aj CriterionTriggerEffectsChanged
ajb EntitySenses
ajd RandomPositionGenerator
ajf VillageDoor
ajg Village
ajg$a Village$Aggressor
ajh VillageSiege
aji PersistentVillage
ajk EntityAmbient
ajl EntityBat
ajn EntityFish
ajo EntityGolem
ajp EntityFishSchool
ajq EntityAnimal
ajr EntityChicken
ajs EntityCod
ajt EntityCow
aju EntityDolphin
ajv EntityBird
ajw EntityIronGolem
ajx EntityMushroomCow
ajy EntityOcelot
ajz EntityParrot
ak CriterionTriggerEnchantedItem
aka EntityPig
akb EntityPolarBear
akc EntityPufferFish
akd EntityRabbit
akd$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
akd$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
akd$c EntityRabbit$GroupDataRabbit
akd$d EntityRabbit$ControllerJumpRabbit
akd$e EntityRabbit$ControllerMoveRabbit
akd$f EntityRabbit$PathfinderGoalRabbitPanic
akd$g EntityRabbit$PathfinderGoalEatCarrots
ake EntitySalmon
akf EntitySheep
akg EntityPerchable
akh EntitySnowman
aki EntitySquid
aki$b EntitySquid$PathfinderGoalSquid
akj EntityTropicalFish
akj$a EntityTropicalFish$Variant
akk EntityTurtle
akl EntityWaterAnimal
akm EntityWolf
akn EntityHorseChestedAbstract
ako EntityHorseAbstract
akp EntityHorseDonkey
akq EntityHorse
akr EnumHorseArmor
aks EntityLlama
akt EntityHorseMule
aku EntityHorseSkeleton
akv PathfinderGoalHorseTrap
akw EntityHorseZombie
al CriterionConditionEnchantments
ala IComplex
alb EntityComplexPart
alc EntityEnderCrystal
ald EntityEnderDragon
alf AbstractDragonController
alg AbstractDragonControllerLanded
alh DragonControllerCharge
ali DragonControllerDying
alj DragonControllerHold
alk DragonControllerHover
all DragonControllerLandingFly
alm DragonControllerLanding
aln IDragonController
alo DragonControllerLandedAttack
alp DragonControllerLandedFlame
alq DragonControllerLandedSearch
alr DragonControllerStrafe
als DragonControllerFly
alt DragonControllerPhase
alu DragonControllerManager
alx EntityWither
alz EntityArmorStand
am CriterionTriggerEnterBlock
ama EntityHanging
amb EntityItemFrame
amc EntityLeash
amd Paintings
ame EntityPainting
amg EntityFishingHook
amg$a EntityFishingHook$HookState
ami EntityWeather
amj EntityLightning
aml EntityFallingBlock
amm EntityItem
amn EntityTNTPrimed
amp EntityIllagerAbstract
amq EntitySkeletonAbstract
amr EntityBlaze
amr$a EntityBlaze$PathfinderGoalBlazeFireball
ams EntityCaveSpider
amt EntityCreeper
amu EntityDrowned
amv EntityGuardianElder
amw EntityEnderman
amw$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
amw$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
amw$c EntityEnderman$PathfinderGoalEndermanPickupBlock
amx EntityEndermite
amy IMonster
amz EntityEvoker
an CriterionTriggerEntityHurtPlayer
ana EntityGhast
ana$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
ana$b EntityGhast$ControllerGhast
ana$c EntityGhast$PathfinderGoalGhastAttackTarget
ana$d EntityGhast$PathfinderGoalGhastIdleMove
anb EntityGiantZombie
anc EntityGuardian
anc$a EntityGuardian$PathfinderGoalGuardianAttack
anc$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
anc$c EntityGuardian$ControllerMoveGuardian
and EntityZombieHusk
ane EntityIllagerIllusioner
anf EntityMagmaCube
ang EntityMonster
anh EntityPhantom
anh$a EntityPhantom$AttackPhase
ani EntityPigZombie
ani$a EntityPigZombie$PathfinderGoalAnger
ani$b EntityPigZombie$PathfinderGoalAngerOther
anj IRangedEntity
ank GenericAttributes
anl EntityShulker
anm EntitySilverfish
anm$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
anm$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
ann EntitySkeleton
ano EntitySlime
ano$a EntitySlime$PathfinderGoalSlimeNearestPlayer
ano$b EntitySlime$PathfinderGoalSlimeRandomJump
ano$c EntitySlime$PathfinderGoalSlimeIdle
ano$d EntitySlime$ControllerMoveSlime
ano$e EntitySlime$PathfinderGoalSlimeRandomDirection
anp EntityIllagerWizard
anp$a EntityIllagerWizard$Spell
anq EntitySpider
anq$a EntitySpider$PathfinderGoalSpiderMeleeAttack
anq$b EntitySpider$GroupDataSpider
anq$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
anr EntitySkeletonStray
ans EntityVex
ant EntityVindicator
anu EntityWitch
anv EntitySkeletonWither
anw EntityZombie
anw$b EntityZombie$GroupDataZombie
anx EntityZombieVillager
ao CriterionConditionEntity
aoa NPC
aob EntityVillager
aob$a EntityVillager$MerchantRecipeOptionBuy
aob$b EntityVillager$MerchantRecipeOptionBook
aob$c EntityVillager$MerchantRecipeOptionEnchant
aob$d EntityVillager$MerchantRecipeOptionProcess
aob$e EntityVillager$MerchantRecipeOptionSell
aob$f EntityVillager$IMerchantRecipeOption
aob$g EntityVillager$MerchantOptionRandomRange
aoe PlayerAbilities
aof PlayerInventory
aog EntityHuman
aog$a EntityHuman$EnumBedResult
aog$b EntityHuman$EnumChatVisibility
aoi AutoRecipeStackManager
aok EntityArrow
aok$a EntityArrow$PickupStatus
aol EntityFireball
aom EntityTippedArrow
aon EntityDragonFireball
aoo EntityEvokerFangs
aop EntityEnderSignal
aoq EntityFireworks
aor EntityLargeFireball
aos EntityLlamaSpit
aot IProjectile
aou ProjectileHelper
aov EntityShulkerBullet
aow EntitySmallFireball
aox EntitySnowball
aoy EntitySpectralArrow
aoz EntityProjectile
ap CriterionConditionEntityType
apa EntityEgg
apb EntityEnderPearl
apc EntityThrownExpBottle
apd EntityPotion
ape EntityThrownTrident
apf EntityWitherSkull
aph EntityMinecartAbstract
aph$a EntityMinecartAbstract$EnumMinecartType
api EntityMinecartContainer
apj EntityBoat
apj$a EntityBoat$EnumStatus
apj$b EntityBoat$EnumBoatType
apk EntityMinecartRideable
apl EntityMinecartChest
apm EntityMinecartCommandBlock
apn EntityMinecartFurnace
apo EntityMinecartHopper
app EntityMinecartMobSpawner
apq EntityMinecartTNT
apt FoodMetaData
apv Container
apw ContainerAnvil
apx ContainerBeacon
apx$a ContainerBeacon$SlotBeacon
apy ContainerBrewingStand
apy$b ContainerBrewingStand$SlotBrewing
apy$c ContainerBrewingStand$SlotPotionBottle
apz ContainerChest
aq CriterionTriggerFilledBucket
aqa InventoryClickType
aqb ICrafting
aqc InventoryCrafting
aqd ContainerWorkbench
aqe ContainerDispenser
aqf ContainerEnchantTable
aqg SlotFurnaceFuel
aqh ContainerFurnace
aqi SlotFurnaceResult
aqj ContainerHopper
aqk InventoryHorseChest
aql ContainerHorse
aqm ContainerPlayer
aqn InventoryMerchant
aqo ContainerMerchant
aqp SlotMerchantResult
aqq InventoryEnderChest
aqr ContainerRecipeBook
aqs RecipeHolder
aqt InventoryCraftResult
aqu SlotResult
aqv ContainerShulkerBox
aqw SlotShulkerBox
aqx Slot
aqy AutoRecipeOutput
ar CriterionTriggerFishingRodHooked
ara ItemAir
arb ItemArmor
arc ArmorMaterial
ard EnumArmorMaterial
are ItemArmorStand
arf ItemArrow
arg ItemAxe
arh ItemBanner
ari ItemBed
arj ItemBlock
ark BlockActionContext
arl ItemBoat
arm ItemBoneMeal
arn ItemBook
aro ItemGlassBottle
arp ItemBow
arq ItemSoup
arr ItemBucket
ars ItemCarrotStick
art ItemChorusFruit
aru ItemClock
arv ItemCocoa
arw ItemCompass
arx ItemWorldMapBase
ary CreativeModeTab
arz ItemDebugStick
as CriterionTriggerImpossible
asa ItemTool
asb ItemBisected
asc EnumColor
asd ItemDye
ase ItemArmorColorable
asf ItemEgg
asg ItemElytra
ash ItemMapEmpty
asi ItemEnchantedBook
asj ItemFireworks
asj ItemGoldenAppleEnchanted
ask ItemEndCrystal
asl ItemEnderEye
asm ItemEnderPearl
asn ItemExpBottle
aso ItemFireball
asp ItemFireworks
asp$a ItemFireworks$EffectType
asq ItemFireworksCharge
asr ItemFishBucket
ass ItemFish
ass$a ItemFish$EnumFish
ast ItemFishingRod
asu ItemFlintAndSteel
asv ItemFood
asw ItemRestricted
asx ItemGoldenApple
asy ItemHanging
asz ItemHoe
at CriterionTriggerInventoryChanged
ata Item
ata$a Item$Info
atb ItemCooldown
atb$a ItemCooldown$Info
atc ItemItemFrame
atd IDynamicTexture
ate ItemStack
atf Items
atg ItemKnowledgeBook
ath ItemLeash
ati ItemLingeringPotion
atj ItemWorldMap
atk ItemMilkBucket
atl ItemMinecart
atm ItemNameTag
atn ItemPickaxe
ato ItemSkullPlayer
atp ItemPotion
atq EnumItemRarity
atr ItemRecord
ats ItemSaddle
att ItemSeedFood
atu ItemSeeds
atv ItemCooldownPlayer
atw ItemShears
atx ItemShield
aty ItemSpade
atz ItemSign
au CriterionTriggerItemDurabilityChanged
aua ItemNetherStar
aub ItemSnowball
auc ItemMonsterEgg
aud ItemSpectralArrow
aue ItemSplashPotion
auf ItemBlockWallable
aug ItemString
auh ItemSword
aui ToolMaterial
auj ItemToolMaterial
auk EnumToolMaterial
aul ItemTippedArrow
aun ItemTrident
auo EnumAnimation
aup ItemActionContext
auq ItemWaterLily
aur ItemBookAndQuill
aus ItemWrittenBook
aut PotionRegistry
auu PotionBrewer
auu$a PotionBrewer$PredicatedCombination
auv PotionUtil
auw Potions
auz RecipeArmorDye
av CriterionConditionItem
ava RecipeBannerAdd
avb RecipeBannerDuplicate
avc RecipeBookClone
avd IRecipeComplex
ave RecipeFireworks
avf RecipeFireworksFade
avg RecipeFireworksStar
avh RecipeItemStack
avh$a RecipeItemStack$StackProvider
avh$c RecipeItemStack$Provider
avi RecipeMapClone
avj RecipeMapExtend
avk IRecipe
avl CraftingManager
avm RecipeSerializer
avn RecipeSerializers
avo RecipeRepair
avp ShapedRecipes
avq ShapelessRecipes
avr RecipiesShield
avs RecipeShulkerBox
avt FurnaceRecipe
avu RecipeTippedArrow
avw EnchantmentArrowDamage
avx EnchantmentFlameArrows
avy EnchantmentInfiniteArrows
avz EnchantmentArrowKnockback
aw CriterionTriggerKilled
awa EnchantmentBinding
awb EnchantmentWeaponDamage
awc EnchantmentDurability
awd EnchantmentDigging
awe Enchantment
awe$a Enchantment$Rarity
awf EnchantmentSlotType
awg EnchantmentManager
awh WeightedRandomEnchant
awi Enchantments
awj EnchantmentFire
awk EnchantmentLure
awl EnchantmentFrostWalker
awm EnchantmentKnockback
awn EnchantmentLootBonus
awo EnchantmentMending
awp EnchantmentOxygen
awq EnchantmentProtection
awq$a EnchantmentProtection$DamageType
awr EnchantmentSweeping
aws EnchantmentThorns
awt EnchantmentTridentChanneling
awu EnchantmentTridentImpaling
awv EnchantmentTridentLoyalty
aww EnchantmentTridentRiptide
awx EnchantmentSilkTouch
awy EnchantmentVanishing
awz EnchantmentDepthStrider
ax CriterionTriggerLevitation
axa EnchantmentWaterWorker
axd IMerchant
axe MerchantRecipe
axf MerchantRecipeList
axh CommandBlockListenerAbstract
axi MobSpawnerAbstract
axj BlockActionData
axk IBlockAccess
axl TextureType
axm ChunkCoordIntPair
axp IEntityAccess
axq ExpiringMap
axr Explosion
axt ForcedChunk
axu GameRules
axu$a GameRules$GameRuleValue
axu$c GameRules$EnumGameRuleType
axv EnumGamemode
axx IMaterial
axy World
axz GeneratorAccess
ay CriterionConditionLocation
aya ExceptionWorldConflict
ayb IWorldAccess
ayc IWorldReader
ayd WorldSettings
aye IIBlockAccess
ayf IPersistentAccess
ayg WorldType
ayh IWorldWriter
ayi EnumSkyBlock
ayj SpawnerCreature
ayk PortalTravelAgent
ayk$a PortalTravelAgent$ChunkCoordinatesPortal
ayl ChunkCache
aym TickListServer
ayn MobSpawnerData
ayo TickList
ayp NextTickListEntry
ayq TickListPriority
ayr BiomeMesa
ays BiomeMesaPlataeuClear
ayt BiomeBeach
ayu BiomeBase
ayu$b BiomeBase$Geography
ayu$c BiomeBase$EnumTemperature
ayu$d BiomeBase$Precipitation
ayu$e BiomeBase$BiomeMeta
ayv BiomeCache
ayw WorldChunkManager
ayx BiomeLayoutConfiguration
ayy BiomeLayout
ayz Biomes
az CriterionTriggerLocation
aza BiomeBirchForest
azb BiomeBirchForestHills
azc WorldChunkManagerCheckerBoard
azd BiomeLayoutCheckerboardConfiguration
aze BiomeColdOcean
azf BiomeRoofedForest
azg BiomeRoofedForestMutated
azh BiomeColdDeepOcean
azi BiomeFrozenDeepOcean
azj BiomeLukewarmDeepOcean
azk BiomeDeepOcean
azl BiomeWarmDeepOcean
azm BiomeDesert
azn BiomeDesertHills
azo BiomeDesertMutated
azp BiomeTheEndBarrenIsland
azq BiomeTheEndHighIsland
azr BiomeTheEndMediumIsland
azs BiomeMesaBryce
azt WorldChunkManagerHell
azu BiomeLayoutFixedConfiguration
azv BiomeForest
azw BiomeFlowerForest
azx BiomeFrozenOcean
azy BiomeFrozenRiver
azz BiomeMegaSpruceTaiga
b CrashReport
ba CriterionConditionValue
baa BiomeRedwoodTaigaHillsMutated
bab BiomeMegaTaiga
bac BiomeMegaTaigaHills
bad BiomeExtremeHillsMutated
bae BiomeIcePlainsSpikes
baf BiomeJungle
bag BiomeJungleEdge
bah BiomeJungleHills
bai BiomeLukewarmOcean
baj BiomeMesaPlateauClearMutated
bak BiomeExtremeHillsWithTreesMutated
bal BiomeJungleMutated
bam BiomeJungleEdgeMutated
ban BiomeMesaPlateauMutated
bao BiomeBigHills
bap BiomeExtremeHillsEdge
baq BiomeMushrooms
bar BiomeMushroomIslandShore
bar BiomeMushroomIslandShore
bas BiomeHell
bat BiomeOcean
bau WorldChunkManagerOverworld
bav BiomeLayoutOverworldConfiguration
baw BiomePlains
bax BiomeRiver
bay BiomeSavanna
baz BiomeSavannaPlateau
bb CriterionConditionMobEffect
bba BiomeSavannaMutated
bbb BiomeSavannaPlateauMutated
bbc BiomeTheEndFloatingIslands
bbd BiomeColdBeach
bbe BiomeIceMountains
bbf BiomeColdTaiga
bbg BiomeColdTaigaHills
bbh BiomeColdTaigaMutated
bbi BiomeIcePlains
bbj BiomeStoneBeach
bbk BiomeSunflowerPlains
bbl BiomeSwamp
bbm BiomeSwamplandMutated
bbn BiomeTaiga
bbo BiomeTaigaHills
bbp BiomeTaigaMutated
bbq BiomeBirchForestMutated
bbr BiomeBirchForestHillsMutated
bbs BiomeTheEnd
bbt WorldChunkManagerTheEnd
bbu BiomeLayoutTheEndConfiguration
bbv BiomeVoid
bbw BiomeWarmOcean
bbx BiomeMesaPlataeu
bby BiomeForestHills
bbz BiomeExtremeHillsWithTrees
bc CriterionConditionNBT
bcb BlockBannerAbstract
bcc BlockSkullAbstract
bcd BlockAir
bce BlockAnvil
bce$a BlockAnvil$TileEntityContainerAnvil
bcf BlockStemAttached
bcg BlockBanner
bch BlockBarrier
bci BlockCoralFanAbstract
bcj BlockCoralDead
bck BlockCoralBase
bcl BlockCoralFanWallAbstract
bcm BlockTileEntity
bcn BlockPressurePlateAbstract
bco BlockMinecartTrackAbstract
bcp BlockBeacon
bcq BlockBed
bcr BlockBeetroot
bcs Block
bcs$b Block$EnumRandomOffset
bcs$c Block$Info
bct Blocks
bcu BlockBlueIce
bcv IBlockFragilePlantElement
bcw BlockBookshelf
bcx BlockBrewingStand
bcy BlockBubbleColumn
bcz IFluidSource
bd CriterionTriggerNetherTravel
bda BlockPlant
bdb BlockButtonAbstract
bdc BlockCactus
bdd BlockCake
bde BlockCarrots
bdf BlockPumpkinCarved
bdg BlockCauldron
bdh BlockChest
bdi BlockChorusFlower
bdj BlockChorusFruit
bdk BlockClay
bdl BlockCocoa
bdm BlockCommand
bdn BlockRedstoneComparator
bdo BlockConcretePowder
bdp BlockConduit
bdq BlockCoral
bdr BlockCoralFan
bds BlockCoralPlant
bdt BlockCoralFanWall
bdu BlockWorkbench
bdu$a BlockWorkbench$TileEntityContainerWorkbench
bdv BlockCrops
bdw BlockTall
bdx BlockDaylightDetector
bdy BlockDeadBush
bdz BlockMinecartDetector
be CriterionTriggerPlacedBlock
bea BlockDiodeAbstract
beb BlockDirectional
bec BlockDispenser
bed BlockDoor
bee BlockTallPlant
bef BlockDragonEgg
beg BlockDropper
beh BlockEnchantmentTable
bei BlockEndGateway
bej BlockEnderPortal
bek BlockEnderPortalFrame
bel BlockEndRod
bem BlockEnderChest
ben ITileEntity
beo BlockAttachable
bep BlockFalling
beq BlockSoil
ber BlockFence
bes BlockFenceGate
bet BlockFire
beu BlockFlowers
bev BlockFlowerPot
bew BlockIceFrost
bex BlockFurnace
bey BlockGlass
bez BlockGlassPane
bf CriterionTriggerPlayerHurtEntity
bfa BlockGlazedTerracotta
bfb BlockLightStone
bfc BlockGrass
bfd BlockGrassPath
bfe BlockGravel
bff BlockHalfTransparent
bfg BlockHay
bfh BlockHopper
bfi BlockFacingHorizontal
bfj BlockHugeMushroom
bfk BlockIce
bfl BlockMonsterEggs
bfm BlockIronBars
bfn BlockJukeBox
bfo BlockKelp
bfp BlockKelpPlant
bfq BlockLadder
bfr BlockLeaves
bft BlockLever
bfu BlockFluids
bfv IFluidContainer
bfw BlockLogAbstract
bfx BlockMagma
bfy BlockMelon
bfz EnumBlockMirror
bg CriterionTriggerRecipeUnlocked
bga BlockMushroom
bgb BlockMycel
bgc BlockPortal
bgc$a BlockPortal$Shape
bgd BlockNetherWart
bge BlockNoDrop
bgf BlockNote
bgg BlockObserver
bgh BlockOre
bgi BlockPackedIce
bgj BlockSprawling
bgk BlockSkullPlayer
bgl BlockSkullPlayerWall
bgm BlockPotatoes
bgn BlockPowered
bgo BlockPoweredRail
bgp BlockPressurePlateBinary
bgp$a BlockPressurePlateBinary$EnumMobType
bgq BlockPumpkin
bgr BlockMinecartTrack
bgs MinecartTrackLogic
bgt BlockRedstoneOre
bgu BlockRedstoneWire
bgv BlockRedstoneLamp
bgw BlockRedstoneTorch
bgw$a BlockRedstoneTorch$RedstoneUpdateInfo
bgx BlockRedstoneTorchWall
bgy EnumRenderType
bgz BlockRepeater
bh CriterionTriggerSummonedEntity
bha BlockRotatable
bhb EnumBlockRotation
bhc BlockSand
bhd BlockSapling
bhe BlockSeaLantern
bhf BlockSeaPickle
bhg BlockSeaGrass
bhh BlockTallPlantShearable
bhi BlockShulkerBox
bhj BlockSign
bhk BlockSkull
bhk$b BlockSkull$Type
bhl BlockStepAbstract
bhm BlockSlime
bhn BlockSnowBlock
bho BlockSnow
bhp BlockDirtSnow
bhq BlockSlowSand
bhr SoundEffectType
bhs BlockMobSpawner
bht BlockSponge
bhu BlockDirtSnowSpreadable
bhv BlockStainedGlass
bhw BlockStainedGlassPane
bhx BlockStairs
bhy BlockFloorSign
bhz BlockStem
bi CriterionTriggerTamedAnimal
bia BlockStemmed
bib BlockStone
bic BlockStoneButton
bid BlockStructure
bie BlockStructureVoid
bif BlockReed
big BlockTallPlantFlower
bih BlockLongGrass
bii BlockTallSeaGrass
bij BlockTNT
bik BlockTorch
bil BlockTrapdoor
bim BlockChestTrapped
bin BlockTripwire
bio BlockTripwireHook
bip BlockTurtleEgg
biq BlockVine
bir BlockBannerWall
bis BlockCobbleWall
bit BlockWallSign
biu BlockSkullWall
biv BlockTorchWall
biw BlockWaterLily
bix BlockWeb
biy BlockPressurePlateWeighted
biz BlockWetSponge
bj CriterionTriggerTick
bja BlockWitherSkull
bjb BlockWitherSkullWall
bjc BlockWoodButton
bjd BlockCarpet
bje TileEntityBanner
bjf EnumBannerPatternType
bjg TileEntityBeacon
bjg$a TileEntityBeacon$BeaconColorTracker
bjh TileEntityBed
bji TileEntity
bjj TileEntityTypes
bjk TileEntityBrewingStand
bjl TileEntityChest
bjm TileEntityCommand
bjm$a TileEntityCommand$Type
bjn TileEntityComparator
bjo TileEntityConduit
bjp TileEntityLightDetector
bjq TileEntityDispenser
bjr TileEntityDropper
bjs TileEntityEnchantTable
bjt TileEntityEnderChest
bju TileEntityFurnace
bjv IHopper
bjw TileEntityHopper
bjx TileEntityJukeBox
bjz TileEntityContainer
bk CriterionTriggerVillagerTrade
bka TileEntityLootable
bkb TileEntityShulkerBox
bkb$a TileEntityShulkerBox$AnimationPhase
bkc TileEntitySign
bkd TileEntitySkull
bke TileEntityMobSpawner
bkf TileEntityStructure
bkf$a TileEntityStructure$UpdateType
bkg TileEntityEndGateway
bkh TileEntityEnderPortal
bki TileEntityChestTrapped
bkk WorldGenMegaTreeProvider
bkl WorldGenTreeProvider
bkm WorldGenTreeProviderAcacia
bkn WorldGenTreeProviderBirch
bko WorldGenMegaTreeProviderDarkOak
bkp WorldGenMegaTreeProviderJungle
bkq WorldGenTreeProviderOak
bkr WorldGenTreeProviderSpruce
bku BlockPistonMoving
bkv BlockPiston
bkw BlockPistonExtension
bkx TileEntityPiston
bky PistonExtendsChecker
bl CriterionTriggerUsedEnderEye
bla BlockDataAbstract
blb EnumBlockFaceShape
blc IBlockData
bld BlockData
ble BlockStateList
blf IBlockDataHolder
blh ShapeDetectorBlock
bli ShapeDetector
bli$a ShapeDetector$BlockLoader
bli$b ShapeDetector$ShapeDetectorCollection
blj ShapeDetectorBuilder
bll PredicateBlockType
blm PredicateBlock
bln MaterialPredicate
blo BlockPredicate
blp BlockStatePredicate
blq PredicateBlocks
blr PredicateBlockLightTransmission
bls PredicateBlockLiquid
blt PredicateBlockNotSolidOrLiquid
blu PredicateBlockSolid
blv PredicateBlockTag
blx BlockState
bly BlockPropertyAttachPosition
blz BlockPropertyBedPart
bm CriterionTriggerUsedTotem
bma BlockProperties
bmb BlockStateBoolean
bmc BlockPropertyChestType
bmd BlockPropertyComparatorMode
bme BlockStateDirection
bmf BlockPropertyDoorHinge
bmg BlockPropertyDoubleBlockHalf
bmh BlockStateEnum
bmi BlockPropertyHalf
bmj BlockStateInteger
bmk BlockPropertyInstrument
bml BlockPropertyPistonType
bmm IBlockState
bmn BlockPropertyTrackPosition
bmo BlockPropertyRedstoneSide
bmp BlockPropertySlabType
bmq BlockPropertyStairsShape
bmr BlockPropertyStructureMode
bmt IWorldBorderListener
bmv WorldBorder
bmx IChunkAccess
bmy ChunkGenerator
bmz ChunkGeneratorAbstract
bn CriterionConditionRange
bna ChunkGeneratorFactory
bnb ChunkGeneratorType
bnc IChunkProvider
bnd ChunkStatus
bnd$a ChunkStatus$Type
bne NibbleArray
bng DataPaletteGlobal
bnh DataPaletteHash
bni ProtoChunkExtension
bnj Chunk
bnj$a Chunk$EnumTileEntityState
bnk ChunkSection
bnl DataPaletteLinear
bnn OldNibbleArray
bno DataPalette
bnp DataPaletteExpandable
bnq DataPaletteBlock
bnr ProtoChunk
bns ProtoChunkTickList
bnt ChunkConverter
bnt$b ChunkConverter$Type
bnv ChunkRegionLoader
bnw IChunkLoader
bny OldChunkLoader
bny$a OldChunkLoader$OldChunk
bnz RegionFile
bnz$a RegionFile$ChunkBuffer
boa RegionFileCache
boc WorldProvider
bod DimensionManager
boe WorldProviderHell
bof WorldProviderNormal
bog EnumDragonRespawn
boh EnderDragonBattle
boh$a EnderDragonBattle$LoadState
boi WorldProviderTheEnd
bol GeneratorSettingsDefault
bom GeneratorSettings
bon GeneratorSettingsDebug
boo ChunkProviderDebug
bop ChunkProviderFlat
boq WorldGenStage
boq$a WorldGenStage$Features
boq$b WorldGenStage$Decoration
bor HeightMap
bor$a HeightMap$Type
bor$b HeightMap$Use
bos GeneratorSettingsNether
bot ChunkProviderHell
bou GeneratorSettingsOverworld
bov ChunkProviderGenerate
bow MobSpawnerPhantom
box GeneratorSettingsEnd
boy ChunkProviderTheEnd
boz SeededRandom
bpa WorldGenTreeAbstract
bpb WorldGenBigTree
bpb$a WorldGenBigTree$Position
bpc WorldGenForest
bpd WorldGenFeatureBlockOffsetConfiguration
bpe WorldGenTaigaStructure
bpf WorldGenFeatureBlueIce
bpg WorldGenBonusChest
bph WorldGenBuriedTreasureConfiguration
bpi WorldGenBuriedTreasure
bpj WorldGenFeatureMushroomConfiguration
bpk WorldGenMushrooms
bpl WorldGenCactus
bpm WorldGenFeatureChorusPlant
bpn WorldGenFeatureComposite
bpo WorldGenFeatureCoralClaw
bpp WorldGenFeatureCoral
bpq WorldGenFeatureCoralMushroom
bpr WorldGenFeatureCoralTree
bps WorldGenFeatureChanceDecorator
bpt WorldGenFeatureChanceDecoratorHeight
bpu WorldGenFeatureKelpConfiguration
bpv WorldGenDeadBush
bpw WorldGenFeatureChanceDecoratorRangeConfiguration
bpx WorldGenFeatureDecoratorConfiguration
bpy WorldGenFeatureChanceDecoratorCountConfiguration
bpz WorldGenFeatureDecoratorNoiseConfiguration
bq CommandExceptionProvider
bqa WorldGenFeatureFlower
bqb WorldGenFeatureDesertPyramidConfiguration
bqc WorldGenFeatureDesertPyramid
bqd WorldGenDesertWell
bqe WorldGenFeatureCircleConfiguration
bqf WorldGenFeatureCircle
bqg WorldGenFeatureDoublePlantConfiguration
bqh WorldGenTallPlant
bqi WorldGenEndCityConfiguration
bqj WorldGenEndCity
bqk WorldGenEndGatewayConfiguration
bql WorldGenEndGateway
bqm WorldGenEndIsland
bqn WorldGenEndTrophy
bqo WorldGenerator
bqp WorldGenFeatureConfiguration
bqq WorldGenFeatureRadiusConfiguration
bqr WorldGenFeatureCompositeFlower
bqs WorldGenFlowers
bqt WorldGenFeatureFlowerForest
bqu WorldGenFossils
bqv WorldGenGroundBush
bqw WorldGenFire
bqx WorldGenFeatureHellFlowingLavaConfiguration
bqy WorldGenHellLava
bqz WorldGenHugeMushroomBrown
br CustomFunction
bra WorldGenHugeMushroomRed
brb WorldGenPackedIce1
brc WorldGenPackedIce2
brd WorldGenFeatureIceburgConfiguration
bre WorldGenFeatureIceburg
brf WorldGenFeatureIglooConfiguration
brg WorldGenFeatureIgloo
brh WorldGenFeatureJungleGrass
bri WorldGenFeatureJunglePyramidConfiguration
brj WorldGenFeatureJunglePyramid
brk WorldGenFeatureJungleTree
brl WorldGenFeatureKelp
brm WorldGenFeatureLakeConfiguration
brn WorldGenLakes
bro WorldGenLightStone1
brp WorldGenJungleTree
brq WorldGenMegaTree
brr WorldGenMegaTreeAbstract
brs WorldGenMelon
brt WorldGenMineshaftConfiguration
bru WorldGenMineshaft
bru$b WorldGenMineshaft$Type
brv WorldGenDungeons
brw WorldGenNetherConfiguration
brx WorldGenNether
bry WorldGenFeatureDecoratorEmptyConfiguration
brz WorldGenFeatureEmptyConfiguration
bs CommandException
bsa WorldGenMonumentConfiguration
bsb WorldGenMonument
bsc WorldGenFeatureOceanRuinConfiguration
bsd WorldGenFeatureOreConfiguration
bse WorldGenMinable
bsf WorldGenTaiga1
bsg WorldGenFeatureFlowerPlain
bsh WorldGenFeatureConfigurationChance
bsi WorldGenPumpkin
bsj WorldGenFeatureChoiceConfiguration
bsk WorldGenFeatureChoice
bsl WorldGenFeatureRandomChoiceConfiguration
bsm WorldGenFeatureRandom
bsn WorldGenFeatureRandomConfiguration
bso WorldGenFeatureRandomScattered
bsp WorldGenFeatureRandomChoice
bsq WorldGenReed
bsr WorldGenFeatureReplaceBlockConfiguration
bss WorldGenFeatureReplaceBlock
bst WorldGenForestTree
bsu WorldGenAcaciaTree
bsv WorldGenFeatureSeaPickel
bsw WorldGenFeatureSeaGrass
bsx WorldGenFeatureSeaGrassConfiguration
bsy WorldGenFeatureShipwreckConfiguration
bsz WorldGenFeatureShipwreck
bt ICommandListener
bta WorldGenFeatureBlockConfiguration
btb WorldGenFeatureBlock
btc WorldGenFeatureRandom2
btd WorldGenFeatureRandom2Configuration
bte WorldGenFeatureIceSnow
btf WorldGenEnder
btf$a WorldGenEnder$Spike
btg WorldGenFeatureFlowingConfiguration
bth WorldGenLiquids
bti WorldGenTaiga2
btj WorldGenFeatureStrongholdConfiguration
btk WorldGenStronghold
btl StructureGenerator
btm WorldGenFeatureFlowerSwamp
btn WorldGenSwampTree
bto WorldGenFeatureSwampHutConfiguration
btp WorldGenFeatureSwampHut
btq WorldGenFeatureTaigaGrass
btr WorldGenFeatureTallGrassConfiguration
bts WorldGenGrass
btt WorldGenTrees
btu WorldGenFeatureVillageConfiguration
btv WorldGenVillage
btw WorldGenVines
btx WorldGenFeatureEndPlatform
bty WorldGenWaterLily
btz WorldGenMansionConfiguration
bu CommandListenerWrapper
bua WorldGenWoodlandMansion
buc WorldGenFlatLayerInfo
bud GeneratorSettingsFlat
bug WorldGenDecoratorCarveMask
buh WorldGenDecoratorChance
bui WorldGenDecoratorChanceHeight
buj WorldGenDecoratorChancePass
buk WorldGenDecoratorSkyVisibleBiased
bul WorldGenDecoratorChorusPlant
bum WorldGenDecoratorHeightBiased
bun WorldGenDecoratorHeightAverage
buo WorldGenDecoratorHeightDouble
bup WorldGenDecoratorHeight64
buq WorldGenDecoratorHeight32
bur WorldGenDecoratorHeight
bus WorldGenDecoratorSkyVisible
but WorldGenDecoratorHeightBiased2
buu WorldGenDecoratorHeightExtraChance
buv WorldGenDecoratorCarveMaskConfiguration
buw WorldGenDecoratorChanceConfiguration
bux WorldGenDecoratorFrequencyConfiguration
buy WorldGenDecoratorFrequencyChanceConfiguration
buz WorldGenDecoratorFrequencyExtraChanceConfiguration
bv CommandDispatcher
bva WorldGenDecoratorNoiseConfiguration
bvb WorldGenDecoratorRangeConfiguration
bvc WorldGenDecoratorHeightAverageConfiguration
bvd WorldGenDecoratorEmerald
bve WorldGenDecoratorEndGateway
bvf WorldGenDecoratorEndIsland
bvg WorldGenDecorator
bvh WorldGenDecoratorForestRock
bvi WorldGenDecoratorIceburg
bvj WorldGenDecoratorLakeChanceConfiguration
bvk WorldGenDecoratorLakeLava
bvl WorldGenDecoratorLakeWater
bvm WorldGenDecoratorDungeonConfiguration
bvn WorldGenDecoratorDungeon
bvo WorldGenDecoratorNoiseHeight32
bvp WorldGenDecoratorNoiseHeightDouble
bvq WorldGenDecoratorEmpty
bvr WorldGenDecoratorRoofedTree
bvs WorldGenDecoratorSpike
bvt WorldGenDecoratorSolidTop
bvu WorldGenDecoratorSolidTopNoise
bvv WorldGenDecoratorSolidTopHeight
bvw WorldGenDecoratorNetherChance
bvx WorldGenDecoratorNetherHeight
bvy WorldGenDecoratorNetherFire
bvz WorldGenDecoratorNetherGlowstone
bw ICompletionProvider
bwa WorldGenDecoratorNetherMagma
bwb WorldGenDecoratorNetherRandomCount
bwe WorldGenCarverAbstract
bwf StructureBoundingBox
bwg WorldGenBuriedTreasurePieces
bwh WorldGenCanyon
bwi WorldGenCaves
bwj WorldGenCarverWrapper
bwk WorldGenDesertPyramidPiece
bwl WorldGenEndCityPieces
bwl$a WorldGenEndCityPieces$Piece
bwl$b WorldGenEndCityPieces$PieceGenerator
bwm WorldGenCavesHell
bwn WorldGenIglooPiece
bwo WorldGenJunglePyramidPiece
bwp PersistentStructureLegacy
bwq WorldGenMineshaftPieces
bwq$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
bwq$b WorldGenMineshaftPieces$WorldGenMineshaftCross
bwq$d WorldGenMineshaftPieces$WorldGenMineshaftRoom
bwq$e WorldGenMineshaftPieces$WorldGenMineshaftStairs
bwr WorldGenNetherPieces
bwr$a WorldGenNetherPieces$WorldGenNetherPiece1
bwr$b WorldGenNetherPieces$WorldGenNetherPiece2
bwr$c WorldGenNetherPieces$WorldGenNetherPiece3
bwr$d WorldGenNetherPieces$WorldGenNetherPiece4
bwr$e WorldGenNetherPieces$WorldGenNetherPiece5
bwr$f WorldGenNetherPieces$WorldGenNetherPiece6
bwr$g WorldGenNetherPieces$WorldGenNetherPiece7
bwr$h WorldGenNetherPieces$WorldGenNetherPiece8
bwr$i WorldGenNetherPieces$WorldGenNetherPiece9
bwr$j WorldGenNetherPieces$WorldGenNetherPiece10
bwr$k WorldGenNetherPieces$WorldGenNetherPiece11
bwr$l WorldGenNetherPieces$WorldGenNetherPiece12
bwr$m WorldGenNetherPieces$WorldGenNetherPiece
bwr$n WorldGenNetherPieces$WorldGenNetherPieceWeight
bwr$o WorldGenNetherPieces$WorldGenNetherPiece13
bwr$p WorldGenNetherPieces$WorldGenNetherPiece14
bwr$q WorldGenNetherPieces$WorldGenNetherPiece15
bws WorldGenMonumentPieces
bws$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
bws$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
bws$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
bws$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
bws$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
bws$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
bws$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
bws$h WorldGenMonumentPieces$WorldGenMonumentPiece1
bws$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
bws$j WorldGenMonumentPieces$WorldGenMonumentPiece2
bws$k WorldGenMonumentPieces$WorldGenMonumentPiece3
bws$l WorldGenMonumentPieces$WorldGenMonumentPiece4
bws$m WorldGenMonumentPieces$WorldGenMonumentPiece5
bws$n WorldGenMonumentPieces$WorldGenMonumentPiece6
bws$o WorldGenMonumentPieces$WorldGenMonumentPiece7
bws$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
bws$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
bws$r WorldGenMonumentPieces$WorldGenMonumentPiece
bws$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
bws$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
bws$u WorldGenMonumentPieces$WorldGenMonumentPiece8
bws$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
bwt WorldGenFeatureOceanRuin
bwt$b WorldGenFeatureOceanRuin$Temperature
bwu WorldGenFeatureOceanRuinPieces
bwv WorldGenScatteredPiece
bww WorldGenShipwreck
bwx WorldGenStrongholdPieces
bwx$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
bwx$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
bwx$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
bwx$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
bwx$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
bwx$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
bwx$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
bwx$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
bwx$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
bwx$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
bwx$k WorldGenStrongholdPieces$WorldGenStrongholdStones
bwx$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
bwx$m WorldGenStrongholdPieces$WorldGenStrongholdStart
bwx$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
bwx$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
bwx$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
bwx$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
bwy WorldGenFactory
bwz PersistentIndexed
bx ArgumentChatFormat
bxb StructurePiece
bxb$a StructurePiece$StructurePieceBlockSelector
bxc StructureStart
bxd WorldGenWitchHut
bxe DefinedStructurePiece
bxf WorldGenCanyonOcean
bxg WorldGenCavesOcean
bxh WorldGenVillagePieces
bxh$a WorldGenVillagePieces$WorldGenVillageLibrary
bxh$b WorldGenVillagePieces$WorldGenVillageFarm2
bxh$c WorldGenVillagePieces$WorldGenVillageFarm
bxh$d WorldGenVillagePieces$WorldGenVillageLight
bxh$e WorldGenVillagePieces$WorldGenVillagePieceWeight
bxh$f WorldGenVillagePieces$WorldGenVillageButcher
bxh$g WorldGenVillagePieces$WorldGenVillageHouse
bxh$h WorldGenVillagePieces$WorldGenVillageHut
bxh$i WorldGenVillagePieces$WorldGenVillageTemple
bxh$j WorldGenVillagePieces$WorldGenVillageBlacksmith
bxh$k WorldGenVillagePieces$WorldGenVillageStartPiece
bxh$l WorldGenVillagePieces$WorldGenVillageRoad
bxh$m WorldGenVillagePieces$WorldGenVillageHouse2
bxh$n WorldGenVillagePieces$Material
bxh$o WorldGenVillagePieces$WorldGenVillagePiece
bxh$p WorldGenVillagePieces$WorldGenVillageRoadPiece
bxh$q WorldGenVillagePieces$WorldGenVillageWell
bxi WorldGenWoodlandMansionPieces
bxj WorldGenCarver
bxl DefinedStructureProcessorRotation
bxm DefinedStructureManager
bxn DefinedStructureInfo
bxo DefinedStructureProcessor
bxp DefinedStructure
bxp$b DefinedStructure$BlockInfo
bxp$c DefinedStructure$EntityInfo
bxr WorldGenSurfaceComposite
bxs WorldGenSurfaceDefaultBlock
bxt WorldGenSurfaceExtremeHillMutated
bxu WorldGenSurfaceExtremeHills
bxv WorldGenSurfaceFrozenOcean
bxw WorldGenSurfaceMesaBryce
bxx WorldGenSurfaceMesaForest
bxy WorldGenSurfaceMesa
bxz WorldGenSurfaceNether
by ArgumentChatComponent
bya WorldGenSurfaceEmpty
byb WorldGenSurfaceSavannaMutated
byc WorldGenSurface
byd WorldGenSurfaceConfigurationBase
bye WorldGenSurfaceConfiguration
byf WorldGenSurfaceSwamp
byg WorldGenSurfaceTaigaMega
byi NoiseGeneratorPerlin
byj NoiseGeneratorOctaves
byk NoiseGenerator3
byl NoiseGenerator3Handler
bym NoiseGenerator
byo LightEngine
byp LightEngineBlock
byq ILightEngine
byr LightEngineSky
byt FluidTypeEmpty
byu FluidTypeFlowing
byv FluidType
byw Fluid
byx FluidImpl
byy FluidTypes
byz FluidTypeLava
bz ArgumentDimension
bza Material
bzb MaterialMapColor
bzc EnumPistonReaction
bzd FluidTypeWater
bzf Area
bzg AreaDimension
bzh AreaFactory
bzi AreaLazy
bzk AreaContextTransformed
bzl WorldGenContext
bzm WorldGenContextLayer
bzn WorldGenContextArea
bzp GenLayerDeepOcean
bzq GenLayerSpecial
bzq$a GenLayerSpecial$Special1
bzq$b GenLayerSpecial$Special2
bzq$c GenLayerSpecial$Special3
bzr GenLayerIsland
bzs GenLayerMushroomIsland
bzt GenLayerTopSoil
bzu GenLayerDesert
bzv GenLayerBiome
bzw LayerIsland
bzx GenLayer
bzy GenLayers
bzz GenLayerOceanEdge
c CrashReportSystemDetails
c$a CrashReportSystemDetails$CrashReportDetail
ca ArgumentAnchor
ca$a ArgumentAnchor$Anchor
caa GenLayerOcean
cab GenLayerPlains
cac GenLayerRegionHills
cad GenLayerIcePlains
cae GenLayerCleaner
caf GenLayerRiver
cag GenLayerRiverMix
cah GenLayerMushroomShore
cai GenLayerSmooth
caj GenLayerZoomVoronoi
cak GenLayerZoom
cam AreaTransformer1
can AreaTransformer2
cao AreaTransformer3
cap AreaTransformer4
caq AreaTransformer5
car AreaTransformer6
cas AreaTransformer7
cat AreaTransformerIdentity
cau AreaTransformerOffset1
cav AreaTransformer
caw AreaTransformer8
caz Path
cb ArgumentEntity
cba PathType
cbb PathfinderFlying
cbc PathPoint
cbd PathfinderAbstract
cbe PathEntity
cbf PathMode
cbg Pathfinder
cbh PathfinderWater
cbi PathfinderTurtle
cbj PathfinderNormal
cbn RunnableSaveScoreboard
cbo PersistentBase
cbp MapIconBanner
cbq MapIcon
cbq$a MapIcon$Type
cbr WorldMapFrame
cbs WorldMap
cbs$a WorldMap$WorldMapHumanTracker
cbv ServerNBTManager
cbw WorldLoaderServer
cbx SecondaryWorldData
cby WorldPersistentData
cbz WorldNBTStorage
cc ArgumentEntitySummon
cca WorldLoader
ccb WorldData
ccc IDataManager
cce Convertable
cci IPlayerFileData
cck PersistentCollection
ccl LootTables
ccm LootSelectorEmpty
ccn LootItem
cco LootSelector
ccp LootSelectorEntry
ccq LootTable
ccr LootTableInfo
ccr$a LootTableInfo$Builder
ccr$b LootTableInfo$EntityTarget
ccs LootSelectorLootTable
cct LootTableRegistry
ccu LootValueBounds
ccv LootItemFunctionEnchant
ccw LootEnchantLevel
ccx LootItemFunctionExplorationMap
ccy LootItemFunction
ccz LootItemFunctions
cd ArgumentProfile
cda LootEnchantFunction
cdb LootItemFunctionSetAttribute
cdc LootItemFunctionSetCount
cdd LootItemFunctionSetDamage
cde LootItemFunctionSetName
cdf LootItemFunctionSetTag
cdg LootItemFunctionSmelt
cdj LootItemConditionEntityScore
cdk LootItemCondition
cdl LootItemConditions
cdm LootItemConditionEntityProperty
cdn LootItemConditionKilledByPlayer
cdo LootItemConditionRandomChance
cdp LootItemConditionRandomChanceWithLooting
cdr LootEntityProperties
cds LootEntityProperty
cdt LootEntityPropertyOnFire
cdw FileIOThread
cdx IAsyncChunkSaver
ce ArgumentEnchantment
cea AxisAlignedBB
ceb MovingObjectPosition
ceb$a MovingObjectPosition$EnumMovingObjectType
cec FluidCollisionOption
ced Vec2F
cee Vec3D
ceg VoxelShapeArray
ceh VoxelShapeBitSet
cei OperatorBoolean
cej VoxelShapeCubePoint
cek VoxelShapeCube
cel VoxelShapeCubeMerger
cem VoxelShapeDiscrete
cen VoxelShapeMergerIdentical
ceo VoxelShapeMerger
cep VoxelShapeMergerList
ceq DoubleListRange
cer VoxelShapeMergerDisjoint
ces DoubleListOffset
cet VoxelShapes
ceu VoxelShapeSlice
cev VoxelShapeDiscreteSlice
cew VoxelShape
cex VoxelShapeWorldRegion
cez ScoreboardObjective
cf ArgumentChat
cfa ScoreboardTeam
cfb ScoreboardScore
cfc Scoreboard
cfd PersistentScoreboard
cfe ScoreboardTeamBase
cfe$a ScoreboardTeamBase$EnumTeamPush
cfe$b ScoreboardTeamBase$EnumNameTagVisibility
cff IScoreboardCriteria
cff$a IScoreboardCriteria$EnumScoreboardHealthDisplay
cg ArgumentMobEffect
ch ArgumentNBTTag
ci ArgumentNBTKey
cj ArgumentScoreboardObjective
ck ArgumentScoreboardCriteria
cl ArgumentMathOperation
cm ArgumentParticle
cn ArgumentCriterionValue
co ArgumentMinecraftKeyRegistered
cp ArgumentScoreholder
cq ArgumentScoreboardSlot
cr ArgumentInventorySlot
cs ArgumentScoreboardTeam
ct ArgumentTileLocation
cu ArgumentBlockPredicate
cv ArgumentTile
cw ArgumentBlock
cy ArgumentPosition
cz ArgumentVec2I
d CrashReportCallable
da IVectorPosition
db ArgumentVectorPosition
dc ArgumentRotation
dd ArgumentRotationAxis
de ArgumentVec2
df ArgumentVec3
dg ArgumentParserPosition
dh VectorPosition
dj ArgumentTag
dk ArgumentItemStack
dl ArgumentPredicateItemStack
dm ArgumentParserItemStack
dn ArgumentItemPredicate
dr EntitySelector
ds ArgumentParserSelector
dt PlayerSelector
dy ArgumentSerializer
dz ArgumentRegistry
e DefaultUncaughtExceptionHandler
ea ArgumentSerializerVoid
eb CompletionProviders
ec ArgumentSerializers
ed ArgumentSerializerDouble
ee ArgumentSerializerFloat
ef ArgumentSerializerInteger
eg ArgumentSerializerString
ej EnumAxisCycle
el BlockPosition
el$a BlockPosition$MutableBlockPosition
em ISourceBlock
en SourceBlock
eo DispenseBehaviorItem
ep RegistryBlocks
eq EnumDirection
eq$a EnumDirection$EnumAxis
eq$b EnumDirection$EnumAxisDirection
eq$c EnumDirection$EnumDirectionLimit
er EnumDirection8
es IDispenseBehavior
et Registry
eu RegistryBlockID
ev ILocationSource
ew ISource
ex MapGeneratorUtils
ey RegistryMaterials
ez NonNullList
f ThreadNamedUncaughtExceptionHandler
fa IPosition
fb Position
fc IRegistry
fd Vector3f
ff BaseBlockPosition
fh ParticleParamBlock
fi ParticleParamRedstone
fj ParticleParamItem
fk ParticleParam
fl Particle
fm Particles
fn ParticleType
fp DebugReportGenerator
fq DebugReportProvider
fr HashCache
fs DebugReportAdvancement
ft DebugReportAdvancementAdventure
fu DebugReportAdvancementHusbandry
fv DebugReportAdvancementNether
fw DebugReportAdvancementStory
fx DebugReportAdvancementTheEnd
fz DebugReportBlocks
ga DebugReportCommands
gb DebugReportItems
ge DebugReportRecipeData
gf DebugReportRecipe
gg DebugReportRecipeShaped
gh DebugReportRecipeShapeless
gi DebugReportRecipeFurnace
gj DebugReportRecipeSpecial
gl DebugReportNBT
gm DebugReportMojangson
go DebugReportTagsBlock
gp DebugReportFluidTags
gq DebugReportTagsItem
gr DebugReportTags
gt LocaleLanguage
gv NBTTagByteArray
gw NBTTagByte
gx NBTList
gy NBTTagCompound
gz NBTTagDouble
h ReportedException
ha NBTTagEnd
hb NBTTagFloat
hc NBTTagIntArray
hd NBTTagInt
he NBTTagList
hf NBTTagLongArray
hg NBTTagLong
hh NBTReadLimiter
hi NBTCompressedStreamTools
hj DynamicOpsNBT
hk GameProfileSerializer
hl NBTNumber
hm NBTTagShort
hn NBTTagString
ho NBTBase
hp MojangsonParser
hr PacketEncryptionHandler
hs PacketDecrypter
ht PacketEncrypter
hu PacketDecompressor
hv PacketCompressor
hw NetworkManager
hw$a NetworkManager$QueuedPacket
hx EnumProtocol
hy PacketDataSerializer
hz PacketDecoder
i ResourceKeyInvalidException
ia PacketEncoder
ib PacketListener
ic SkipEncodeException
id PacketSplitter
ie PacketPrepender
ig ChatBaseComponent
ih ChatMessageType
ii ChatClickable
ii$a ChatClickable$EnumClickAction
ij IChatBaseComponent
ij$a IChatBaseComponent$ChatSerializer
ik ChatComponentUtils
il ChatHoverable
il$a ChatHoverable$EnumHoverAction
im ChatComponentKeybind
in ChatComponentScore
io ChatComponentSelector
ip ChatModifier
ip$a ChatModifier$ChatModifierSerializer
iq ChatComponentText
ir ChatMessage
is ChatMessageException
iv Packet
iw EnumProtocolDirection
ix PlayerConnectionUtils
iy PacketListenerPlayOut
iz PacketPlayOutSpawnEntity
j SharedConstants
ja PacketPlayOutSpawnEntityExperienceOrb
jb PacketPlayOutSpawnEntityWeather
jc PacketPlayOutSpawnEntityLiving
jd PacketPlayOutSpawnEntityPainting
je PacketPlayOutNamedEntitySpawn
jf PacketPlayOutAnimation
jg PacketPlayOutStatistic
jh PacketPlayOutBlockBreakAnimation
ji PacketPlayOutTileEntityData
jj PacketPlayOutBlockAction
jk PacketPlayOutBlockChange
jl PacketPlayOutBoss
jl$a PacketPlayOutBoss$Action
jm PacketPlayOutServerDifficulty
jn PacketPlayOutChat
jo PacketPlayOutMultiBlockChange
jo$a PacketPlayOutMultiBlockChange$MultiBlockChangeInfo
jp PacketPlayOutTabComplete
jq PacketPlayOutCommands
jr PacketPlayOutTransaction
js PacketPlayOutCloseWindow
jt PacketPlayOutOpenWindow
ju PacketPlayOutWindowItems
jv PacketPlayOutWindowData
jw PacketPlayOutSetSlot
jx PacketPlayOutSetCooldown
jy PacketPlayOutCustomPayload
jz PacketPlayOutCustomSoundEffect
k SystemUtils
k$a SystemUtils$IdentityHashingStrategy
k$b SystemUtils$OS
ka PacketPlayOutKickDisconnect
kb PacketPlayOutEntityStatus
kc PacketPlayOutExplosion
kd PacketPlayOutUnloadChunk
ke PacketPlayOutGameStateChange
kf PacketPlayOutKeepAlive
kg PacketPlayOutMapChunk
kh PacketPlayOutWorldEvent
ki PacketPlayOutWorldParticles
kj PacketPlayOutLogin
kk PacketPlayOutMap
kl PacketPlayOutEntity
kl$a PacketPlayOutEntity$PacketPlayOutRelEntityMove
kl$b PacketPlayOutEntity$PacketPlayOutRelEntityMoveLook
kl$c PacketPlayOutEntity$PacketPlayOutEntityLook
km PacketPlayOutVehicleMove
kn PacketPlayOutOpenSignEditor
ko PacketPlayOutAutoRecipe
kp PacketPlayOutAbilities
kq PacketPlayOutCombatEvent
kq$a PacketPlayOutCombatEvent$EnumCombatEventType
kr PacketPlayOutPlayerInfo
kr$a PacketPlayOutPlayerInfo$EnumPlayerInfoAction
kr$b PacketPlayOutPlayerInfo$PlayerInfoData
ks PacketPlayOutLookAt
kt PacketPlayOutPosition
kt$a PacketPlayOutPosition$EnumPlayerTeleportFlags
ku PacketPlayOutBed
kv PacketPlayOutRecipes
kv$a PacketPlayOutRecipes$Action
kw PacketPlayOutEntityDestroy
kx PacketPlayOutRemoveEntityEffect
ky PacketPlayOutResourcePackSend
kz PacketPlayOutRespawn
l Advancement
l$a Advancement$SerializedAdvancement
la PacketPlayOutEntityHeadRotation
lb PacketPlayOutSelectAdvancementTab
lc PacketPlayOutWorldBorder
lc$a PacketPlayOutWorldBorder$EnumWorldBorderAction
ld PacketPlayOutCamera
le PacketPlayOutHeldItemSlot
lf PacketPlayOutScoreboardDisplayObjective
lg PacketPlayOutEntityMetadata
lh PacketPlayOutAttachEntity
li PacketPlayOutEntityVelocity
lj PacketPlayOutEntityEquipment
lk PacketPlayOutExperience
ll PacketPlayOutUpdateHealth
lm PacketPlayOutScoreboardObjective
ln PacketPlayOutMount
lo PacketPlayOutScoreboardTeam
lp PacketPlayOutScoreboardScore
lq PacketPlayOutSpawnPosition
lr PacketPlayOutUpdateTime
ls PacketPlayOutTitle
ls$a PacketPlayOutTitle$EnumTitleAction
lt PacketPlayOutNamedSoundEffect
lu PacketPlayOutStopSound
lv PacketPlayOutPlayerListHeaderFooter
lw PacketPlayOutNBTQuery
lx PacketPlayOutCollect
ly PacketPlayOutEntityTeleport
lz PacketPlayOutAdvancements
m Advancements
ma PacketPlayOutUpdateAttributes
ma$a PacketPlayOutUpdateAttributes$AttributeSnapshot
mb PacketPlayOutEntityEffect
mc PacketPlayOutRecipeUpdate
md PacketPlayOutTags
me PacketListenerPlayIn
mf PacketPlayInTeleportAccept
mg PacketPlayInTileNBTQuery
mh PacketPlayInChat
mi PacketPlayInClientCommand
mi$a PacketPlayInClientCommand$EnumClientCommand
mj PacketPlayInSettings
mk PacketPlayInTabComplete
ml PacketPlayInTransaction
mm PacketPlayInEnchantItem
mn PacketPlayInWindowClick
mo PacketPlayInCloseWindow
mp PacketPlayInCustomPayload
mq PacketPlayInBEdit
mr PacketPlayInEntityNBTQuery
ms PacketPlayInUseEntity
ms$a PacketPlayInUseEntity$EnumEntityUseAction
mt PacketPlayInKeepAlive
mu PacketPlayInFlying
mu$a PacketPlayInFlying$PacketPlayInPosition
mu$b PacketPlayInFlying$PacketPlayInPositionLook
mu$c PacketPlayInFlying$PacketPlayInLook
mv PacketPlayInVehicleMove
mw PacketPlayInBoatMove
mx PacketPlayInPickItem
my PacketPlayInAutoRecipe
mz PacketPlayInAbilities
n AdvancementProgress
na PacketPlayInBlockDig
na$a PacketPlayInBlockDig$EnumPlayerDigType
nb PacketPlayInEntityAction
nb$a PacketPlayInEntityAction$EnumPlayerAction
nc PacketPlayInSteerVehicle
nd PacketPlayInRecipeDisplayed
nd$a PacketPlayInRecipeDisplayed$Status
ne PacketPlayInItemName
nf PacketPlayInResourcePackStatus
nf$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
ng PacketPlayInAdvancements
ng$a PacketPlayInAdvancements$Status
nh PacketPlayInTrSel
ni PacketPlayInBeacon
nj PacketPlayInHeldItemSlot
nk PacketPlayInSetCommandBlock
nl PacketPlayInSetCommandMinecart
nm PacketPlayInSetCreativeSlot
nn PacketPlayInStruct
no PacketPlayInUpdateSign
np PacketPlayInArmAnimation
nq PacketPlayInSpectate
nr PacketPlayInUseItem
ns PacketPlayInBlockPlace
nu PacketHandshakingInSetProtocol
nv PacketHandshakingInListener
nx PacketLoginOutListener
ny PacketLoginOutCustomPayload
nz PacketLoginOutSuccess
o AdvancementRewards
oa PacketLoginOutEncryptionBegin
ob PacketLoginOutSetCompression
oc PacketLoginOutDisconnect
od PacketLoginInListener
oe PacketLoginInCustomPayload
of PacketLoginInStart
og PacketLoginInEncryptionBegin
oj PacketStatusOutListener
ok PacketStatusOutPong
ol PacketStatusOutServerInfo
om ServerPing
om$a ServerPing$ServerPingPlayerSample
om$a$a ServerPing$ServerPingPlayerSample$Serializer
om$b ServerPing$Serializer
om$c ServerPing$ServerData
om$c$a ServerPing$ServerData$Serializer
on PacketStatusInListener
oo PacketStatusInPing
op PacketStatusInStart
or DataWatcherObject
os DataWatcherSerializer
ot DataWatcherRegistry
ou DataWatcher
ou$a DataWatcher$Item
oy AutoRecipeAbstract
oz AutoRecipe
p CriterionTriggers
pa AutoRecipeFurnace
pc MinecraftKey
pe DispenseBehaviorProjectile
pf DispenserRegistry
ph ServerCommand
pj DebugOutputStream
pk EULA
pl RedirectStream
pm AdvancementDataPlayer
pn CancelledPacketHandleException
po AdvancementDataWorld
pp CustomFunctionData
pq IMinecraftServer
pr ScoreboardServer
pr$a ScoreboardServer$Action
ps PropertyManager
pt ITickable
pu BossBattleCustom
pv BossBattleCustomData
px CommandAdvancement
px$a CommandAdvancement$Action
px$b CommandAdvancement$Filter
py CommandBanIp
pz CommandBanList
q Criterion
qa CommandBan
qb CommandBossBar
qc CommandClear
qd CommandClone
qd$a CommandClone$CommandCloneStoredTileEntity
qd$b CommandClone$Mode
qe CommandDatapack
qf CommandDeop
qg CommandDebug
qh CommandGamemodeDefault
qi CommandDifficulty
qj CommandEffect
qk CommandMe
ql CommandEnchant
qm CommandExecute
qn CommandXp
qn$a CommandXp$Unit
qo CommandFill
qo$a CommandFill$Mode
qp CommandForceload
qq CommandFunction
qr CommandGamemode
qs CommandGamerule
qt CommandGive
qu CommandHelp
qv CommandKick
qw CommandKill
qx CommandList
qy CommandLocate
qz CommandTell
r CriterionProgress
ra CommandOp
rb CommandPardon
rc CommandPardonIP
rd CommandParticle
re CommandPlaySound
rf CommandPublish
rg CommandRecipe
rh CommandReload
ri CommandReplaceItem
rj CommandSaveAll
rk CommandSaveOff
rl CommandSaveOn
rm CommandSay
rn CommandScoreboard
ro CommandSeed
rp CommandSetBlock
rp$a CommandSetBlock$Filter
rp$b CommandSetBlock$Mode
rq CommandIdleTimeout
rr CommandSpawnpoint
rs CommandSetWorldSpawn
rt CommandSpreadPlayers
ru CommandStop
rv CommandStopSound
rw CommandSummon
rx CommandTag
ry CommandTeam
rz CommandTeleport
s CriterionTrigger
sa CommandTellRaw
sb CommandTime
sc CommandTitle
sd CommandTrigger
se CommandWeather
sf CommandWhitelist
sg CommandWorldBorder
sh CommandDataAccessorTile
si CommandDataAccessor
sj CommandData
sk CommandDataAccessorEntity
sn DedicatedPlayerList
so DedicatedServer
sp ThreadWatchdog
sr ServerGUI
ss PlayerListBox
st GuiStatsComponent
sw DemoWorldServer
sx DemoPlayerInteractManager
sy SecondaryWorldServer
sz EntityTracker
t CriterionInstance
ta ChunkMap
tb BossBattleServer
tc ChunkProviderServer
td WorldServer
te WorldManager
tf EntityPlayer
tg PlayerInteractManager
th EntityTrackerEntry
ti RegionLimitedWorldAccess
tj TickListWorldGen
tk PlayerChunk
tl PlayerChunkMap
to ChunkTaskBase
tp ChunkTaskCarve
tq ChunkTask
tr ChunkTaskDecorate
ts ChunkTaskNull
tt ChunkTaskFinalize
tu ChunkTaskLight
tv ChunkTaskLiquidCarve
tw ChunkTaskSpawnMobs
tx ChunkTaskScheduler
tz LegacyPingHandler
u AdvancementDisplay
ub ServerConnection
uc PlayerConnection
ud HandshakeListener
ue LoginListener
ue$a LoginListener$EnumProtocolState
uf PacketStatusListener
ui ResourcePackAbstract
uj ResourcePackFile
uk ResourcePackFolder
ul IResourcePack
um EnumResourcePackType
un ResourceNotFoundException
uo ResourcePackVanilla
up ResourcePackMetaParser
uq ResourcePackInfo
ur ResourcePackInfoDeserializer
uv ResourcePackSourceFolder
uw EnumResourcePackVersion
ux ResourcePackRepository
uy ResourcePackSource
uz ResourcePackSourceVanilla
v AdvancementFrameType
va ResourcePackLoader
va$a ResourcePackLoader$Position
vc ResourceManagerFallback
vd IReloadableResourceManager
ve IResource
vf IResourceManager
vg IResourcePackListener
vh ResourceManager
vi Resource
vk ExpirableListEntry
vl UserCache
vl$a UserCache$UserCacheEntry
vl$b UserCache$BanEntrySerializer
vm IpBanList
vn IpBanEntry
vo NameReferencingFileConverter
vo$a NameReferencingFileConverter$FileConversionException
vp PlayerList
vq OpList
vr OpListEntry
vs JsonListEntry
vt JsonList
vt$a JsonList$JsonListEntrySerializer
vu GameProfileBanList
vv GameProfileBanEntry
vw WhiteList
vx WhiteListEntry
vz RemoteStatusReply
w AdvancementRequirements
wa StatusChallengeUtils
wb RemoteControlCommandListener
wd RemoteConnectionThread
we RemoteStatusListener
we$a RemoteStatusListener$RemoteStatusChallenge
wf RemoteControlSession
wg RemoteControlListener
wi SoundEffect
wj SoundEffects
wk SoundCategory
wm RecipeBook
wn RecipeBookServer
wo ServerStatisticManager
wp Statistic
wq Counter
wr StatisticWrapper
ws StatisticList
wt StatisticManager
wv TagsBlock
ww TagsFluid
wx TagsItem
wy TagsServer
wz Tag
x AdvancementTree
xa Tags
xb TagRegistry
xd DataBits
xe EntitySlice
xg RegistryID
xh MinecraftEncryption
xj ChatDeserializer
xk HttpUtilities
xl InsensitiveStringMap
xm IntHashMap
xm$a IntHashMap$IntHashMapEntry
xn LazyInitVar
xp ChatTypeAdapterFactory
xq MathHelper
xr MethodProfiler
xr$a MethodProfiler$ProfilerInfo
xs IProgressUpdate
xt StreamAccumulator
xv INamable
xw UtilColor
xx Tuple
xy WeightedRandom
xy$a WeightedRandom$WeightedRandomChoice
xz DataConverterRegistry
y CriterionInstanceAbstract
ya DataConverterAddChoices
yb DataConverterAdvancement
yc DataConverterBedBlock
yd DataConverterBedItem
ye DataConverterBiome
yf DataConverterBannerColour
yg DataConverterPiston
yh DataConverterCustomNameTile
yi DataConverterTileEntity
yj DataConverterJukeBox
yk DataConverterBlockEntityKeepPacked
yl DataConverterShulkerBoxBlock
ym DataConverterSignText
yn DataConverterBlockName
yo DataConverterBlockRename
yp DataConverterFlattenData
yq DataConverterFlattenState
yr ChunkConverterPalette
yr$b ChunkConverterPalette$Direction
yr$b$a ChunkConverterPalette$Direction$Axis
yr$b$b ChunkConverterPalette$Direction$AxisDirection
ys DataConverterChunkStructuresTemplateRename
yt DataConverterProtoChunk
yu DataConverterColorlessShulkerEntity
yv DataConverterArmorStand
yw DataConverterEntityBlockState
yx DataConverterEntityCodSalmon
yy DataConverterCustomNameEntity
yz DataConverterGuardian
z CriterionTriggerBredAnimals
za DataConverterEquipment
zb DataConverterHealth
zc DataConverterSaddle
zd DataConverterHorse
ze DataConverterEntity
zf DataConverterItemFrame
zg DataConverterMinecart
zh DataConverterHanging
zi DataConverterPainting
zj DataConverterEntityPufferfish
zk DataConverterDropChances
zl DataConverterEntityName
zm DataConverterRiding
zn DataConverterShulker
zo DataConverterSkeleton
zp DataConverterUUID
zq DataConverterEntityRename
zr DataConverterEntityTippedArrow
zs DataConverterWolf
zt DataConverterZombieType
zu DataConverterZombie
zv DataConverterHeightmapRenaming
zw DataConverterIglooMetadataRemoval
zx DataConverterBanner
zy DataConverterCustomNameItem
zz DataConverterMaterialId