summaryrefslogtreecommitdiffstats
path: root/mappings/bukkit-1.9-cl.csrg
blob: f13cc802a1a30737cb20a0905325bebb72149f87 (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
# (c) 2016 SpigotMC Pty. Ltd.
a EnumChatFormat
aa CommandMe
aaa EntityEnderPearl
aab EntityThrownExpBottle
aac EntityPotion
aad EntityTippedArrow
aae EntityWitherSkull
aag EntityBoat
aag$a EntityBoat$EnumStatus
aag$b EntityBoat$EnumBoatType
aah EntityMinecartAbstract
aah$a EntityMinecartAbstract$EnumMinecartType
aai EntityMinecartChest
aaj EntityMinecartCommandBlock
aak EntityMinecartContainer
aal EntityMinecartFurnace
aam EntityMinecartHopper
aan EntityMinecartRideable
aao EntityMinecartMobSpawner
aap EntityMinecartTNT
aas FoodMetaData
aau Container
aav InventoryHorseChest
aaw ContainerAnvil
aax ContainerBeacon
aax$a ContainerBeacon$SlotBeacon
aay ContainerBrewingStand
aay$b ContainerBrewingStand$SlotBrewing
aay$c ContainerBrewingStand$SlotPotionBottle
aaz InventoryClickType
ab CommandEnchant
aba ICrafting
abb ContainerChest
abc InventoryCrafting
abd ContainerWorkbench
abe ContainerDispenser
abf ContainerEnchantTable
abg SlotFurnaceFuel
abh ContainerFurnace
abi SlotFurnaceResult
abj ContainerHopper
abk ContainerHorse
abl ContainerPlayer
abn InventoryMerchant
abo ContainerMerchant
abp SlotMerchantResult
abq InventoryEnderChest
abr InventoryCraftResult
abs SlotResult
abt Slot
abv ItemAnvil
abw ItemArmor
abw$a ItemArmor$EnumArmorMaterial
abx ItemArmorStand
aby ItemArrow
abz ItemAxe
ac CommandEntityData
aca ItemBanner
acb ItemBed
acc ItemBlock
acd ItemReed
ace ItemBoat
acf ItemBook
acg ItemGlassBottle
ach ItemBow
aci ItemSoup
acj ItemBucket
ack ItemCarrotStick
acl ItemChorusFruit
acm ItemClock
acn ItemCoal
aco ItemCompass
acp ItemWorldMapBase
acq CreativeModeTab
acr ItemTool
acs ItemDoor
act EnumColor
acu ItemDye
acv ItemCloth
acw ItemEgg
acx ItemElytra
acy ItemMapEmpty
acz ItemEnchantedBook
ad CommandExecute
ada ItemEndCrystal
adb ItemEnderEye
adc ItemEnderPearl
add ItemExpBottle
ade ItemFireball
adf ItemFireworksCharge
adg ItemFireworks
adh ItemFish
adh$a ItemFish$EnumFish
adi ItemFishingRod
adj ItemFlintAndSteel
adk ItemFood
adl ItemGoldenApple
adm ItemHanging
adn ItemHoe
ado Item
ado$a Item$EnumToolMaterial
adp ItemCooldown
adp$a ItemCooldown$Info
adq ItemStack
adr IDynamicTexture
ads Items
adt ItemLeash
adu ItemLeaves
adv ItemLingeringPotion
adw ItemWorldMap
adx ItemMilkBucket
ady ItemMinecart
adz ItemMultiTexture
ae CommandXp
aea ItemNameTag
aeb ItemPickaxe
aec ItemPiston
aed ItemPotion
aee EnumItemRarity
aef ItemRecord
aeg ItemRedstone
aeh ItemSaddle
aei ItemSeedFood
aej ItemSeeds
aek ItemCooldownPlayer
ael ItemShears
aem ItemShield
aen ItemSpade
aeo ItemSign
aep ItemNetherStar
aeq ItemSkull
aer ItemStep
aes ItemSnow
aet ItemSnowball
aeu ItemMonsterEgg
aev ItemSpectralArrow
aew ItemSplashPotion
aex ItemSword
aey ItemWithAuxData
aez ItemTippedArrow
af CommandFill
afa EnumAnimation
afb ItemWaterLily
afc ItemBookAndQuill
afd ItemWrittenBook
afe PotionRegistry
aff PotionBrewer
aff$a PotionBrewer$PredicateItem
aff$b PotionBrewer$PredicatedCombination
afg PotionUtil
afh Potions
afj RecipeArmorDye
afk RecipesArmor
afl RecipesBanner
afl$a RecipesBanner$AddRecipe
afl$b RecipesBanner$DuplicateRecipe
afm RecipeBookClone
afn RecipesDyes
afo RecipeFireworks
afp RecipesFood
afq RecipesFurnace
afr RecipeMapClone
afs RecipeMapExtend
aft RecipeIngots
afu IRecipe
afv CraftingManager
afw RecipeRepair
afx ShapedRecipes
afy ShapelessRecipes
afz RecipiesShield
afz$a RecipiesShield$Decoration
ag CommandDifficulty
aga RecipesCrafting
agb RecipeTippedArrow
agc RecipesTools
agd RecipesWeapons
agf EnchantmentArrowDamage
agg EnchantmentFlameArrows
agh EnchantmentInfiniteArrows
agi EnchantmentArrowKnockback
agj EnchantmentWeaponDamage
agj EnchantmentWeaponDamage
agk EnchantmentDurability
agl EnchantmentDigging
agm Enchantment
agm$a Enchantment$Rarity
agn EnchantmentSlotType
ago EnchantmentManager
ago$a EnchantmentManager$EnchantmentModifierArthropods
ago$b EnchantmentManager$EnchantmentModifierThorns
ago$c EnchantmentManager$EnchantmentModifier
ago$d EnchantmentManager$EnchantmentModifierDamage
ago$e EnchantmentManager$EnchantmentModifierProtection
agp WeightedRandomEnchant
agq Enchantments
agr EnchantmentFire
ags EnchantmentLure
agt EnchantmentFrostWalker
agu EnchantmentKnockback
agv EnchantmentLootBonus
agw EnchantmentMending
agx EnchantmentOxygen
agy EnchantmentProtection
agy$a EnchantmentProtection$DamageType
agz EnchantmentThorns
ah CommandGamemode
aha EnchantmentSilkTouch
ahb EnchantmentDepthStrider
ahc EnchantmentWaterWorker
ahf IMerchant
ahg MerchantRecipe
ahh MerchantRecipeList
ahj CommandBlockListenerAbstract
ahk MobSpawnerAbstract
ahl BlockActionData
ahn ChunkCoordIntPair
ahp Explosion
ahr GameRules
ahr$a GameRules$GameRuleValue
ahr$b GameRules$EnumGameRuleType
aht World
ahu ExceptionWorldConflict
ahv IWorldAccess
ahw WorldSettings
ahw$a WorldSettings$EnumGamemode
ahx IBlockAccess
ahy WorldType
ahz EnumSkyBlock
ai CommandGamerule
aia SpawnerCreature
aib PortalTravelAgent
aib$a PortalTravelAgent$ChunkCoordinatesPortal
aic ChunkCache
aid MobSpawnerData
aie NextTickListEntry
aif BiomeBeach
aig BiomeBase
aig$b BiomeBase$EnumTemperature
aig$c BiomeBase$BiomeMeta
aih BiomeCache
aij BiomeDecorator
aik WorldChunkManager
ail Biomes
aim BiomeDesert
ain BiomeBigHills
ain$a BiomeBigHills$Type
aio WorldChunkManagerHell
aip BiomeForest
aip$a BiomeForest$Type
aiq BiomeHell
air BiomeIcePlains
ais BiomeJungle
ait BiomeMesa
aiu BiomeMushrooms
aiv BiomeForestMutated
aiw BiomeSavannaMutated
aix BiomeOcean
aiy BiomePlains
aiz BiomeRiver
aj CommandGive
aja BiomeSavanna
ajb BiomeStoneBeach
ajc BiomeSwamp
ajd BiomeTaiga
ajd$a BiomeTaiga$Type
aje BiomeTheEnd
ajf BiomeTheEndDecorator
ajf$a BiomeTheEndDecorator$SpikeCache
ajg BiomeVoid
ajh BiomeVoidDecorator
ajj BlockAir
ajk BlockAnvil
ajk$a BlockAnvil$TileEntityContainerAnvil
ajl BlockBanner
ajl$a BlockBanner$BlockStandingBanner
ajl$b BlockBanner$BlockWallBanner
ajm BlockBarrier
ajn BlockTileEntity
ajo BlockPressurePlateAbstract
ajp BlockMinecartTrackAbstract
ajp$a BlockMinecartTrackAbstract$MinecartTrackLogic
ajp$b BlockMinecartTrackAbstract$EnumTrackPosition
ajq BlockBeacon
ajr BlockBed
ajr$a BlockBed$EnumBedPart
ajs BlockBeetroot
ajt Block
aju Blocks
ajv IBlockFragilePlantElement
ajw BlockBookshelf
ajx BlockBrewingStand
ajy BlockPlant
ajz BlockButtonAbstract
ak CommandHelp
aka BlockCactus
akb BlockCake
akc BlockCarrots
akd BlockCauldron
ake BlockChest
ake$a BlockChest$Type
akf BlockChorusFlower
akg BlockChorusFruit
akh BlockClay
aki BlockCocoa
akj BlockCloth
akk BlockCommand
akl BlockRedstoneComparator
akl$a BlockRedstoneComparator$EnumComparatorMode
akm BlockWorkbench
akm$a BlockWorkbench$TileEntityContainerWorkbench
akn BlockCrops
ako BlockDaylightDetector
akp BlockDeadBush
akq BlockMinecartDetector
akr BlockDiodeAbstract
aks BlockDirectional
akt BlockDirt
akt$a BlockDirt$EnumDirtVariant
aku BlockDispenser
akv BlockDoor
akv$a BlockDoor$EnumDoorHalf
akv$b BlockDoor$EnumDoorHinge
akw BlockTallPlant
akw$a BlockTallPlant$EnumTallPlantHalf
akw$b BlockTallPlant$EnumTallFlowerVariants
akx BlockDragonEgg
aky BlockDropper
akz BlockFlowing
al CommandKick
ala BlockEnchantmentTable
alb BlockEndGateway
alc BlockEnderPortal
ald BlockEnderPortalFrame
ale BlockEndRod
alf BlockEnderChest
alg ITileEntity
alh BlockFalling
ali BlockSoil
alj BlockFence
alk BlockFenceGate
all BlockFire
alm BlockFlowers
alm$a BlockFlowers$EnumFlowerVarient
alm$b BlockFlowers$EnumFlowerType
aln BlockFlowerPot
aln$a BlockFlowerPot$EnumFlowerPotContents
alo BlockIceFrost
alp BlockDoubleStoneStep2
alq BlockDoubleStep
alr BlockDoubleWoodStep
als BlockFurnace
alt BlockGlass
alu BlockLightStone
alv BlockGrass
alw BlockGrassPath
alx BlockGravel
aly BlockStoneStep2
alz BlockStepAbstract
alz$a BlockStepAbstract$EnumSlabHalf
am CommandKill
ama BlockStep
amb BlockHalfTransparent
amc BlockWoodStep
amd BlockHardenedClay
ame BlockHay
amf BlockHopper
amg BlockFacingHorizontal
amh BlockHugeMushroom
amh$a BlockHugeMushroom$EnumHugeMushroomVariant
ami BlockIce
amj BlockJukeBox
amj$a BlockJukeBox$TileEntityRecordPlayer
amk BlockLadder
aml BlockLeaves
amn BlockLever
amn$a BlockLever$EnumLeverPosition
amo BlockFluids
amp BlockLogAbstract
amp$a BlockLogAbstract$EnumLogRotation
amq BlockMelon
amr EnumBlockMirror
ams BlockMobSpawner
amt BlockMonsterEggs
amt$a BlockMonsterEggs$EnumMonsterEggVarient
amu BlockMushroom
amv BlockMycel
amw BlockNetherbrick
amx BlockNetherWart
amy BlockBloodStone
amz BlockLeaves2
an CommandBanList
ana BlockLog2
anb BlockDoubleStoneStepAbstract
anb$a BlockDoubleStoneStepAbstract$EnumStoneSlab2Variant
anc BlockNoDrop
and BlockNote
ane BlockObsidian
anf BlockLeaves1
ang BlockLog1
anh BlockOre
ani BlockPackedIce
anj BlockWood
anj$a BlockWood$EnumLogVariant
ank BlockPortal
ank$a BlockPortal$Shape
anl BlockPotatoes
anm BlockPowered
ann BlockPoweredRail
ano BlockPressurePlateBinary
ano$a BlockPressurePlateBinary$EnumMobType
anp BlockPrismarine
anp$a BlockPrismarine$EnumPrismarineVariant
anq BlockPumpkin
anr BlockPurpurSlab
anr$a BlockPurpurSlab$Default
anr$b BlockPurpurSlab$Half
anr$c BlockPurpurSlab$Type
ans BlockQuartz
ans$a BlockQuartz$EnumQuartzVariant
ant BlockMinecartTrack
anu BlockRedFlowers
anv BlockRedSandstone
anv$a BlockRedSandstone$EnumRedSandstoneVariant
anw BlockRedstoneOre
anx BlockRedstoneWire
anx$a BlockRedstoneWire$EnumRedstoneWireConnection
any BlockRedstoneLamp
anz BlockRedstoneTorch
anz$a BlockRedstoneTorch$RedstoneUpdateInfo
ao CommandList
aoa BlockReed
aob EnumRenderType
aoc BlockRepeater
aod BlockRotatable
aoe EnumBlockRotation
aof BlockSand
aof$a BlockSand$EnumSandVariant
aog BlockSandStone
aog$a BlockSandStone$EnumSandstoneVariant
aoh BlockSapling
aoi BlockSeaLantern
aoj BlockSign
aok BlockSkull
aol BlockSlime
aom BlockSnowBlock
aon BlockSnow
aoo BlockSlowSand
aop SoundEffectType
aoq BlockSponge
aor BlockStainedGlass
aos BlockStainedGlassPane
aot BlockStairs
aot$a BlockStairs$EnumHalf
aot$b BlockStairs$EnumStairShape
aou BlockFloorSign
aov BlockStationary
aow BlockStem
aox BlockStone
aox$a BlockStone$EnumStoneVariant
aoy BlockSmoothBrick
aoy$a BlockSmoothBrick$EnumStonebrickType
aoz BlockStoneButton
ap CommandTell
apa BlockDoubleStepAbstract
apa$a BlockDoubleStepAbstract$EnumStoneSlabVariant
apb BlockStructure
apc BlockLongGrass
apc$a BlockLongGrass$EnumTallGrassType
apd BlockThin
ape BlockTNT
apf BlockTorch
apg BlockTrapdoor
apg$a BlockTrapdoor$EnumTrapdoorHalf
aph BlockTripwire
api BlockTripwireHook
apj BlockVine
apk BlockCobbleWall
apk$a BlockCobbleWall$EnumCobbleVariant
apl BlockWallSign
apm BlockWaterLily
apn BlockWeb
apo BlockPressurePlateWeighted
app BlockWoodButton
apq BlockWoodenStep
apr BlockCarpet
aps BlockYellowFlowers
apt TileEntityBanner
apt$a TileEntityBanner$EnumBannerPatternType
apu TileEntityBeacon
apu$a TileEntityBeacon$BeaconColorTracker
apv TileEntity
apw TileEntityBrewingStand
apx TileEntityChest
apy TileEntityCommand
apy$a TileEntityCommand$Type
apz TileEntityComparator
aq CommandOp
aqa TileEntityLightDetector
aqb TileEntityDispenser
aqc TileEntityDropper
aqd TileEntityEnchantTable
aqe TileEntityEnderChest
aqf TileEntityFlowerPot
aqg TileEntityFurnace
aqh IHopper
aqi TileEntityHopper
aqj TileEntityContainer
aqk TileEntityMobSpawner
aql TileEntityNote
aqm TileEntityLootable
aqn TileEntitySign
aqo TileEntitySkull
aqp TileEntityStructure
aqp$a TileEntityStructure$UsageMode
aqq TileEntityEndGateway
aqr TileEntityEnderPortal
aqu BlockPiston
aqv BlockPistonExtension
aqv$a BlockPistonExtension$EnumPistonType
aqw BlockPistonMoving
aqx TileEntityPiston
aqy PistonExtendsChecker
ar CommandPardonIP
ara BlockDataAbstract
arb IBlockProperties
arc IBlockData
ard BlockStateList
ard$a BlockStateList$BlockData
arf ShapeDetectorBlock
arg ShapeDetector
arg$a ShapeDetector$BlockLoader
arg$b ShapeDetector$ShapeDetectorCollection
arh ShapeDetectorBuilder
arj BlockPredicate
ark BlockStatePredicate
arm BlockState
arn BlockStateBoolean
aro BlockStateDirection
arp BlockStateEnum
arq BlockStateInteger
arr IBlockState
art IWorldBorderListener
aru EnumWorldBorderState
arv WorldBorder
arx DataPaletteBlock
ary ChunkGenerator
arz IChunkProvider
as CommandPardon
asa NibbleArray
asc DataPaletteGlobal
asd DataPaletteHash
ase Chunk
ase$a Chunk$EnumTileEntityState
asf ChunkSection
asg DataPaletteLinear
ash OldNibbleArray
asi DataPalette
asj DataPaletteExpandable
asm IChunkLoader
asp OldChunkLoader
asp$a OldChunkLoader$OldChunk
asq RegionFile
asq$a RegionFile$ChunkBuffer
asr RegionFileCache
ass ChunkRegionLoader
asv WorldProvider
asw DimensionManager
asx WorldProviderHell
asy WorldProviderNormal
asz EnumDragonRespawn
at CommandParticle
ata EnderDragonBattle
atb WorldProviderTheEnd
ate WorldGenCanyon
atf ChunkSnapshot
atg CustomWorldSettingsFinal
atg$a CustomWorldSettingsFinal$CustomWorldSettings
atg$b CustomWorldSettingsFinal$CustomWorldSettingsSerializer
ath ChunkProviderDebug
ati ChunkProviderFlat
atj WorldGenCaves
atk WorldGenBase
atl WorldGenCavesHell
atm ChunkProviderHell
atn ChunkProviderGenerate
ato ChunkProviderTheEnd
atp WorldGenTreeAbstract
atq WorldGenBigTree
atq$a WorldGenBigTree$Position
atr WorldGenForest
ats WorldGenTaigaStructure
att WorldGenBonusChest
atu WorldGenMushrooms
atv WorldGenCactus
atw WorldGenClay
atx WorldGenDeadBush
aty WorldGenDesertWell
atz WorldGenTallPlant
au CommandPlaySound
aua WorldGenEndGateway
aub WorldGenEndIsland
auc WorldGenEndTrophy
aud WorldGenerator
aue WorldGenFlowers
auf WorldGenGroundBush
aug WorldGenFire
auh WorldGenLightStone2
aui WorldGenHellLava
auj WorldGenHugeMushroom
auk WorldGenPackedIce1
aul WorldGenPackedIce2
aum WorldGenLakes
aun WorldGenLightStone1
auo WorldGenJungleTree
aup WorldGenMegaTree
auq WorldGenMegaTreeAbstract
aur WorldGenMelon
aus WorldGenDungeons
aut WorldGenMinable
auu WorldGenTaiga1
auv WorldGenPumpkin
auw WorldGenReed
auy WorldGenForestTree
auz WorldGenSand
av CommandPublish
ava WorldGenAcaciaTree
avb WorldGenEnder
avb$a WorldGenEnder$Spike
avc WorldGenLiquids
avd WorldGenTaiga2
ave WorldGenSwampTree
avf WorldGenGrass
avg WorldGenTrees
avh WorldGenVines
avi WorldGenWaterLily
avk WorldGenFlatInfo
avl WorldGenFlatLayerInfo
avp StructureBoundingBox
avq WorldGenEndCity
avq$a WorldGenEndCity$Start
avr WorldGenEndCityPieces
avr$a WorldGenEndCityPieces$Piece
avr$b WorldGenEndCityPieces$PieceGenerator
avs WorldGenMineshaft
avt WorldGenMineshaftPieces
avt$a WorldGenMineshaftPieces$WorldGenMineshaftCorridor
avt$b WorldGenMineshaftPieces$WorldGenMineshaftCross
avt$c WorldGenMineshaftPieces$WorldGenMineshaftRoom
avt$d WorldGenMineshaftPieces$WorldGenMineshaftStairs
avu WorldGenMineshaftStart
avv WorldGenNether
avv$a WorldGenNether$WorldGenNetherStart
avw WorldGenNetherPieces
avw$a WorldGenNetherPieces$WorldGenNetherPiece1
avw$b WorldGenNetherPieces$WorldGenNetherPiece2
avw$c WorldGenNetherPieces$WorldGenNetherPiece3
avw$d WorldGenNetherPieces$WorldGenNetherPiece4
avw$e WorldGenNetherPieces$WorldGenNetherPiece5
avw$f WorldGenNetherPieces$WorldGenNetherPiece6
avw$g WorldGenNetherPieces$WorldGenNetherPiece7
avw$h WorldGenNetherPieces$WorldGenNetherPiece8
avw$i WorldGenNetherPieces$WorldGenNetherPiece9
avw$j WorldGenNetherPieces$WorldGenNetherPiece10
avw$k WorldGenNetherPieces$WorldGenNetherPiece11
avw$l WorldGenNetherPieces$WorldGenNetherPiece12
avw$m WorldGenNetherPieces$WorldGenNetherPiece
avw$n WorldGenNetherPieces$WorldGenNetherPieceWeight
avw$o WorldGenNetherPieces$WorldGenNetherPiece13
avw$p WorldGenNetherPieces$WorldGenNetherPiece14
avw$q WorldGenNetherPieces$WorldGenNetherPiece15
avx WorldGenMonument
avx$a WorldGenMonument$WorldGenMonumentStart
avy WorldGenMonumentPieces
avy$a WorldGenMonumentPieces$WorldGenMonumentPieceSelector7
avy$b WorldGenMonumentPieces$WorldGenMonumentPieceSelector6
avy$c WorldGenMonumentPieces$WorldGenMonumentPieceSelector5
avy$d WorldGenMonumentPieces$WorldGenMonumentPieceSelector4
avy$e WorldGenMonumentPieces$WorldGenMonumentPieceSelector3
avy$f WorldGenMonumentPieces$WorldGenMonumentPieceSelector2
avy$g WorldGenMonumentPieces$WorldGenMonumentPieceSelector1
avy$h WorldGenMonumentPieces$WorldGenMonumentPiece1
avy$i WorldGenMonumentPieces$IWorldGenMonumentPieceSelector
avy$j WorldGenMonumentPieces$WorldGenMonumentPiece2
avy$k WorldGenMonumentPieces$WorldGenMonumentPiece3
avy$l WorldGenMonumentPieces$WorldGenMonumentPiece4
avy$m WorldGenMonumentPieces$WorldGenMonumentPiece5
avy$n WorldGenMonumentPieces$WorldGenMonumentPiece6
avy$o WorldGenMonumentPieces$WorldGenMonumentPiece7
avy$p WorldGenMonumentPieces$WorldGenMonumentPieceEntry
avy$q WorldGenMonumentPieces$WorldGenMonumentPiecePenthouse
avy$r WorldGenMonumentPieces$WorldGenMonumentPiece
avy$s WorldGenMonumentPieces$WorldGenMonumentPieceSimple
avy$t WorldGenMonumentPieces$WorldGenMonumentPieceSimpleT
avy$u WorldGenMonumentPieces$WorldGenMonumentPiece8
avy$v WorldGenMonumentPieces$WorldGenMonumentStateTracker
avz WorldGenLargeFeature
avz$a WorldGenLargeFeature$WorldGenLargeFeatureStart
aw CommandReplaceItem
awa WorldGenRegistration
awa$a WorldGenRegistration$WorldGenPyramidPiece
awa$c WorldGenRegistration$WorldGenJungleTemple
awa$c$a WorldGenRegistration$WorldGenJungleTemple$WorldGenJungleTemplePiece
awa$d WorldGenRegistration$WorldGenScatteredPiece
awa$e WorldGenRegistration$WorldGenWitchHut
awb WorldGenStronghold
awb$a WorldGenStronghold$WorldGenStronghold2Start
awc WorldGenStrongholdPieces
awc$a WorldGenStrongholdPieces$WorldGenStrongholdChestCorridor
awc$b WorldGenStrongholdPieces$WorldGenStrongholdCorridor
awc$c WorldGenStrongholdPieces$WorldGenStrongholdCrossing
awc$d WorldGenStrongholdPieces$WorldGenStrongholdLeftTurn
awc$e WorldGenStrongholdPieces$WorldGenStrongholdLibrary
awc$f WorldGenStrongholdPieces$WorldGenStrongholdPieceWeight
awc$g WorldGenStrongholdPieces$WorldGenStrongholdPortalRoom
awc$h WorldGenStrongholdPieces$WorldGenStrongholdPrison
awc$i WorldGenStrongholdPieces$WorldGenStrongholdRightTurn
awc$j WorldGenStrongholdPieces$WorldGenStrongholdRoomCrossing
awc$k WorldGenStrongholdPieces$WorldGenStrongholdStones
awc$l WorldGenStrongholdPieces$WorldGenStrongholdStairs2
awc$m WorldGenStrongholdPieces$WorldGenStrongholdStart
awc$n WorldGenStrongholdPieces$WorldGenStrongholdStairs
awc$o WorldGenStrongholdPieces$WorldGenStrongholdStairsStraight
awc$p WorldGenStrongholdPieces$WorldGenStrongholdPiece
awc$p$a WorldGenStrongholdPieces$WorldGenStrongholdPiece$WorldGenStrongholdDoorType
awd StructureGenerator
awe WorldGenFactory
awf PersistentStructure
awg StructurePiece
awg$a StructurePiece$StructurePieceBlockSelector
awh StructureStart
awi DefinedStructurePiece
awj WorldGenVillage
awj$a WorldGenVillage$WorldGenVillageStart
awk WorldGenVillagePieces
awk$a WorldGenVillagePieces$WorldGenVillageLibrary
awk$b WorldGenVillagePieces$WorldGenVillageFarm2
awk$c WorldGenVillagePieces$WorldGenVillageFarm
awk$d WorldGenVillagePieces$WorldGenVillageLight
awk$e WorldGenVillagePieces$WorldGenVillagePieceWeight
awk$f WorldGenVillagePieces$WorldGenVillageButcher
awk$g WorldGenVillagePieces$WorldGenVillageHouse
awk$h WorldGenVillagePieces$WorldGenVillageHut
awk$i WorldGenVillagePieces$WorldGenVillageTemple
awk$j WorldGenVillagePieces$WorldGenVillageBlacksmith
awk$k WorldGenVillagePieces$WorldGenVillageStartPiece
awk$l WorldGenVillagePieces$WorldGenVillageRoad
awk$m WorldGenVillagePieces$WorldGenVillageHouse2
awk$n WorldGenVillagePieces$WorldGenVillagePiece
awk$o WorldGenVillagePieces$WorldGenVillageRoadPiece
awk$p WorldGenVillagePieces$WorldGenVillageWell
awm DefinedStructureManager
awn DefinedStructureInfo
awo DefinedStructure
awo$a DefinedStructure$BlockInfo
awo$b DefinedStructure$EntityInfo
awt NoiseGeneratorPerlin
awu NoiseGeneratorOctaves
awv NoiseGenerator3
awy NoiseGenerator3Handler
awz NoiseGenerator
ax CommandSaveAll
axb MaterialDecoration
axc MaterialGas
axd MaterialLiquid
axe Material
axf MaterialMapColor
axg MaterialPortal
axh EnumPistonReaction
axh EnumPistonReaction
axj GenLayerDeepOcean
axk GenLayerSpecial
axk$a GenLayerSpecial$EnumGenLayerSpecial
axl GenLayerIsland
axm GenLayerMushroomIsland
axn GenLayerTopSoil
axo GenLayerDesert
axp GenLayerBiome
axr GenLayerZoomFuzzy
axt IntCache
axu LayerIsland
axv GenLayer
axw GenLayerPlains
axx GenLayerRegionHills
axy GenLayerIcePlains
axz GenLayerCleaner
ay CommandSaveOff
aya GenLayerRiver
ayb GenLayerRiverMix
ayc GenLayerMushroomShore
ayd GenLayerSmooth
ayh GenLayerZoomVoronoi
ayi GenLayerZoom
ayl Path
aym PathType
ayn PathPoint
ayo PathfinderAbstract
ayp PathEntity
ayq Pathfinder
ayr PathfinderWater
ays PathfinderNormal
ayw RunnableSaveScoreboard
ayx PersistentBase
ayy MapIcon
ayz WorldMap
ayz$a WorldMap$WorldMapHumanTracker
az CommandSaveOn
azc ServerNBTManager
azd WorldLoaderServer
aze SecondaryWorldData
azf WorldNBTStorage
azg WorldLoader
azh WorldData
azi IDataManager
azk Convertable
azq IPlayerFileData
azs PersistentCollection
azt LootTables
azu LootSelectorEmpty
azv LootItem
azw LootSelector
azx LotoSelectorEntry
azy LootTable
azz LootTableInfo
azz$b LootTableInfo$EntityTarget
b CrashReport
ba CommandSay
baa LootSelectorLootTable
bab LootTableRegistry
bac LootValueBounds
bad LootItemFunctionEnchant
bae LootEnchantLevel
baf LootItemFunction
bag LootItemFunctions
bah LootEnchantFunction
bai LootItemFunctionSetAttribute
baj LootItemFunctionSetCount
bak LootItemFunctionSetDamage
bal LootItemFunctionSetData
bam LootItemFunctionSetTag
ban LootItemFunctionSmelt
baq LootItemConditionEntityScore
bar LootItemCondition
bas LootItemConditions
bat LootItemConditionEntityProperty
bau LootItemConditionKilledByPlayer
bav LootItemConditionRandomChance
baw LootItemConditionRandomChanceWithLooting
bay LootEntityProperties
baz LootEntityProperty
bb CommandScoreboard
bba LootEntityPropertyOnFire
bbd FileIOThread
bbe IAsyncChunkSaver
bbh AxisAlignedBB
bbi MovingObjectPosition
bbi$a MovingObjectPosition$EnumMovingObjectType
bbj Vec3D
bbl ScoreboardObjective
bbm ScoreboardTeam
bbn ScoreboardScore
bbp Scoreboard
bbq PersistentScoreboard
bbr ScoreboardTeamBase
bbr$a ScoreboardTeamBase$EnumTeamPush
bbr$b ScoreboardTeamBase$EnumNameTagVisibility
bbs ScoreboardCriteriaInteger
bbt ScoreboardBaseCriteria
bbu ScoreboardHealthCriteria
bbv IScoreboardCriteria
bbv$a IScoreboardCriteria$EnumScoreboardHealthDisplay
bbw ScoreboardReadOnlyCriteria
bbx ScoreboardStatisticCriteria
bc CommandDispatcher
bd CommandSetBlock
be CommandSetWorldSpawn
bf CommandIdleTimeout
bg CommandSpawnpoint
bh CommandSeed
bi CommandSpreadPlayers
bi$a CommandSpreadPlayers$Location2D
bj CommandStats
bk CommandStop
bl CommandSummon
bm CommandTp
bn CommandTellRaw
bp CommandTestForBlock
bq CommandTestFor
br CommandTime
bs CommandTitle
bt CommandToggleDownfall
bu CommandTrigger
bv CommandWeather
bw CommandWhitelist
bx CommandWorldBorder
bz CommandException
c CrashReportSystemDetails
c$a CrashReportSystemDetails$CrashReportDetail
ca ExceptionEntityNotFound
cb ExceptionInvalidNumber
cc ExceptionInvalidSyntax
cd ExceptionPlayerNotFound
ce ExceptionUnknownCommand
cf ExceptionUsage
cj BlockPosition
cj$a BlockPosition$MutableBlockPosition
cj$b BlockPosition$PooledBlockPosition
ck ISourceBlock
cl SourceBlock
cm IteratorUtils
cm$a IteratorUtils$ArrayToList
cm$b IteratorUtils$ClassIterable
cm$b$a IteratorUtils$ClassIterable$ClassIterator
cn DispenseBehaviorItem
co RegistryBlocks
cp RegistryDefault
cq EnumDirection
cq$a EnumDirection$EnumAxis
cq$b EnumDirection$EnumAxisDirection
cq$c EnumDirection$EnumDirectionLimit
cr IDispenseBehavior
cs Registry
ct RegistryBlockID
cu ILocationSource
cv ISource
cw MapGeneratorUtils
cx RegistryMaterials
cy EnumParticle
cz IPosition
da Position
db IRegistry
dc Vector3f
dd RegistrySimple
df BaseBlockPosition
di LocaleI18n
dj LocaleLanguage
dl NBTTagByteArray
dm NBTTagByte
dn NBTTagCompound
dp NBTTagDouble
dq NBTTagEnd
dr NBTTagFloat
ds NBTTagIntArray
dt NBTTagInt
du NBTTagList
dv NBTTagLong
dw NBTReadLimiter
dx NBTCompressedStreamTools
dy GameProfileSerializer
dz NBTTagShort
e ReportedException
ea NBTTagString
eb NBTBase
eb$a NBTBase$NBTNumber
ec MojangsonParseException
ed MojangsonParser
ed$a MojangsonParser$MojangsonTypeParser
ed$b MojangsonParser$MojangsonCompoundParser
ed$c MojangsonParser$MojangsonListParser
ed$d MojangsonParser$MojangsonPrimitiveParser
ef PacketEncryptionHandler
eg PacketDecrypter
eh PacketEncrypter
ei PacketDecompressor
ej PacketCompressor
ek NetworkManager
ek$a NetworkManager$QueuedPacket
el EnumProtocol
em PacketDataSerializer
en PacketDecoder
eo PacketEncoder
ep PacketListener
eq PacketSplitter
er PacketPrepender
es ChatBaseComponent
et ChatClickable
et$a ChatClickable$EnumClickAction
eu IChatBaseComponent
eu$a IChatBaseComponent$ChatSerializer
ev ChatComponentUtils
ew ChatHoverable
ew$a ChatHoverable$EnumHoverAction
ex ChatComponentScore
ey ChatComponentSelector
ez ChatModifier
ez$a ChatModifier$ChatModifierSerializer
f SharedConstants
fa ChatComponentText
fb ChatMessage
fc ChatMessageException
ff Packet
fg EnumProtocolDirection
fh PlayerConnectionUtils
fi PacketListenerPlayOut
fj PacketPlayOutSpawnEntity
fk PacketPlayOutSpawnEntityExperienceOrb
fl PacketPlayOutSpawnEntityWeather
fm PacketPlayOutSpawnEntityLiving
fn PacketPlayOutSpawnEntityPainting
fo PacketPlayOutNamedEntitySpawn
fp PacketPlayOutAnimation
fq PacketPlayOutStatistic
fr PacketPlayOutBlockBreakAnimation
fs PacketPlayOutTileEntityData
ft PacketPlayOutBlockAction
fu PacketPlayOutBlockChange
fv PacketPlayOutBoss
fv$a PacketPlayOutBoss$Action
fw PacketPlayOutServerDifficulty
fx PacketPlayOutTabComplete
fy PacketPlayOutChat
fz PacketPlayOutMultiBlockChange
fz$a PacketPlayOutMultiBlockChange$MultiBlockChangeInfo
g SystemUtils
ga PacketPlayOutTransaction
gb PacketPlayOutCloseWindow
gc PacketPlayOutOpenWindow
gd PacketPlayOutWindowItems
ge PacketPlayOutWindowData
gf PacketPlayOutSetSlot
gg PacketPlayOutSetCooldown
gh PacketPlayOutCustomPayload
gi PacketPlayOutCustomSoundEffect
gj PacketPlayOutKickDisconnect
gk PacketPlayOutEntityStatus
gl PacketPlayOutExplosion
gm PacketPlayOutUnloadChunk
gn PacketPlayOutGameStateChange
go PacketPlayOutKeepAlive
gp PacketPlayOutMapChunk
gq PacketPlayOutWorldEvent
gr PacketPlayOutWorldParticles
gs PacketPlayOutLogin
gt PacketPlayOutMap
gu PacketPlayOutEntity
gu$a PacketPlayOutEntity$PacketPlayOutRelEntityMove
gu$b PacketPlayOutEntity$PacketPlayOutRelEntityMoveLook
gu$c PacketPlayOutEntity$PacketPlayOutEntityLook
gv PacketPlayOutVehicleMove
gw PacketPlayOutOpenSignEditor
gx PacketPlayOutAbilities
gy PacketPlayOutCombatEvent
gy$a PacketPlayOutCombatEvent$EnumCombatEventType
gz PacketPlayOutPlayerInfo
gz$a PacketPlayOutPlayerInfo$EnumPlayerInfoAction
gz$b PacketPlayOutPlayerInfo$PlayerInfoData
h ICommandDispatcher
ha PacketPlayOutPosition
ha$a PacketPlayOutPosition$EnumPlayerTeleportFlags
hb PacketPlayOutBed
hc PacketPlayOutEntityDestroy
hd PacketPlayOutRemoveEntityEffect
he PacketPlayOutResourcePackSend
hf PacketPlayOutRespawn
hg PacketPlayOutEntityHeadRotation
hh PacketPlayOutWorldBorder
hh$a PacketPlayOutWorldBorder$EnumWorldBorderAction
hi PacketPlayOutCamera
hj PacketPlayOutHeldItemSlot
hk PacketPlayOutScoreboardDisplayObjective
hl PacketPlayOutEntityMetadata
hm PacketPlayOutAttachEntity
hn PacketPlayOutEntityVelocity
ho PacketPlayOutEntityEquipment
hp PacketPlayOutExperience
hq PacketPlayOutUpdateHealth
hr PacketPlayOutScoreboardObjective
hs PacketPlayOutMount
ht PacketPlayOutScoreboardTeam
hu PacketPlayOutScoreboardScore
hu$a PacketPlayOutScoreboardScore$EnumScoreboardAction
hv PacketPlayOutSpawnPosition
hw PacketPlayOutUpdateTime
hx PacketPlayOutTitle
hx$a PacketPlayOutTitle$EnumTitleAction
hy PacketPlayOutUpdateSign
hz PacketPlayOutNamedSoundEffect
i CommandAbstract
i$a CommandAbstract$CommandNumber
ia PacketPlayOutPlayerListHeaderFooter
ib PacketPlayOutCollect
ic PacketPlayOutEntityTeleport
id PacketPlayOutUpdateAttributes
id$a PacketPlayOutUpdateAttributes$AttributeSnapshot
ie PacketPlayOutEntityEffect
ig PacketListenerPlayIn
ih PacketPlayInTeleportAccept
ii PacketPlayInTabComplete
ij PacketPlayInChat
ik PacketPlayInClientCommand
ik$a PacketPlayInClientCommand$EnumClientCommand
il PacketPlayInSettings
im PacketPlayInTransaction
in PacketPlayInEnchantItem
io PacketPlayInWindowClick
ip PacketPlayInCloseWindow
iq PacketPlayInCustomPayload
ir PacketPlayInUseEntity
ir$a PacketPlayInUseEntity$EnumEntityUseAction
is PacketPlayInKeepAlive
it PacketPlayInFlying
it$a PacketPlayInFlying$PacketPlayInPosition
it$b PacketPlayInFlying$PacketPlayInPositionLook
it$c PacketPlayInFlying$PacketPlayInLook
iu PacketPlayInVehicleMove
iv PacketPlayInBoatMove
iw PacketPlayInAbilities
ix PacketPlayInBlockDig
ix$a PacketPlayInBlockDig$EnumPlayerDigType
iy PacketPlayInEntityAction
iy$a PacketPlayInEntityAction$EnumPlayerAction
iz PacketPlayInSteerVehicle
j CommandHandler
ja PacketPlayInResourcePackStatus
ja$a PacketPlayInResourcePackStatus$EnumResourcePackStatus
jb PacketPlayInHeldItemSlot
jc PacketPlayInSetCreativeSlot
jd PacketPlayInUpdateSign
je PacketPlayInArmAnimation
jf PacketPlayInSpectate
jg PacketPlayInUseItem
jh PacketPlayInBlockPlace
jj PacketHandshakingInSetProtocol
jk PacketHandshakingInListener
jm PacketLoginOutListener
jn PacketLoginOutSuccess
jo PacketLoginOutEncryptionBegin
jp PacketLoginOutSetCompression
jq PacketLoginOutDisconnect
jr PacketLoginInListener
js PacketLoginInStart
jt PacketLoginInEncryptionBegin
jw PacketStatusOutListener
jx PacketStatusOutPong
jy PacketStatusOutServerInfo
jz ServerPing
jz$a ServerPing$ServerPingPlayerSample
jz$a$a ServerPing$ServerPingPlayerSample$Serializer
jz$b ServerPing$Serializer
jz$c ServerPing$ServerData
jz$c$a ServerPing$ServerData$Serializer
k ICommand
ka PacketStatusInListener
kb PacketStatusInPing
kc PacketStatusInStart
ke DataWatcherObject
kf DataWatcherSerializer
kg DataWatcherRegistry
kh DataWatcher
kh$a DataWatcher$Item
kk MinecraftKey
km DispenseBehaviorProjectile
kn DispenserRegistry
kp ServerCommand
kr EULA
ks RedirectStream
ku CancelledPacketHandleException
kv IMinecraftServer
kw ScoreboardServer
kx PropertyManager
ky ITickable
kz DedicatedPlayerList
l ICommandHandler
la DedicatedServer
lb ThreadWatchdog
ld ServerGUI
le PlayerListBox
lf GuiStatsComponent
lj DemoWorldServer
lk DemoPlayerInteractManager
ll SecondaryWorldServer
lm EntityTracker
ln BossBattleServer
lo ChunkProviderServer
lp WorldServer
lp$a WorldServer$BlockActionDataList
lq WorldManager
lr EntityPlayer
ls PlayerInteractManager
lt EntityTrackerEntry
lu PlayerChunk
lv PlayerChunkMap
ly LegacyPingHandler
m ICommandListener
ma ServerConnection
mb PlayerConnection
mc HandshakeListener
md LoginListener
md$a LoginListener$EnumProtocolState
me PacketStatusListener
mh ExpirableListEntry
mi UserCache
mi$a UserCache$UserCacheEntry
mi$b UserCache$BanEntrySerializer
mj IpBanList
mk IpBanEntry
ml NameReferencingFileConverter
ml$a NameReferencingFileConverter$FileConversionException
mm PlayerList
mn OpList
mo OpListEntry
mp JsonListEntry
mq JsonList
mq$a JsonList$JsonListEntrySerializer
mr GameProfileBanList
ms GameProfileBanEntry
mt WhiteList
mu WhiteListEntry
mw RemoteStatusReply
mx StatusChallengeUtils
my RemoteControlCommandListener
n CommandObjectiveExecutor
n$a CommandObjectiveExecutor$EnumCommandResult
na RemoteConnectionThread
nb RemoteStatusListener
nb$a RemoteStatusListener$RemoteStatusChallenge
nc RemoteControlSession
nd RemoteControlListener
nf SoundEffect
ng SoundEffects
nh SoundCategory
nj Achievement
nk AchievementList
nm CounterStatistic
nn CraftingStatistic
no ServerStatisticManager
np Statistic
nq Counter
nr StatisticWrapper
ns IJsonStatistic
nt StatisticList
nu StatisticManager
nv AchievementSet
nx DataBits
ny EntitySlice
o PlayerSelector
oa RegistryID
ob MinecraftEncryption
od ChatDeserializer
oe HttpUtilities
of InsensitiveStringMap
oh IntHashMap
oh$a IntHashMap$IntHashMapEntry
oj LazyInitVar
ol LongHashMap
ol$a LongHashMap$LongHashMapEntry
om ChatTypeAdapterFactory
on MathHelper
oo MethodProfiler
oo$a MethodProfiler$ProfilerInfo
op IProgressUpdate
or INamable
os UtilColor
ou Tuple
ov WeightedRandom
ov$a WeightedRandom$WeightedRandomChoice
ow StructurePieceTreasure
ox IDataConverter
oy DataConverterType
oz DataConverterTypes
p CommandAchievement
pa DataConverter
pb DataConverterManager
pc DataConverterRegistry
pd DataInspector
pe DataConverterArmorStand
pf DataConverterEquipment
pg DataConverterHealth
ph DataConverterSaddle
pi DataConverterHanging
pj DataConverterDropChances
pk DataConverterRiding
pl DataConverterUUID
pm DataConverterMaterialId
pn DataConverterBook
po DataConverterMinecart
pp DataConverterMobSpawner
pq DataConverterPotionId
pr DataConverterSignText
ps DataConverterSpawnEgg
pv DataInspectorItem
pw DataInspectorBlockEntity
px DataInspectorEntity
py DataInspectorItemList
pz DataInspectorTagged
q CommandBanIp
qc IAsyncTaskHandler
qe BossBattle
qe$a BossBattle$BarColor
qe$b BossBattle$BarStyle
qf InventoryLargeChest
qg IInventory
qh ContainerUtil
qi IInventoryListener
qj InventoryUtils
qk EnumDifficulty
ql DifficultyDamageScaler
qm EnumHand
qn ITileEntityContainer
qo EnumInteractionResult
qp InteractionResultWrapper
qr ChestLock
qs ITileInventory
qt INamableTileEntity
qu ILootable
qv InventorySubcontainer
qw MojangStatisticsGenerator
qx IMojangStatistics
qy IWorldInventory
qz CombatEntry
r CommandBan
ra CombatMath
rb CombatTracker
rc DamageSource
rd EntityDamageSource
re EntityDamageSourceIndirect
rg MobEffectAbsorption
rh MobEffectAttackDamage
ri MobEffectHealthBoost
rj InstantMobEffect
rk MobEffectList
rl MobEffect
rm MobEffects
ro EntityAgeable
rp EntityAreaEffectCloud
rq IAnimal
rr Entity
rt EntityTypes
rt$a EntityTypes$MonsterEggInfo
rv IEntitySelector
rv$a IEntitySelector$EntitySelectorEquipable
rw EnumItemSlot
rw$a EnumItemSlot$Function
rx EntityExperienceOrb
ry EntityFlying
rz EnumMainHand
s CommandBlockData
sa EntityLiving
sb EntityInsentient
sb$a EntityInsentient$EnumEntityPositionType
sc EnumCreatureType
sd GroupDataEntity
se EntityPositionTypes
sf EnumMonsterType
sg EntityOwnable
sh EntityCreature
sj IJumpable
sk EntityTameableAnimal
sl IAttribute
sm AttributeInstance
sn AttributeModifier
so AttributeBase
sp AttributeMapBase
sq AttributeModifiable
sr AttributeMapServer
ss AttributeRanged
su EntityAIBodyControl
sw ControllerJump
sx ControllerLook
sy ControllerMove
sy$a ControllerMove$Operation
t CommandClear
ta PathfinderGoalAvoidTarget
tb PathfinderGoalBeg
tc PathfinderGoalBreakDoor
td PathfinderGoalBreed
te PathfinderGoalDoorInteract
tf PathfinderGoalEatTile
tg PathfinderGoalFleeSun
th PathfinderGoalFloat
ti PathfinderGoalFollowOwner
tj PathfinderGoalFollowParent
tk PathfinderGoal
tl PathfinderGoalSelector
tl$a PathfinderGoalSelector$PathfinderGoalSelectorItem
tm PathfinderGoalVillagerFarm
tn PathfinderGoalInteract
to PathfinderGoalLeapAtTarget
tp PathfinderGoalLookAtPlayer
tq PathfinderGoalLookAtTradingPlayer
tr PathfinderGoalMakeLove
ts PathfinderGoalMeleeAttack
tt PathfinderGoalMoveIndoors
tu PathfinderGoalMoveThroughVillage
tv PathfinderGoalGotoTarget
tw PathfinderGoalMoveTowardsRestriction
tx PathfinderGoalMoveTowardsTarget
ty PathfinderGoalOcelotAttack
tz PathfinderGoalJumpOnBlock
u CommandClone
u$a CommandClone$CommandCloneStoredTileEntity
ua PathfinderGoalOfferFlower
ub PathfinderGoalOpenDoor
uc PathfinderGoalPanic
ud PathfinderGoalPlay
uf PathfinderGoalRandomLookaround
ug PathfinderGoalRandomStroll
uh PathfinderGoalArrowAttack
ui PathfinderGoalBowShoot
uj PathfinderGoalRestrictOpenDoor
uk PathfinderGoalRestrictSun
ul PathfinderGoalTame
um PathfinderGoalSit
un PathfinderGoalSwell
uo PathfinderGoalTakeFlower
up PathfinderGoalTempt
uq PathfinderGoalTradeWithPlayer
ur PathfinderGoalInteractVillagers
us PathfinderGoalZombieAttack
uu PathfinderGoalDefendVillage
uv PathfinderGoalHurtByTarget
uw PathfinderGoalNearestAttackableTargetInsentient
ux PathfinderGoalTargetNearestPlayer
uy PathfinderGoalNearestAttackableTarget
uy$a PathfinderGoalNearestAttackableTarget$DistanceComparator
uz PathfinderGoalRandomTargetNonTamed
v CommandTestForBlocks
va PathfinderGoalOwnerHurtByTarget
vb PathfinderGoalOwnerHurtTarget
vc PathfinderGoalTarget
ve Navigation
vf NavigationAbstract
vg NavigationListener
vh NavigationSpider
vi NavigationGuardian
vk EntitySenses
vm RandomPositionGenerator
vo VillageDoor
vp Village
vp$a Village$Aggressor
vq VillageSiege
vr PersistentVillage
vt EntityAmbient
vu EntityBat
vw EntityAnimal
vx EntityChicken
vy EntityCow
vz EntityGolem
w CommandDeop
wa EntityMushroomCow
wb EntityOcelot
wc EntityPig
wd EntityRabbit
wd$a EntityRabbit$PathfinderGoalKillerRabbitMeleeAttack
wd$b EntityRabbit$PathfinderGoalRabbitAvoidTarget
wd$c EntityRabbit$GroupDataRabbit
wd$d EntityRabbit$ControllerJumpRabbit
wd$e EntityRabbit$ControllerMoveRabbit
wd$f EntityRabbit$PathfinderGoalRabbitPanic
wd$g EntityRabbit$PathfinderGoalEatCarrots
we EntitySheep
wf EntitySnowman
wg EntitySquid
wg$a EntitySquid$PathfinderGoalSquid
wh EntityIronGolem
wi EntityWaterAnimal
wj EntityWolf
wk EntityHorse
wl EnumHorseArmor
wm EnumHorseType
wn PathfinderGoalHorseTrap
wr IComplex
ws EntityComplexPart
wt EntityEnderCrystal
wu EntityEnderDragon
ww AbstractDragonController
wx AbstractDragonControllerLanded
wy DragonControllerCharge
wz DragonControllerDying
x CommandDebug
xa DragonControllerHold
xb DragonControllerHover
xc DragonControllerLandingFly
xd DragonControllerLanding
xe IDragonController
xf DragonControllerLandedAttack
xg DragonControllerLandedFlame
xh DragonControllerLandedSearch
xi DragonControllerStrafe
xj DragonControllerFly
xk DragonControllerPhase
xl DragonControllerManager
xo EntityWither
xq EntityArmorStand
xr EntityHanging
xs EntityItemFrame
xt EntityLeash
xu EntityPainting
xu$a EntityPainting$EnumArt
xw EntityFishingHook
xz EntityWeather
y CommandGamemodeDefault
ya EntityLightning
yc EntityFallingBlock
yd EntityItem
ye EntityTNTPrimed
yg EntityBlaze
yg$a EntityBlaze$PathfinderGoalBlazeFireball
yh EntityCaveSpider
yi EntityCreeper
yj EntityEnderman
yj$a EntityEnderman$PathfinderGoalEndermanPlaceBlock
yj$b EntityEnderman$PathfinderGoalPlayerWhoLookedAtTarget
yj$c EntityEnderman$PathfinderGoalEndermanPickupBlock
yk EntityEndermite
yl IMonster
ym EntityGhast
ym$a EntityGhast$PathfinderGoalGhastMoveTowardsTarget
ym$b EntityGhast$ControllerGhast
ym$c EntityGhast$PathfinderGoalGhastAttackTarget
ym$d EntityGhast$PathfinderGoalGhastIdleMove
yn EntityGiantZombie
yo EntityGuardian
yo$a EntityGuardian$PathfinderGoalGuardianAttack
yo$b EntityGuardian$EntitySelectorGuardianTargetHumanSquid
yo$c EntityGuardian$ControllerMoveGuardian
yp EntityMagmaCube
yq EntityMonster
yr EntityPigZombie
yr$a EntityPigZombie$PathfinderGoalAnger
yr$b EntityPigZombie$PathfinderGoalAngerOther
ys IRangedEntity
yt GenericAttributes
yu EntityShulker
yv EntitySilverfish
yv$a EntitySilverfish$PathfinderGoalSilverfishHideInBlock
yv$b EntitySilverfish$PathfinderGoalSilverfishWakeOthers
yw EntitySkeleton
yx EntitySlime
yx$a EntitySlime$PathfinderGoalSlimeNearestPlayer
yx$b EntitySlime$PathfinderGoalSlimeRandomJump
yx$c EntitySlime$PathfinderGoalSlimeIdle
yx$d EntitySlime$ControllerMoveSlime
yx$e EntitySlime$PathfinderGoalSlimeRandomDirection
yy EntitySpider
yy$a EntitySpider$PathfinderGoalSpiderMeleeAttack
yy$b EntitySpider$GroupDataSpider
yy$c EntitySpider$PathfinderGoalSpiderNearestAttackableTarget
yz EntityWitch
z CommandEffect
za EntityZombie
za$a EntityZombie$GroupDataZombie
zd NPC
ze EntityVillager
ze$a EntityVillager$MerchantRecipeOptionBuy
ze$b EntityVillager$MerchantRecipeOptionBook
ze$c EntityVillager$MerchantRecipeOptionEnchant
ze$d EntityVillager$MerchantRecipeOptionProcess
ze$e EntityVillager$MerchantRecipeOptionSell
ze$f EntityVillager$IMerchantRecipeOption
ze$g EntityVillager$MerchantOptionRandomRange
zh PlayerAbilities
zi PlayerInventory
zj EntityHuman
zj$a EntityHuman$EnumBedResult
zj$b EntityHuman$EnumChatVisibility
zm EntityArrow
zm$a EntityArrow$PickupStatus
zn EntityDragonFireball
zo EntityEnderSignal
zp EntityFireball
zq EntityFireworks
zr EntityLargeFireball
zs IProjectile
zt ProjectileHelper
zu EntityShulkerBullet
zv EntitySmallFireball
zw EntitySnowball
zx EntitySpectralArrow
zy EntityProjectile
zz EntityEgg