From 9810466f5be5e51f9c62d3754d0a08ad3bc49b0d Mon Sep 17 00:00:00 2001 From: Wagyourtail Date: Tue, 1 Oct 2024 16:50:11 -0500 Subject: [PATCH] fix param resolve. remove CR --- build.gradle.kts | 4 + .../unimined/mapping/formats/FormatReader.kt | 10 +- .../unimined/mapping/jvms/TypeCompanion.kt | 3 +- .../mapping/resolver/MappingResolver.kt | 2 +- .../_class/member/method/ParameterNode.kt | 4 + .../test/formats/mcp/ConstructorReadTest.kt | 85 + test.txt | 2451 +++++++++++++++++ 7 files changed, 2552 insertions(+), 7 deletions(-) create mode 100644 src/commonTest/kotlin/xyz/wagyourtail/unimined/mapping/test/formats/mcp/ConstructorReadTest.kt create mode 100644 test.txt diff --git a/build.gradle.kts b/build.gradle.kts index e685109..6255b0f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -64,8 +64,12 @@ kotlin { val jvmMain by getting { dependencies { api(libs.appache.commons.compress) + api(libs.asm) api(libs.asm.tree) + + api(libs.slf4j.api) + api(libs.slf4j.simple) } } val jvmTest by getting { diff --git a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/formats/FormatReader.kt b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/formats/FormatReader.kt index 5466da8..6f52c17 100644 --- a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/formats/FormatReader.kt +++ b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/formats/FormatReader.kt @@ -22,7 +22,7 @@ interface FormatReader { envType: EnvType = EnvType.JOINED, nsMapping: Map = mapOf() ): MemoryMappingTree = MemoryMappingTree().also { - read(StringCharReader(content), null, it, envType, nsMapping) + read(StringCharReader(content.replace("\r", "")), null, it, envType, nsMapping) } suspend fun read( @@ -31,7 +31,7 @@ interface FormatReader { envType: EnvType = EnvType.JOINED, nsMapping: Map = mapOf() ) { - read(StringCharReader(content), into, into, envType, nsMapping) + read(StringCharReader(content.replace("\r", "")), into, into, envType, nsMapping) } suspend fun read( @@ -40,7 +40,7 @@ interface FormatReader { into: MappingVisitor, envType: EnvType = EnvType.JOINED, nsMapping: Map = mapOf() - ) = read(StringCharReader(content), context, into, envType, nsMapping) + ) = read(StringCharReader(content.replace("\r", "")), context, into, envType, nsMapping) suspend fun read( input: BufferedSource, @@ -56,7 +56,7 @@ interface FormatReader { envType: EnvType = EnvType.JOINED, nsMapping: Map = mapOf() ) { - read(StringCharReader(input.readUtf8()), into, into, envType, nsMapping) + read(StringCharReader(input.readUtf8().replace("\r", "")), into, into, envType, nsMapping) } suspend fun read( @@ -66,7 +66,7 @@ interface FormatReader { envType: EnvType = EnvType.JOINED, nsMapping: Map = mapOf() ) { - read(StringCharReader(input.readUtf8()), context, into, envType, nsMapping) + read(StringCharReader(input.readUtf8().replace("\r", "")), context, into, envType, nsMapping) } suspend fun read( diff --git a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/jvms/TypeCompanion.kt b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/jvms/TypeCompanion.kt index 408e53d..6c195f6 100644 --- a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/jvms/TypeCompanion.kt +++ b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/jvms/TypeCompanion.kt @@ -2,6 +2,7 @@ package xyz.wagyourtail.unimined.mapping.jvms import xyz.wagyourtail.commonskt.reader.CharReader import xyz.wagyourtail.commonskt.reader.StringCharReader +import xyz.wagyourtail.commonskt.utils.escape interface TypeCompanion { @@ -11,7 +12,7 @@ interface TypeCompanion { StringCharReader(value).let { buf -> val readVal = read(buf) if (!buf.exhausted()) { - throw IllegalArgumentException("Invalid type: \"$value\", not fully read, remaining: \"${buf.takeRemaining().let { if (it.length > 100) it.substring(0, 100) + "..." else it }}\"") + throw IllegalArgumentException("Invalid type: \"${value.escape()}\", not fully read, remaining: \"${buf.takeRemaining().let { if (it.length > 100) it.substring(0, 100) + "..." else it }.escape()}\"") } readVal } diff --git a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/resolver/MappingResolver.kt b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/resolver/MappingResolver.kt index baf4d42..a9262a1 100644 --- a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/resolver/MappingResolver.kt +++ b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/resolver/MappingResolver.kt @@ -247,7 +247,7 @@ abstract class MappingResolver>(val name: String) { if (!format.getSide(file, zip.getContents(file)).contains(envType)) continue val fileName = file.replace("\\", "/").substringAfterLast("/") val provider = ContentProvider.of(fileName, zip.getContents(file)) - val entry = MappingEntry(provider, "$id/${fileName.substringBeforeLast(".")}") + val entry = MappingEntry(provider, "$id/$fileName") entry.combineWith(this) entry.provider = format this.subEntries.forEach { entry.it(provider, format) } diff --git a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/tree/node/_class/member/method/ParameterNode.kt b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/tree/node/_class/member/method/ParameterNode.kt index 2fa89e0..151f1b1 100644 --- a/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/tree/node/_class/member/method/ParameterNode.kt +++ b/src/commonMain/kotlin/xyz/wagyourtail/unimined/mapping/tree/node/_class/member/method/ParameterNode.kt @@ -46,11 +46,14 @@ class ParameterNode>( } fun doMerge(target: ParameterNode) { + target.setNames(names) acceptInner(target, root.namespaces) } override fun merge(element: ParameterNode): ParameterNode? { if (element.index == null && element.lvOrd == null) { + element.index = index + element.lvOrd = lvOrd doMerge(element) return element } @@ -65,6 +68,7 @@ class ParameterNode>( } return null } + if (lvOrd != null) element.lvOrd = lvOrd doMerge(element) return element } diff --git a/src/commonTest/kotlin/xyz/wagyourtail/unimined/mapping/test/formats/mcp/ConstructorReadTest.kt b/src/commonTest/kotlin/xyz/wagyourtail/unimined/mapping/test/formats/mcp/ConstructorReadTest.kt new file mode 100644 index 0000000..9aa3e6a --- /dev/null +++ b/src/commonTest/kotlin/xyz/wagyourtail/unimined/mapping/test/formats/mcp/ConstructorReadTest.kt @@ -0,0 +1,85 @@ +package xyz.wagyourtail.unimined.mapping.test.formats.mcp + +import kotlinx.coroutines.test.runTest +import okio.Buffer +import okio.Options +import okio.use +import xyz.wagyourtail.unimined.mapping.EnvType +import xyz.wagyourtail.unimined.mapping.formats.mcpconfig.MCPConfigConstructorReader +import xyz.wagyourtail.unimined.mapping.formats.umf.UMFWriter +import kotlin.test.Test +import kotlin.test.assertEquals + +class ConstructorReadTest { + + val contents = """ + 1009 net/minecraft/client/Minecraft${'$'}13 (Lnet/minecraft/client/Minecraft;)V + 1010 net/minecraft/client/Minecraft${'$'}14 (Lnet/minecraft/client/Minecraft;)V + 1011 net/minecraft/client/Minecraft${'$'}15 (Lnet/minecraft/client/Minecraft;)V + 1015 net/minecraft/client/settings/GameSettings${'$'}Options (Ljava/lang/String;ILjava/lang/String;ZZ)V + 1017 net/minecraft/client/LoadingScreenRenderer (Lnet/minecraft/client/Minecraft;)V + 1018 net/minecraft/util/Timer (F)V + 1020 net/minecraft/client/gui/GuiButton (IIILjava/lang/String;)V + 1022 net/minecraft/client/gui/GuiNewChat (Lnet/minecraft/client/Minecraft;)V + 1023 net/minecraft/client/gui/ScreenChatOptions (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V + 1024 net/minecraft/client/gui/GuiChat (Ljava/lang/String;)V + """.trimIndent() + + @Test + fun testReadCtorFile() = runTest { + val tree = Buffer().use { + it.writeUtf8(contents) + MCPConfigConstructorReader.read(it) + } + + val out = Buffer().use { + tree.accept(UMFWriter.write(EnvType.CLIENT, it, true)) + it.readUtf8() + } + + assertEquals(""" +umf 1 0 +searge +c net/minecraft/client/Minecraft${'$'}13 + m ;(Lnet/minecraft/client/Minecraft;)V + p 0 1 p_i1009_1 +c net/minecraft/client/Minecraft${'$'}14 + m ;(Lnet/minecraft/client/Minecraft;)V + p 0 1 p_i1010_1 +c net/minecraft/client/Minecraft${'$'}15 + m ;(Lnet/minecraft/client/Minecraft;)V + p 0 1 p_i1011_1 +c net/minecraft/client/settings/GameSettings${'$'}Options + m ;(Ljava/lang/String;ILjava/lang/String;ZZ)V + p 0 1 p_i1015_1 + p 1 2 p_i1015_2 + p 2 3 p_i1015_3 + p 3 4 p_i1015_4 + p 4 5 p_i1015_5 +c net/minecraft/client/LoadingScreenRenderer + m ;(Lnet/minecraft/client/Minecraft;)V + p 0 1 p_i1017_1 +c net/minecraft/util/Timer + m ;(F)V + p 0 1 p_i1018_1 +c net/minecraft/client/gui/GuiButton + m ;(IIILjava/lang/String;)V + p 0 1 p_i1020_1 + p 1 2 p_i1020_2 + p 2 3 p_i1020_3 + p 3 4 p_i1020_4 +c net/minecraft/client/gui/GuiNewChat + m ;(Lnet/minecraft/client/Minecraft;)V + p 0 1 p_i1022_1 +c net/minecraft/client/gui/ScreenChatOptions + m ;(Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V + p 0 1 p_i1023_1 + p 1 2 p_i1023_2 +c net/minecraft/client/gui/GuiChat + m ;(Ljava/lang/String;)V + p 0 1 p_i1024_1 + + """.trimIndent(), out) + } + +} \ No newline at end of file diff --git a/test.txt b/test.txt new file mode 100644 index 0000000..93f6ceb --- /dev/null +++ b/test.txt @@ -0,0 +1,2451 @@ +1005 net/minecraft/client/Minecraft$3 (Lnet/minecraft/client/Minecraft;)V +1007 net/minecraft/client/Minecraft$11 (Lnet/minecraft/client/Minecraft;)V +1008 net/minecraft/client/Minecraft$12 (Lnet/minecraft/client/Minecraft;)V +1009 net/minecraft/client/Minecraft$13 (Lnet/minecraft/client/Minecraft;)V +1010 net/minecraft/client/Minecraft$14 (Lnet/minecraft/client/Minecraft;)V +1011 net/minecraft/client/Minecraft$15 (Lnet/minecraft/client/Minecraft;)V +1015 net/minecraft/client/settings/GameSettings$Options (Ljava/lang/String;ILjava/lang/String;ZZ)V +1017 net/minecraft/client/LoadingScreenRenderer (Lnet/minecraft/client/Minecraft;)V +1018 net/minecraft/util/Timer (F)V +1020 net/minecraft/client/gui/GuiButton (IIILjava/lang/String;)V +1022 net/minecraft/client/gui/GuiNewChat (Lnet/minecraft/client/Minecraft;)V +1023 net/minecraft/client/gui/ScreenChatOptions (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1024 net/minecraft/client/gui/GuiChat (Ljava/lang/String;)V +1027 net/minecraft/client/gui/GuiControls (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1029 net/minecraft/client/gui/GuiCreateFlatWorld (Lnet/minecraft/client/gui/GuiCreateWorld;Ljava/lang/String;)V +1031 net/minecraft/client/gui/GuiScreenServerList (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/multiplayer/ServerData;)V +1033 net/minecraft/client/gui/GuiScreenAddServer (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/multiplayer/ServerData;)V +1034 net/minecraft/client/resources/data/PackMetadataSection (Lnet/minecraft/util/text/ITextComponent;I)V +1035 net/minecraft/client/gui/FontRenderer (Lnet/minecraft/client/settings/GameSettings;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/renderer/texture/TextureManager;Z)V +1036 net/minecraft/client/resources/SkinManager$3$1 (Lnet/minecraft/client/resources/SkinManager$3;Ljava/util/Map;)V +1038 net/minecraft/client/resources/SkinManager$3 (Lnet/minecraft/client/resources/SkinManager;Lcom/mojang/authlib/GameProfile;ZLnet/minecraft/client/resources/SkinManager$SkinAvailableCallback;)V +1040 net/minecraft/client/gui/GuiMultiplayer (Lnet/minecraft/client/gui/GuiScreen;)V +1041 net/minecraft/client/gui/GuiButtonLanguage (III)V +1042 net/minecraft/client/resources/SkinManager$1 (Lnet/minecraft/client/resources/SkinManager;)V +1043 net/minecraft/client/gui/GuiLanguage (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;Lnet/minecraft/client/resources/LanguageManager;)V +1044 net/minecraft/client/resources/SkinManager (Lnet/minecraft/client/renderer/texture/TextureManager;Ljava/io/File;Lcom/mojang/authlib/minecraft/MinecraftSessionService;)V +1046 net/minecraft/client/gui/GuiOptions (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1047 net/minecraft/client/resources/ResourceIndex (Ljava/io/File;Ljava/lang/String;)V +1048 net/minecraft/client/gui/GuiFlatPresets$ListSlot (Lnet/minecraft/client/gui/GuiFlatPresets;)V +1049 net/minecraft/client/renderer/ThreadDownloadImageData (Ljava/io/File;Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/renderer/IImageBuffer;)V +1050 net/minecraft/client/shader/ShaderGroup (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/resources/IResourceManager;Lnet/minecraft/client/shader/Framebuffer;Lnet/minecraft/util/ResourceLocation;)V +1052 net/minecraft/client/gui/GuiSlot (Lnet/minecraft/client/Minecraft;IIIII)V +1053 net/minecraft/client/multiplayer/ServerData$ServerResourceMode (Ljava/lang/String;ILjava/lang/String;)V +1055 net/minecraft/client/gui/GuiShareToLan (Lnet/minecraft/client/gui/GuiScreen;)V +1056 net/minecraft/realms/RealmsSliderButton (IIIIII)V +1057 net/minecraft/realms/RealmsSliderButton (IIIIIIFF)V +1060 net/minecraft/client/gui/GuiSnooper$List (Lnet/minecraft/client/gui/GuiSnooper;)V +1061 net/minecraft/client/gui/GuiSnooper (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1062 net/minecraft/client/gui/GuiVideoSettings (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +1071 net/minecraft/client/gui/achievement/GuiStats (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/stats/StatisticsManager;)V +1072 net/minecraft/client/gui/inventory/GuiContainer (Lnet/minecraft/inventory/Container;)V +1074 net/minecraft/client/gui/inventory/GuiBeacon$CancelButton (Lnet/minecraft/client/gui/inventory/GuiBeacon;III)V +1075 net/minecraft/client/gui/inventory/GuiBeacon$ConfirmButton (Lnet/minecraft/client/gui/inventory/GuiBeacon;III)V +1077 net/minecraft/client/gui/inventory/GuiBeacon$Button (IIILnet/minecraft/util/ResourceLocation;II)V +1079 net/minecraft/realms/RealmsConnect (Lnet/minecraft/realms/RealmsScreen;)V +1080 net/minecraft/client/gui/GuiScreenBook (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/item/ItemStack;Z)V +1082 net/minecraft/client/gui/GuiYesNo (Lnet/minecraft/client/gui/GuiYesNoCallback;Ljava/lang/String;Ljava/lang/String;I)V +1083 net/minecraft/client/gui/GuiYesNo (Lnet/minecraft/client/gui/GuiYesNoCallback;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;I)V +1084 net/minecraft/client/gui/GuiConfirmOpenLink (Lnet/minecraft/client/gui/GuiYesNoCallback;Ljava/lang/String;IZ)V +1085 net/minecraft/client/gui/GuiSlotRealmsProxy (Lnet/minecraft/realms/RealmsScrolledSelectionList;IIIII)V +1086 net/minecraft/client/gui/inventory/GuiContainerCreative$ContainerCreative (Lnet/minecraft/entity/player/EntityPlayer;)V +1087 net/minecraft/client/gui/GuiScreenRealmsProxy (Lnet/minecraft/realms/RealmsScreen;)V +1088 net/minecraft/client/gui/inventory/GuiContainerCreative (Lnet/minecraft/entity/player/EntityPlayer;)V +1089 net/minecraft/client/renderer/InventoryEffectRenderer (Lnet/minecraft/inventory/Container;)V +1090 net/minecraft/client/gui/GuiButtonRealmsProxy (Lnet/minecraft/realms/RealmsButton;IIILjava/lang/String;II)V +1092 net/minecraft/client/gui/GuiHopper (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +1093 net/minecraft/client/gui/inventory/GuiScreenHorseInventory (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/passive/AbstractHorse;)V +1094 net/minecraft/client/gui/inventory/GuiInventory (Lnet/minecraft/entity/player/EntityPlayer;)V +1095 net/minecraft/client/gui/GuiMerchant$MerchantButton (IIIZ)V +1096 net/minecraft/util/Session$Type (Ljava/lang/String;ILjava/lang/String;)V +1097 net/minecraft/client/gui/inventory/GuiEditSign (Lnet/minecraft/tileentity/TileEntitySign;)V +1098 net/minecraft/util/Session (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +1099 net/minecraft/client/Minecraft$7 (Lnet/minecraft/client/Minecraft;)V +1101 net/minecraft/client/Minecraft$6 (Lnet/minecraft/client/Minecraft;)V +1106 net/minecraft/realms/RealmsAnvilLevelStorageSource (Lnet/minecraft/world/storage/ISaveFormat;)V +1109 net/minecraft/realms/RealmsLevelSummary (Lnet/minecraft/world/storage/WorldSummary;)V +1119 net/minecraft/realms/RealmsScrolledSelectionList (IIIII)V +1121 net/minecraft/realms/RealmsServerAddress (Ljava/lang/String;I)V +1129 net/minecraft/server/management/UserListWhitelistEntry (Lcom/mojang/authlib/GameProfile;)V +1130 net/minecraft/server/management/UserListWhitelistEntry (Lcom/google/gson/JsonObject;)V +1132 net/minecraft/server/management/UserListWhitelist (Ljava/io/File;)V +1134 net/minecraft/server/management/UserListBansEntry (Lcom/mojang/authlib/GameProfile;)V +1135 net/minecraft/server/management/UserListBansEntry (Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +1136 net/minecraft/server/management/UserListBansEntry (Lcom/google/gson/JsonObject;)V +1138 net/minecraft/server/management/UserListBans (Ljava/io/File;)V +1140 net/minecraft/server/management/UserList$Serializer (Lnet/minecraft/server/management/UserList;)V +1141 net/minecraft/server/management/UserList$Serializer (Lnet/minecraft/server/management/UserList;Lnet/minecraft/server/management/UserList$1;)V +1144 net/minecraft/server/management/UserList (Ljava/io/File;)V +1146 net/minecraft/server/management/UserListEntry (Ljava/lang/Object;)V +1147 net/minecraft/server/management/UserListEntry (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V +1148 net/minecraft/client/model/ModelBiped (F)V +1149 net/minecraft/client/model/ModelBiped (FFII)V +1150 net/minecraft/server/management/UserListOpsEntry (Lcom/google/gson/JsonObject;)V +1151 net/minecraft/client/model/ModelPig (F)V +1152 net/minecraft/server/management/UserListOps (Ljava/io/File;)V +1153 net/minecraft/client/model/TexturedQuad ([Lnet/minecraft/client/model/PositionTextureVertex;IIIIFF)V +1154 net/minecraft/client/model/ModelQuadruped (IF)V +1155 net/minecraft/client/model/ModelSkeletonHead (IIII)V +1157 net/minecraft/client/model/ModelSlime (I)V +1158 net/minecraft/client/model/PositionTextureVertex (FFFFF)V +1159 net/minecraft/server/management/UserListIPBansEntry (Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +1161 net/minecraft/client/model/ModelIronGolem (F)V +1162 net/minecraft/server/management/PlayerProfileCache$Serializer (Lnet/minecraft/server/management/PlayerProfileCache;)V +1163 net/minecraft/client/model/ModelVillager (F)V +1164 net/minecraft/client/model/ModelVillager (FFII)V +1165 net/minecraft/client/model/ModelZombieVillager (FFZ)V +1166 net/minecraft/server/management/PlayerProfileCache$ProfileEntry (Lnet/minecraft/server/management/PlayerProfileCache;Lcom/mojang/authlib/GameProfile;Ljava/util/Date;Lnet/minecraft/server/management/PlayerProfileCache$1;)V +1168 net/minecraft/client/model/ModelZombie (FZ)V +1169 net/minecraft/server/management/PlayerProfileCache$1 ([Lcom/mojang/authlib/GameProfile;)V +1170 net/minecraft/client/model/ModelEnderCrystal (FZ)V +1172 net/minecraft/client/model/ModelRenderer (Lnet/minecraft/client/model/ModelBase;Ljava/lang/String;)V +1173 net/minecraft/client/model/ModelRenderer (Lnet/minecraft/client/model/ModelBase;)V +1174 net/minecraft/server/management/UserListEntryBan (Ljava/lang/Object;Lcom/google/gson/JsonObject;)V +1175 net/minecraft/client/model/TextureOffset (II)V +1176 net/minecraft/server/management/PlayerChunkMap (Lnet/minecraft/world/WorldServer;)V +1177 net/minecraft/realms/RealmsButton (IIILjava/lang/String;)V +1178 net/minecraft/realms/RealmsButton (IIIIILjava/lang/String;)V +1181 net/minecraft/client/multiplayer/GuiConnecting (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/multiplayer/ServerData;)V +1182 net/minecraft/client/multiplayer/GuiConnecting (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/Minecraft;Ljava/lang/String;I)V +1184 net/minecraft/client/multiplayer/ChunkProviderClient (Lnet/minecraft/world/World;)V +1186 net/minecraft/client/multiplayer/WorldClient$1 (Lnet/minecraft/client/multiplayer/WorldClient;)V +1187 net/minecraft/client/multiplayer/WorldClient$2 (Lnet/minecraft/client/multiplayer/WorldClient;)V +1192 net/minecraft/client/multiplayer/ServerAddress (Ljava/lang/String;I)V +1194 net/minecraft/client/multiplayer/ServerList (Lnet/minecraft/client/Minecraft;)V +1195 net/minecraft/client/particle/ParticleBreaking (Lnet/minecraft/world/World;DDDLnet/minecraft/item/Item;)V +1196 net/minecraft/client/particle/ParticleBreaking (Lnet/minecraft/world/World;DDDLnet/minecraft/item/Item;I)V +1197 net/minecraft/client/particle/ParticleBreaking (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/item/Item;I)V +1198 net/minecraft/client/particle/ParticleBubble (Lnet/minecraft/world/World;DDDDDD)V +1201 net/minecraft/client/particle/ParticleSmokeLarge (Lnet/minecraft/world/World;DDDDDD)V +1203 net/minecraft/client/particle/ParticleDrip (Lnet/minecraft/world/World;DDDLnet/minecraft/block/material/Material;)V +1204 net/minecraft/client/particle/ParticleEnchantmentTable (Lnet/minecraft/world/World;DDDDDD)V +1205 net/minecraft/client/particle/ParticleExplosion (Lnet/minecraft/world/World;DDDDDD)V +1206 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;Ljava/lang/Throwable;)V +1207 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;)V +1208 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;Lnet/minecraft/server/management/PreYggdrasilConverter$1;)V +1209 net/minecraft/client/particle/ParticleFlame (Lnet/minecraft/world/World;DDDDDD)V +1210 net/minecraft/client/particle/ParticleFootStep (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDD)V +1211 net/minecraft/client/particle/ParticleHeart (Lnet/minecraft/world/World;DDDDDD)V +1212 net/minecraft/server/management/PreYggdrasilConverter$6 (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/io/File;Ljava/io/File;Ljava/io/File;[Ljava/lang/String;)V +1213 net/minecraft/client/particle/ParticleExplosionLarge (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDDDDD)V +1214 net/minecraft/client/particle/ParticleExplosionHuge (Lnet/minecraft/world/World;DDDDDD)V +1215 net/minecraft/client/particle/ParticleLava (Lnet/minecraft/world/World;DDD)V +1216 net/minecraft/server/management/PreYggdrasilConverter$3 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/management/UserListOps;)V +1217 net/minecraft/client/particle/ParticleNote (Lnet/minecraft/world/World;DDDDDDF)V +1218 net/minecraft/server/management/PreYggdrasilConverter$2 (Lnet/minecraft/server/MinecraftServer;Ljava/util/Map;Lnet/minecraft/server/management/UserListBans;)V +1219 net/minecraft/client/particle/Particle (Lnet/minecraft/world/World;DDDDDD)V +1220 net/minecraft/client/particle/ParticleManager (Lnet/minecraft/world/World;Lnet/minecraft/client/renderer/texture/TextureManager;)V +1221 net/minecraft/client/particle/ParticleCloud (Lnet/minecraft/world/World;DDDDDD)V +1222 net/minecraft/server/gui/MinecraftServerGui$2 (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JTextField;)V +1223 net/minecraft/server/gui/MinecraftServerGui$1 (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1224 net/minecraft/server/dedicated/DedicatedServer$3 (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1225 net/minecraft/server/dedicated/DedicatedServer$1 (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V +1227 net/minecraft/client/particle/ParticleSnowShovel (Lnet/minecraft/world/World;DDDDDD)V +1228 net/minecraft/client/particle/ParticleSnowShovel (Lnet/minecraft/world/World;DDDDDDF)V +1229 net/minecraft/client/particle/ParticleSpell (Lnet/minecraft/world/World;DDDDDD)V +1230 net/minecraft/client/particle/ParticleSplash (Lnet/minecraft/world/World;DDDDDD)V +1231 net/minecraft/client/particle/ParticleSuspend (Lnet/minecraft/world/World;DDDDDD)V +1232 net/minecraft/client/particle/ParticleSuspendedTown (Lnet/minecraft/world/World;DDDDDD)V +1233 net/minecraft/client/particle/ParticleItemPickup (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;F)V +1235 net/minecraft/client/particle/ParticleRain (Lnet/minecraft/world/World;DDD)V +1237 net/minecraft/util/MovementInputFromOptions (Lnet/minecraft/client/settings/GameSettings;)V +1243 net/minecraft/client/renderer/EntityRenderer$1 (Lnet/minecraft/client/renderer/EntityRenderer;)V +1247 net/minecraft/client/renderer/ItemRenderer (Lnet/minecraft/client/Minecraft;)V +1248 net/minecraft/client/renderer/RenderGlobal$1 (Lnet/minecraft/client/renderer/RenderGlobal;DDD)V +1249 net/minecraft/client/renderer/RenderGlobal (Lnet/minecraft/client/Minecraft;)V +1250 net/minecraft/client/renderer/Tessellator (I)V +1270 net/minecraft/client/renderer/texture/DynamicTexture (Ljava/awt/image/BufferedImage;)V +1271 net/minecraft/client/renderer/texture/DynamicTexture (II)V +1274 net/minecraft/client/renderer/texture/LayeredTexture ([Ljava/lang/String;)V +1275 net/minecraft/client/renderer/texture/SimpleTexture (Lnet/minecraft/util/ResourceLocation;)V +1277 net/minecraft/client/renderer/texture/Stitcher$Slot (IIII)V +1282 net/minecraft/client/renderer/texture/TextureAtlasSprite (Ljava/lang/String;)V +1283 net/minecraft/client/renderer/texture/TextureManager$1 (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/texture/ITextureObject;)V +1284 net/minecraft/client/renderer/texture/TextureManager (Lnet/minecraft/client/resources/IResourceManager;)V +1287 net/minecraft/client/resources/AbstractResourcePack (Ljava/io/File;)V +1289 net/minecraft/client/resources/FallbackResourceManager (Lnet/minecraft/client/resources/data/MetadataSerializer;)V +1290 net/minecraft/client/resources/FileResourcePack (Ljava/io/File;)V +1291 net/minecraft/client/resources/FolderResourcePack (Ljava/io/File;)V +1292 net/minecraft/util/ResourceLocation (Ljava/lang/String;Ljava/lang/String;)V +1293 net/minecraft/util/ResourceLocation (Ljava/lang/String;)V +1294 net/minecraft/client/resources/ResourcePackFileNotFoundException (Ljava/io/File;Ljava/lang/String;)V +1295 net/minecraft/client/resources/ResourcePackRepository$Entry (Lnet/minecraft/client/resources/ResourcePackRepository;Ljava/io/File;)V +1296 net/minecraft/client/resources/ResourcePackRepository$Entry (Lnet/minecraft/client/resources/ResourcePackRepository;Ljava/io/File;Lnet/minecraft/client/resources/ResourcePackRepository$1;)V +1298 net/minecraft/client/resources/SimpleReloadableResourceManager$1 (Lnet/minecraft/client/resources/SimpleReloadableResourceManager;)V +1299 net/minecraft/client/resources/SimpleReloadableResourceManager (Lnet/minecraft/client/resources/data/MetadataSerializer;)V +1303 net/minecraft/client/resources/Language (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V +1304 net/minecraft/client/resources/LanguageManager (Lnet/minecraft/client/resources/data/MetadataSerializer;Ljava/lang/String;)V +1305 net/minecraft/client/resources/data/MetadataSerializer$Registration (Lnet/minecraft/client/resources/data/MetadataSerializer;Lnet/minecraft/client/resources/data/IMetadataSectionSerializer;Ljava/lang/Class;)V +1306 net/minecraft/client/resources/data/MetadataSerializer$Registration (Lnet/minecraft/client/resources/data/MetadataSerializer;Lnet/minecraft/client/resources/data/IMetadataSectionSerializer;Ljava/lang/Class;Lnet/minecraft/client/resources/data/MetadataSerializer$1;)V +1307 net/minecraft/client/resources/data/AnimationFrame (I)V +1308 net/minecraft/client/resources/data/AnimationFrame (II)V +1310 net/minecraft/client/resources/data/FontMetadataSection ([F[F[F)V +1311 net/minecraft/client/resources/data/LanguageMetadataSection (Ljava/util/Collection;)V +1314 net/minecraft/server/integrated/IntegratedPlayerList (Lnet/minecraft/server/integrated/IntegratedServer;)V +1315 net/minecraft/server/integrated/IntegratedServer$1 (Lnet/minecraft/server/integrated/IntegratedServer;)V +1316 net/minecraft/server/integrated/IntegratedServer$2 (Lnet/minecraft/server/integrated/IntegratedServer;)V +1320 net/minecraft/client/network/LanServerDetector$ThreadLanServerFind (Lnet/minecraft/client/network/LanServerDetector$LanServerList;)V +1321 net/minecraft/client/multiplayer/ThreadLanServerPing (Ljava/lang/String;Ljava/lang/String;)V +1324 net/minecraft/client/audio/SoundManager$1 (Lnet/minecraft/client/audio/SoundManager;)V +1338 net/minecraft/crash/CrashReport$1 (Lnet/minecraft/crash/CrashReport;)V +1339 net/minecraft/crash/CrashReport$2 (Lnet/minecraft/crash/CrashReport;)V +1340 net/minecraft/crash/CrashReport$3 (Lnet/minecraft/crash/CrashReport;)V +1341 net/minecraft/crash/CrashReport$4 (Lnet/minecraft/crash/CrashReport;)V +1342 net/minecraft/crash/CrashReport$5 (Lnet/minecraft/crash/CrashReport;)V +1343 net/minecraft/crash/CrashReport$6 (Lnet/minecraft/crash/CrashReport;)V +1344 net/minecraft/crash/CrashReport$7 (Lnet/minecraft/crash/CrashReport;)V +1348 net/minecraft/crash/CrashReport (Ljava/lang/String;Ljava/lang/Throwable;)V +1350 net/minecraft/crash/CrashReportCategory$2 (I)V +1352 net/minecraft/crash/CrashReportCategory$Entry (Ljava/lang/String;Ljava/lang/Object;)V +1353 net/minecraft/crash/CrashReportCategory (Lnet/minecraft/crash/CrashReport;Ljava/lang/String;)V +1356 net/minecraft/util/ReportedException (Lnet/minecraft/crash/CrashReport;)V +1357 net/minecraft/util/Util$EnumOS (Ljava/lang/String;I)V +1358 net/minecraft/command/CommandSpreadPlayers$Position (DD)V +1359 net/minecraft/command/CommandException (Ljava/lang/String;[Ljava/lang/Object;)V +1360 net/minecraft/command/NumberInvalidException (Ljava/lang/String;[Ljava/lang/Object;)V +1361 net/minecraft/command/SyntaxErrorException (Ljava/lang/String;[Ljava/lang/Object;)V +1362 net/minecraft/command/PlayerNotFoundException (Ljava/lang/String;[Ljava/lang/Object;)V +1363 net/minecraft/command/CommandNotFoundException (Ljava/lang/String;[Ljava/lang/Object;)V +1364 net/minecraft/command/WrongUsageException (Ljava/lang/String;[Ljava/lang/Object;)V +1366 net/minecraft/util/registry/RegistryDefaulted (Ljava/lang/Object;)V +1368 net/minecraft/dispenser/PositionImpl (DDD)V +1373 net/minecraft/nbt/NBTTagCompound$1 (Lnet/minecraft/nbt/NBTTagCompound;Ljava/lang/String;)V +1374 net/minecraft/nbt/NBTTagCompound$2 (Lnet/minecraft/nbt/NBTTagCompound;I)V +1389 net/minecraft/nbt/NBTTagString (Ljava/lang/String;)V +1490 net/minecraft/server/management/UserListIPBans (Ljava/io/File;)V +1491 net/minecraft/server/dedicated/PendingCommand (Ljava/lang/String;Lnet/minecraft/command/ICommandSender;)V +1500 net/minecraft/server/management/PlayerList (Lnet/minecraft/server/MinecraftServer;)V +1501 net/minecraft/scoreboard/ServerScoreboard (Lnet/minecraft/server/MinecraftServer;)V +1503 net/minecraft/server/dedicated/DedicatedPlayerList (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1507 net/minecraft/server/dedicated/DedicatedServer$4 (Lnet/minecraft/server/dedicated/DedicatedServer;)V +1513 net/minecraft/server/management/DemoPlayerInteractionManager (Lnet/minecraft/world/World;)V +1515 net/minecraft/entity/EntityTracker$1 (Lnet/minecraft/entity/EntityTracker;I)V +1516 net/minecraft/entity/EntityTracker (Lnet/minecraft/world/WorldServer;)V +1517 net/minecraft/world/ServerWorldEventHandler (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/WorldServer;)V +1518 net/minecraft/server/management/PlayerChunkMapEntry (Lnet/minecraft/server/management/PlayerChunkMap;II)V +1521 net/minecraft/world/WorldServer$ServerBlockEventList (Lnet/minecraft/world/WorldServer$1;)V +1524 net/minecraft/server/management/PlayerInteractionManager (Lnet/minecraft/world/World;)V +1530 net/minecraft/network/NetHandlerPlayServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;Lnet/minecraft/entity/player/EntityPlayerMP;)V +1533 net/minecraft/network/rcon/RConOutputStream (I)V +1535 net/minecraft/network/rcon/RConThreadQuery$Auth (Lnet/minecraft/network/rcon/RConThreadQuery;Ljava/net/DatagramPacket;)V +1536 net/minecraft/network/rcon/RConThreadQuery (Lnet/minecraft/network/rcon/IServer;)V +1537 net/minecraft/network/rcon/RConThreadClient (Lnet/minecraft/network/rcon/IServer;Ljava/net/Socket;)V +1538 net/minecraft/network/rcon/RConThreadMain (Lnet/minecraft/network/rcon/IServer;)V +1552 net/minecraft/util/IntHashMap$Entry (IILjava/lang/Object;Lnet/minecraft/util/IntHashMap$Entry;)V +1554 net/minecraft/profiler/Profiler$Result (Ljava/lang/String;DD)V +1555 net/minecraft/util/Tuple (Ljava/lang/Object;Ljava/lang/Object;)V +1556 net/minecraft/util/WeightedRandom$Item (I)V +1561 net/minecraft/inventory/InventoryBasic (Ljava/lang/String;ZI)V +1562 net/minecraft/profiler/Snooper$1 (Lnet/minecraft/profiler/Snooper;)V +1563 net/minecraft/profiler/Snooper (Ljava/lang/String;Lnet/minecraft/profiler/ISnooperInfo;J)V +1564 net/minecraft/util/CombatEntry (Lnet/minecraft/util/DamageSource;IFFLjava/lang/String;F)V +1565 net/minecraft/util/CombatTracker (Lnet/minecraft/entity/EntityLivingBase;)V +1566 net/minecraft/util/DamageSource (Ljava/lang/String;)V +1567 net/minecraft/util/EntityDamageSource (Ljava/lang/String;Lnet/minecraft/entity/Entity;)V +1568 net/minecraft/util/EntityDamageSourceIndirect (Ljava/lang/String;Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;)V +1577 net/minecraft/potion/PotionEffect (Lnet/minecraft/potion/PotionEffect;)V +1578 net/minecraft/entity/EntityAgeable (Lnet/minecraft/world/World;)V +1580 net/minecraft/entity/Entity$2 (Lnet/minecraft/entity/Entity;)V +1582 net/minecraft/entity/Entity (Lnet/minecraft/world/World;)V +1584 net/minecraft/util/EntitySelectors$ArmoredMob (Lnet/minecraft/item/ItemStack;)V +1585 net/minecraft/entity/item/EntityXPOrb (Lnet/minecraft/world/World;DDDI)V +1586 net/minecraft/entity/item/EntityXPOrb (Lnet/minecraft/world/World;)V +1587 net/minecraft/entity/EntityFlying (Lnet/minecraft/world/World;)V +1588 net/minecraft/entity/EntityHanging (Lnet/minecraft/world/World;)V +1590 net/minecraft/entity/item/EntityItemFrame (Lnet/minecraft/world/World;)V +1592 net/minecraft/entity/EntityLeashKnot (Lnet/minecraft/world/World;)V +1594 net/minecraft/entity/EntityLivingBase (Lnet/minecraft/world/World;)V +1595 net/minecraft/entity/EntityLiving (Lnet/minecraft/world/World;)V +1596 net/minecraft/entity/EnumCreatureType (Ljava/lang/String;ILjava/lang/Class;ILnet/minecraft/block/material/Material;ZZ)V +1597 net/minecraft/entity/EnumCreatureAttribute (Ljava/lang/String;I)V +1598 net/minecraft/entity/item/EntityPainting$EnumArt (Ljava/lang/String;ILjava/lang/String;IIII)V +1599 net/minecraft/entity/item/EntityPainting (Lnet/minecraft/world/World;)V +1602 net/minecraft/entity/EntityCreature (Lnet/minecraft/world/World;)V +1604 net/minecraft/entity/passive/EntityTameable (Lnet/minecraft/world/World;)V +1605 net/minecraft/entity/ai/attributes/AttributeModifier (Ljava/lang/String;DI)V +1606 net/minecraft/entity/ai/attributes/AttributeModifier (Ljava/util/UUID;Ljava/lang/String;DI)V +1608 net/minecraft/entity/ai/attributes/ModifiableAttributeInstance (Lnet/minecraft/entity/ai/attributes/AbstractAttributeMap;Lnet/minecraft/entity/ai/attributes/IAttribute;)V +1611 net/minecraft/entity/EntityBodyHelper (Lnet/minecraft/entity/EntityLivingBase;)V +1612 net/minecraft/entity/ai/EntityJumpHelper (Lnet/minecraft/entity/EntityLiving;)V +1613 net/minecraft/entity/ai/EntityLookHelper (Lnet/minecraft/entity/EntityLiving;)V +1614 net/minecraft/entity/ai/EntityMoveHelper (Lnet/minecraft/entity/EntityLiving;)V +1615 net/minecraft/entity/ai/EntityAIAvoidEntity$1 (Lnet/minecraft/entity/ai/EntityAIAvoidEntity;)V +1617 net/minecraft/entity/ai/EntityAIBeg (Lnet/minecraft/entity/passive/EntityWolf;F)V +1618 net/minecraft/entity/ai/EntityAIBreakDoor (Lnet/minecraft/entity/EntityLiving;)V +1619 net/minecraft/entity/ai/EntityAIMate (Lnet/minecraft/entity/passive/EntityAnimal;D)V +1621 net/minecraft/entity/ai/EntityAIDoorInteract (Lnet/minecraft/entity/EntityLiving;)V +1623 net/minecraft/entity/ai/EntityAIFleeSun (Lnet/minecraft/entity/EntityCreature;D)V +1624 net/minecraft/entity/ai/EntityAISwimming (Lnet/minecraft/entity/EntityLiving;)V +1625 net/minecraft/entity/ai/EntityAIFollowOwner (Lnet/minecraft/entity/passive/EntityTameable;DFF)V +1626 net/minecraft/entity/ai/EntityAIFollowParent (Lnet/minecraft/entity/passive/EntityAnimal;D)V +1627 net/minecraft/entity/ai/EntityAITasks$EntityAITaskEntry (Lnet/minecraft/entity/ai/EntityAITasks;ILnet/minecraft/entity/ai/EntityAIBase;)V +1628 net/minecraft/entity/ai/EntityAITasks (Lnet/minecraft/profiler/Profiler;)V +1629 net/minecraft/entity/ai/EntityAIWatchClosest2 (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;FF)V +1630 net/minecraft/entity/ai/EntityAILeapAtTarget (Lnet/minecraft/entity/EntityLiving;F)V +1631 net/minecraft/entity/ai/EntityAIWatchClosest (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;F)V +1632 net/minecraft/entity/ai/EntityAIWatchClosest (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;FF)V +1633 net/minecraft/entity/ai/EntityAILookAtTradePlayer (Lnet/minecraft/entity/passive/EntityVillager;)V +1634 net/minecraft/entity/ai/EntityAIVillagerMate (Lnet/minecraft/entity/passive/EntityVillager;)V +1636 net/minecraft/entity/ai/EntityAIAttackMelee (Lnet/minecraft/entity/EntityCreature;DZ)V +1637 net/minecraft/entity/ai/EntityAIMoveIndoors (Lnet/minecraft/entity/EntityCreature;)V +1638 net/minecraft/entity/ai/EntityAIMoveThroughVillage (Lnet/minecraft/entity/EntityCreature;DZ)V +1640 net/minecraft/entity/ai/EntityAIMoveTowardsTarget (Lnet/minecraft/entity/EntityCreature;DF)V +1641 net/minecraft/entity/ai/EntityAIOcelotAttack (Lnet/minecraft/entity/EntityLiving;)V +1643 net/minecraft/entity/ai/EntityAILookAtVillager (Lnet/minecraft/entity/monster/EntityIronGolem;)V +1644 net/minecraft/entity/ai/EntityAIOpenDoor (Lnet/minecraft/entity/EntityLiving;Z)V +1645 net/minecraft/entity/ai/EntityAIPanic (Lnet/minecraft/entity/EntityCreature;D)V +1646 net/minecraft/entity/ai/EntityAIPlay (Lnet/minecraft/entity/passive/EntityVillager;D)V +1647 net/minecraft/entity/ai/EntityAILookIdle (Lnet/minecraft/entity/EntityLiving;)V +1648 net/minecraft/entity/ai/EntityAIWander (Lnet/minecraft/entity/EntityCreature;D)V +1649 net/minecraft/entity/ai/EntityAIAttackRanged (Lnet/minecraft/entity/IRangedAttackMob;DIF)V +1650 net/minecraft/entity/ai/EntityAIAttackRanged (Lnet/minecraft/entity/IRangedAttackMob;DIIF)V +1651 net/minecraft/entity/ai/EntityAIRestrictOpenDoor (Lnet/minecraft/entity/EntityCreature;)V +1652 net/minecraft/entity/ai/EntityAIRestrictSun (Lnet/minecraft/entity/EntityCreature;)V +1653 net/minecraft/entity/ai/EntityAIRunAroundLikeCrazy (Lnet/minecraft/entity/passive/AbstractHorse;D)V +1654 net/minecraft/entity/ai/EntityAISit (Lnet/minecraft/entity/passive/EntityTameable;)V +1655 net/minecraft/entity/ai/EntityAICreeperSwell (Lnet/minecraft/entity/monster/EntityCreeper;)V +1656 net/minecraft/entity/ai/EntityAIFollowGolem (Lnet/minecraft/entity/passive/EntityVillager;)V +1658 net/minecraft/entity/ai/EntityAITradePlayer (Lnet/minecraft/entity/passive/EntityVillager;)V +1659 net/minecraft/entity/ai/EntityAIDefendVillage (Lnet/minecraft/entity/monster/EntityIronGolem;)V +1662 net/minecraft/entity/ai/EntityAINearestAttackableTarget$Sorter (Lnet/minecraft/entity/Entity;)V +1667 net/minecraft/entity/ai/EntityAIOwnerHurtByTarget (Lnet/minecraft/entity/passive/EntityTameable;)V +1668 net/minecraft/entity/ai/EntityAIOwnerHurtTarget (Lnet/minecraft/entity/passive/EntityTameable;)V +1669 net/minecraft/entity/ai/EntityAITarget (Lnet/minecraft/entity/EntityCreature;Z)V +1670 net/minecraft/entity/ai/EntityAITarget (Lnet/minecraft/entity/EntityCreature;ZZ)V +1671 net/minecraft/pathfinding/PathNavigate (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +1672 net/minecraft/entity/ai/EntitySenses (Lnet/minecraft/entity/EntityLiving;)V +1674 net/minecraft/village/Village$VillageAggressor (Lnet/minecraft/village/Village;Lnet/minecraft/entity/EntityLivingBase;I)V +1675 net/minecraft/village/Village (Lnet/minecraft/world/World;)V +1676 net/minecraft/village/VillageSiege (Lnet/minecraft/world/World;)V +1677 net/minecraft/village/VillageCollection (Ljava/lang/String;)V +1678 net/minecraft/village/VillageCollection (Lnet/minecraft/world/World;)V +1679 net/minecraft/entity/passive/EntityAmbientCreature (Lnet/minecraft/world/World;)V +1680 net/minecraft/entity/passive/EntityBat (Lnet/minecraft/world/World;)V +1681 net/minecraft/entity/passive/EntityAnimal (Lnet/minecraft/world/World;)V +1682 net/minecraft/entity/passive/EntityChicken (Lnet/minecraft/world/World;)V +1683 net/minecraft/entity/passive/EntityCow (Lnet/minecraft/world/World;)V +1685 net/minecraft/entity/passive/EntityHorse (Lnet/minecraft/world/World;)V +1686 net/minecraft/entity/monster/EntityGolem (Lnet/minecraft/world/World;)V +1687 net/minecraft/entity/passive/EntityMooshroom (Lnet/minecraft/world/World;)V +1688 net/minecraft/entity/passive/EntityOcelot (Lnet/minecraft/world/World;)V +1689 net/minecraft/entity/passive/EntityPig (Lnet/minecraft/world/World;)V +1690 net/minecraft/entity/passive/EntitySheep$1 (Lnet/minecraft/entity/passive/EntitySheep;)V +1691 net/minecraft/entity/passive/EntitySheep (Lnet/minecraft/world/World;)V +1692 net/minecraft/entity/monster/EntitySnowman (Lnet/minecraft/world/World;)V +1693 net/minecraft/entity/passive/EntitySquid (Lnet/minecraft/world/World;)V +1694 net/minecraft/entity/monster/EntityIronGolem (Lnet/minecraft/world/World;)V +1695 net/minecraft/entity/passive/EntityWaterMob (Lnet/minecraft/world/World;)V +1696 net/minecraft/entity/passive/EntityWolf (Lnet/minecraft/world/World;)V +1697 net/minecraft/entity/MultiPartEntityPart (Lnet/minecraft/entity/IEntityMultiPart;Ljava/lang/String;FF)V +1698 net/minecraft/entity/item/EntityEnderCrystal (Lnet/minecraft/world/World;)V +1699 net/minecraft/entity/item/EntityEnderCrystal (Lnet/minecraft/world/World;DDD)V +1700 net/minecraft/entity/boss/EntityDragon (Lnet/minecraft/world/World;)V +1701 net/minecraft/entity/boss/EntityWither (Lnet/minecraft/world/World;)V +1702 net/minecraft/entity/effect/EntityWeatherEffect (Lnet/minecraft/world/World;)V +1704 net/minecraft/entity/item/EntityBoat (Lnet/minecraft/world/World;)V +1705 net/minecraft/entity/item/EntityBoat (Lnet/minecraft/world/World;DDD)V +1706 net/minecraft/entity/item/EntityFallingBlock (Lnet/minecraft/world/World;)V +1709 net/minecraft/entity/item/EntityItem (Lnet/minecraft/world/World;DDD)V +1710 net/minecraft/entity/item/EntityItem (Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V +1711 net/minecraft/entity/item/EntityItem (Lnet/minecraft/world/World;)V +1712 net/minecraft/entity/item/EntityMinecart (Lnet/minecraft/world/World;)V +1713 net/minecraft/entity/item/EntityMinecart (Lnet/minecraft/world/World;DDD)V +1714 net/minecraft/entity/item/EntityMinecartChest (Lnet/minecraft/world/World;)V +1715 net/minecraft/entity/item/EntityMinecartChest (Lnet/minecraft/world/World;DDD)V +1716 net/minecraft/entity/item/EntityMinecartContainer (Lnet/minecraft/world/World;)V +1717 net/minecraft/entity/item/EntityMinecartContainer (Lnet/minecraft/world/World;DDD)V +1718 net/minecraft/entity/item/EntityMinecartFurnace (Lnet/minecraft/world/World;)V +1719 net/minecraft/entity/item/EntityMinecartFurnace (Lnet/minecraft/world/World;DDD)V +1720 net/minecraft/entity/item/EntityMinecartHopper (Lnet/minecraft/world/World;)V +1721 net/minecraft/entity/item/EntityMinecartHopper (Lnet/minecraft/world/World;DDD)V +1722 net/minecraft/entity/item/EntityMinecartEmpty (Lnet/minecraft/world/World;)V +1723 net/minecraft/entity/item/EntityMinecartEmpty (Lnet/minecraft/world/World;DDD)V +1727 net/minecraft/entity/item/EntityMinecartTNT (Lnet/minecraft/world/World;)V +1728 net/minecraft/entity/item/EntityMinecartTNT (Lnet/minecraft/world/World;DDD)V +1729 net/minecraft/entity/item/EntityTNTPrimed (Lnet/minecraft/world/World;)V +1730 net/minecraft/entity/item/EntityTNTPrimed (Lnet/minecraft/world/World;DDDLnet/minecraft/entity/EntityLivingBase;)V +1731 net/minecraft/entity/monster/EntityBlaze (Lnet/minecraft/world/World;)V +1732 net/minecraft/entity/monster/EntityCaveSpider (Lnet/minecraft/world/World;)V +1733 net/minecraft/entity/monster/EntityCreeper (Lnet/minecraft/world/World;)V +1734 net/minecraft/entity/monster/EntityEnderman (Lnet/minecraft/world/World;)V +1735 net/minecraft/entity/monster/EntityGhast (Lnet/minecraft/world/World;)V +1736 net/minecraft/entity/monster/EntityGiantZombie (Lnet/minecraft/world/World;)V +1737 net/minecraft/entity/monster/EntityMagmaCube (Lnet/minecraft/world/World;)V +1738 net/minecraft/entity/monster/EntityMob (Lnet/minecraft/world/World;)V +1739 net/minecraft/entity/monster/EntityPigZombie (Lnet/minecraft/world/World;)V +1740 net/minecraft/entity/monster/EntitySilverfish (Lnet/minecraft/world/World;)V +1741 net/minecraft/entity/monster/EntitySkeleton (Lnet/minecraft/world/World;)V +1742 net/minecraft/entity/monster/EntitySlime (Lnet/minecraft/world/World;)V +1743 net/minecraft/entity/monster/EntitySpider (Lnet/minecraft/world/World;)V +1744 net/minecraft/entity/monster/EntityWitch (Lnet/minecraft/world/World;)V +1745 net/minecraft/entity/monster/EntityZombie (Lnet/minecraft/world/World;)V +1747 net/minecraft/entity/passive/EntityVillager (Lnet/minecraft/world/World;)V +1748 net/minecraft/entity/passive/EntityVillager (Lnet/minecraft/world/World;I)V +1749 net/minecraft/entity/player/InventoryPlayer$1 (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/item/ItemStack;)V +1750 net/minecraft/entity/player/InventoryPlayer (Lnet/minecraft/entity/player/EntityPlayer;)V +1751 net/minecraft/entity/player/EntityPlayer$SleepResult (Ljava/lang/String;I)V +1753 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;)V +1754 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;DDD)V +1757 net/minecraft/entity/item/EntityEnderEye (Lnet/minecraft/world/World;)V +1758 net/minecraft/entity/item/EntityEnderEye (Lnet/minecraft/world/World;DDD)V +1759 net/minecraft/entity/projectile/EntityFireball (Lnet/minecraft/world/World;)V +1760 net/minecraft/entity/projectile/EntityFireball (Lnet/minecraft/world/World;DDDDDD)V +1761 net/minecraft/entity/projectile/EntityFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1762 net/minecraft/entity/item/EntityFireworkRocket (Lnet/minecraft/world/World;)V +1763 net/minecraft/entity/item/EntityFireworkRocket (Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V +1766 net/minecraft/entity/projectile/EntityFishHook (Lnet/minecraft/world/World;Lnet/minecraft/entity/player/EntityPlayer;)V +1767 net/minecraft/entity/projectile/EntityLargeFireball (Lnet/minecraft/world/World;)V +1768 net/minecraft/entity/projectile/EntityLargeFireball (Lnet/minecraft/world/World;DDDDDD)V +1769 net/minecraft/entity/projectile/EntityLargeFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1770 net/minecraft/entity/projectile/EntitySmallFireball (Lnet/minecraft/world/World;)V +1771 net/minecraft/entity/projectile/EntitySmallFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1772 net/minecraft/entity/projectile/EntitySmallFireball (Lnet/minecraft/world/World;DDDDDD)V +1773 net/minecraft/entity/projectile/EntitySnowball (Lnet/minecraft/world/World;)V +1774 net/minecraft/entity/projectile/EntitySnowball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1775 net/minecraft/entity/projectile/EntitySnowball (Lnet/minecraft/world/World;DDD)V +1776 net/minecraft/entity/projectile/EntityThrowable (Lnet/minecraft/world/World;)V +1777 net/minecraft/entity/projectile/EntityThrowable (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1778 net/minecraft/entity/projectile/EntityThrowable (Lnet/minecraft/world/World;DDD)V +1779 net/minecraft/entity/projectile/EntityEgg (Lnet/minecraft/world/World;)V +1780 net/minecraft/entity/projectile/EntityEgg (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1781 net/minecraft/entity/projectile/EntityEgg (Lnet/minecraft/world/World;DDD)V +1783 net/minecraft/entity/item/EntityEnderPearl (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1784 net/minecraft/entity/item/EntityEnderPearl (Lnet/minecraft/world/World;DDD)V +1785 net/minecraft/entity/item/EntityExpBottle (Lnet/minecraft/world/World;)V +1786 net/minecraft/entity/item/EntityExpBottle (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +1787 net/minecraft/entity/item/EntityExpBottle (Lnet/minecraft/world/World;DDD)V +1788 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;)V +1790 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/item/ItemStack;)V +1792 net/minecraft/entity/projectile/EntityPotion (Lnet/minecraft/world/World;DDDLnet/minecraft/item/ItemStack;)V +1793 net/minecraft/entity/projectile/EntityWitherSkull (Lnet/minecraft/world/World;)V +1794 net/minecraft/entity/projectile/EntityWitherSkull (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +1795 net/minecraft/entity/projectile/EntityWitherSkull (Lnet/minecraft/world/World;DDDDDD)V +1798 net/minecraft/inventory/ContainerRepair$1 (Lnet/minecraft/inventory/ContainerRepair;Ljava/lang/String;ZI)V +1801 net/minecraft/inventory/ContainerBeacon$BeaconSlot (Lnet/minecraft/inventory/ContainerBeacon;Lnet/minecraft/inventory/IInventory;III)V +1807 net/minecraft/inventory/InventoryCrafting (Lnet/minecraft/inventory/Container;II)V +1809 net/minecraft/inventory/ContainerEnchantment$1 (Lnet/minecraft/inventory/ContainerEnchantment;Ljava/lang/String;ZI)V +1810 net/minecraft/inventory/ContainerEnchantment$2 (Lnet/minecraft/inventory/ContainerEnchantment;Lnet/minecraft/inventory/IInventory;III)V +1819 net/minecraft/inventory/ContainerPlayer (Lnet/minecraft/entity/player/InventoryPlayer;ZLnet/minecraft/entity/player/EntityPlayer;)V +1820 net/minecraft/inventory/InventoryMerchant (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/IMerchant;)V +1821 net/minecraft/inventory/ContainerMerchant (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/entity/IMerchant;Lnet/minecraft/world/World;)V +1822 net/minecraft/inventory/SlotMerchantResult (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/IMerchant;Lnet/minecraft/inventory/InventoryMerchant;III)V +1824 net/minecraft/inventory/Slot (Lnet/minecraft/inventory/IInventory;III)V +1826 net/minecraft/item/ItemAnvilBlock (Lnet/minecraft/block/Block;)V +1841 net/minecraft/creativetab/CreativeTabs$10 (ILjava/lang/String;)V +1842 net/minecraft/creativetab/CreativeTabs$8 (ILjava/lang/String;)V +1843 net/minecraft/creativetab/CreativeTabs$9 (ILjava/lang/String;)V +1844 net/minecraft/creativetab/CreativeTabs$1 (ILjava/lang/String;)V +1845 net/minecraft/creativetab/CreativeTabs$11 (ILjava/lang/String;)V +1846 net/minecraft/creativetab/CreativeTabs$12 (ILjava/lang/String;)V +1847 net/minecraft/creativetab/CreativeTabs$2 (ILjava/lang/String;)V +1848 net/minecraft/creativetab/CreativeTabs$3 (ILjava/lang/String;)V +1849 net/minecraft/creativetab/CreativeTabs$4 (ILjava/lang/String;)V +1850 net/minecraft/creativetab/CreativeTabs$5 (ILjava/lang/String;)V +1851 net/minecraft/creativetab/CreativeTabs$6 (ILjava/lang/String;)V +1852 net/minecraft/creativetab/CreativeTabs$7 (ILjava/lang/String;)V +1853 net/minecraft/creativetab/CreativeTabs (ILjava/lang/String;)V +1874 net/minecraft/item/Item$ToolMaterial (Ljava/lang/String;IIIFFI)V +1876 net/minecraft/item/ItemStack (Lnet/minecraft/block/Block;)V +1877 net/minecraft/item/ItemStack (Lnet/minecraft/block/Block;I)V +1878 net/minecraft/item/ItemStack (Lnet/minecraft/block/Block;II)V +1879 net/minecraft/item/ItemStack (Lnet/minecraft/item/Item;)V +1880 net/minecraft/item/ItemStack (Lnet/minecraft/item/Item;I)V +1881 net/minecraft/item/ItemStack (Lnet/minecraft/item/Item;II)V +1910 net/minecraft/item/EnumAction (Ljava/lang/String;I)V +1927 net/minecraft/enchantment/EnumEnchantmentType (Ljava/lang/String;I)V +1928 net/minecraft/enchantment/EnchantmentHelper$ModifierLiving (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +1929 net/minecraft/enchantment/EnchantmentHelper$ModifierDamage (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +1930 net/minecraft/enchantment/EnchantmentData (Lnet/minecraft/enchantment/Enchantment;I)V +1940 net/minecraft/village/MerchantRecipe (Lnet/minecraft/nbt/NBTTagCompound;)V +1941 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V +1942 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)V +1943 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/Item;)V +1944 net/minecraft/village/MerchantRecipeList (Lnet/minecraft/nbt/NBTTagCompound;)V +1947 net/minecraft/util/math/ChunkPos (II)V +1955 net/minecraft/world/MinecraftException (Ljava/lang/String;)V +1957 net/minecraft/world/WorldSettings (JLnet/minecraft/world/GameType;ZZLnet/minecraft/world/WorldType;)V +1958 net/minecraft/world/WorldSettings (Lnet/minecraft/world/storage/WorldInfo;)V +1959 net/minecraft/world/WorldType (ILjava/lang/String;)V +1960 net/minecraft/world/WorldType (ILjava/lang/String;I)V +1961 net/minecraft/world/EnumSkyBlock (Ljava/lang/String;II)V +1963 net/minecraft/world/Teleporter (Lnet/minecraft/world/WorldServer;)V +1970 net/minecraft/world/biome/Biome$SpawnListEntry (Ljava/lang/Class;III)V +1972 net/minecraft/world/biome/BiomeCache$Block (Lnet/minecraft/world/biome/BiomeCache;II)V +1973 net/minecraft/world/biome/BiomeCache (Lnet/minecraft/world/biome/BiomeProvider;)V +1994 net/minecraft/world/chunk/EmptyChunk (Lnet/minecraft/world/World;II)V +1995 net/minecraft/world/chunk/Chunk (Lnet/minecraft/world/World;II)V +1997 net/minecraft/world/chunk/storage/ExtendedBlockStorage (IZ)V +1998 net/minecraft/world/chunk/storage/NibbleArrayReader ([BI)V +1999 net/minecraft/world/chunk/storage/ChunkLoader$AnvilConverterData (II)V +2000 net/minecraft/world/chunk/storage/RegionFile$ChunkBuffer (Lnet/minecraft/world/chunk/storage/RegionFile;II)V +2001 net/minecraft/world/chunk/storage/RegionFile (Ljava/io/File;)V +2004 net/minecraft/world/gen/ChunkGeneratorFlat (Lnet/minecraft/world/World;JZLjava/lang/String;)V +2008 net/minecraft/world/gen/feature/WorldGenBigTree (Z)V +2011 net/minecraft/world/gen/feature/WorldGenClay (I)V +2013 net/minecraft/world/gen/feature/WorldGenerator (Z)V +2025 net/minecraft/world/gen/feature/WorldGenTaiga2 (Z)V +2027 net/minecraft/world/gen/feature/WorldGenTrees (Z)V +2031 net/minecraft/world/gen/structure/StructureBoundingBox (Lnet/minecraft/world/gen/structure/StructureBoundingBox;)V +2032 net/minecraft/world/gen/structure/StructureBoundingBox (IIIIII)V +2033 net/minecraft/world/gen/structure/StructureBoundingBox (IIII)V +2034 net/minecraft/world/gen/structure/MapGenMineshaft (Ljava/util/Map;)V +2040 net/minecraft/world/gen/structure/MapGenNetherBridge$Start (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2042 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing3 (Ljava/util/Random;II)V +2054 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Piece (I)V +2055 net/minecraft/world/gen/structure/StructureNetherBridgePieces$PieceWeight (Ljava/lang/Class;IIZ)V +2056 net/minecraft/world/gen/structure/StructureNetherBridgePieces$PieceWeight (Ljava/lang/Class;II)V +2059 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Start (Ljava/util/Random;II)V +2060 net/minecraft/world/gen/structure/MapGenScatteredFeature$Start (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2061 net/minecraft/world/gen/structure/MapGenScatteredFeature (Ljava/util/Map;)V +2062 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$DesertPyramid (Ljava/util/Random;II)V +2064 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid (Ljava/util/Random;II)V +2065 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$Feature (Ljava/util/Random;IIIIII)V +2066 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$SwampHut (Ljava/util/Random;II)V +2067 net/minecraft/world/gen/structure/MapGenStronghold$Start (Lnet/minecraft/world/World;Ljava/util/Random;II)V +2068 net/minecraft/world/gen/structure/MapGenStronghold (Ljava/util/Map;)V +2069 net/minecraft/world/gen/structure/StructureStrongholdPieces$1 (Ljava/lang/Class;II)V +2070 net/minecraft/world/gen/structure/StructureStrongholdPieces$2 (Ljava/lang/Class;II)V +2076 net/minecraft/world/gen/structure/StructureStrongholdPieces$PieceWeight (Ljava/lang/Class;II)V +2080 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stones (Lnet/minecraft/world/gen/structure/StructureStrongholdPieces$1;)V +2081 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs (ILjava/util/Random;II)V +2083 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs2 (ILjava/util/Random;II)V +2086 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold$Door (Ljava/lang/String;I)V +2087 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stronghold (I)V +2088 net/minecraft/world/gen/structure/MapGenStructure$1 (Lnet/minecraft/world/gen/structure/MapGenStructure;II)V +2089 net/minecraft/world/gen/structure/MapGenStructure$2 (Lnet/minecraft/world/gen/structure/MapGenStructure;II)V +2090 net/minecraft/world/gen/structure/MapGenStructure$3 (Lnet/minecraft/world/gen/structure/MapGenStructure;)V +2091 net/minecraft/world/gen/structure/StructureComponent (I)V +2092 net/minecraft/world/gen/structure/MapGenVillage$Start (Lnet/minecraft/world/World;Ljava/util/Random;III)V +2093 net/minecraft/world/gen/structure/MapGenVillage (Ljava/util/Map;)V +2098 net/minecraft/world/gen/structure/StructureVillagePieces$PieceWeight (Ljava/lang/Class;II)V +2104 net/minecraft/world/gen/structure/StructureVillagePieces$Start (Lnet/minecraft/world/biome/BiomeProvider;ILjava/util/Random;IILjava/util/List;I)V +2107 net/minecraft/world/gen/structure/StructureVillagePieces$Village (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;I)V +2108 net/minecraft/world/gen/structure/StructureVillagePieces$Road (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;I)V +2109 net/minecraft/world/gen/structure/StructureVillagePieces$Well (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;II)V +2111 net/minecraft/world/gen/NoiseGeneratorOctaves (Ljava/util/Random;I)V +2112 net/minecraft/block/material/MaterialLogic (Lnet/minecraft/block/material/MapColor;)V +2113 net/minecraft/block/material/MaterialTransparent (Lnet/minecraft/block/material/MapColor;)V +2114 net/minecraft/block/material/MaterialLiquid (Lnet/minecraft/block/material/MapColor;)V +2115 net/minecraft/block/material/Material$1 (Lnet/minecraft/block/material/MapColor;)V +2116 net/minecraft/block/material/Material (Lnet/minecraft/block/material/MapColor;)V +2117 net/minecraft/block/material/MapColor (II)V +2118 net/minecraft/block/material/MaterialPortal (Lnet/minecraft/block/material/MapColor;)V +2119 net/minecraft/world/gen/layer/GenLayerAddIsland (JLnet/minecraft/world/gen/layer/GenLayer;)V +2120 net/minecraft/world/gen/layer/GenLayerAddMushroomIsland (JLnet/minecraft/world/gen/layer/GenLayer;)V +2121 net/minecraft/world/gen/layer/GenLayerAddSnow (JLnet/minecraft/world/gen/layer/GenLayer;)V +2123 net/minecraft/world/gen/layer/GenLayerFuzzyZoom (JLnet/minecraft/world/gen/layer/GenLayer;)V +2124 net/minecraft/world/gen/layer/GenLayerIsland (J)V +2125 net/minecraft/world/gen/layer/GenLayer (J)V +2127 net/minecraft/world/gen/layer/GenLayerRiverInit (JLnet/minecraft/world/gen/layer/GenLayer;)V +2128 net/minecraft/world/gen/layer/GenLayerRiver (JLnet/minecraft/world/gen/layer/GenLayer;)V +2129 net/minecraft/world/gen/layer/GenLayerRiverMix (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/gen/layer/GenLayer;)V +2130 net/minecraft/world/gen/layer/GenLayerShore (JLnet/minecraft/world/gen/layer/GenLayer;)V +2131 net/minecraft/world/gen/layer/GenLayerSmooth (JLnet/minecraft/world/gen/layer/GenLayer;)V +2133 net/minecraft/world/gen/layer/GenLayerVoronoiZoom (JLnet/minecraft/world/gen/layer/GenLayer;)V +2134 net/minecraft/world/gen/layer/GenLayerZoom (JLnet/minecraft/world/gen/layer/GenLayer;)V +2135 net/minecraft/pathfinding/PathPoint (III)V +2136 net/minecraft/pathfinding/Path ([Lnet/minecraft/pathfinding/PathPoint;)V +2138 net/minecraft/world/storage/MapData$MapInfo (Lnet/minecraft/world/storage/MapData;Lnet/minecraft/entity/player/EntityPlayer;)V +2140 net/minecraft/world/storage/MapData (Ljava/lang/String;)V +2141 net/minecraft/world/storage/WorldSavedData (Ljava/lang/String;)V +2143 net/minecraft/world/chunk/storage/AnvilSaveConverter$1 (Lnet/minecraft/world/chunk/storage/AnvilSaveConverter;)V +2145 net/minecraft/world/storage/DerivedWorldInfo (Lnet/minecraft/world/storage/WorldInfo;)V +2149 net/minecraft/world/storage/WorldInfo$10 (Lnet/minecraft/world/storage/WorldInfo;)V +2150 net/minecraft/world/storage/WorldInfo$2 (Lnet/minecraft/world/storage/WorldInfo;)V +2151 net/minecraft/world/storage/WorldInfo$3 (Lnet/minecraft/world/storage/WorldInfo;)V +2152 net/minecraft/world/storage/WorldInfo$4 (Lnet/minecraft/world/storage/WorldInfo;)V +2153 net/minecraft/world/storage/WorldInfo$5 (Lnet/minecraft/world/storage/WorldInfo;)V +2154 net/minecraft/world/storage/WorldInfo$6 (Lnet/minecraft/world/storage/WorldInfo;)V +2155 net/minecraft/world/storage/WorldInfo$7 (Lnet/minecraft/world/storage/WorldInfo;)V +2156 net/minecraft/world/storage/WorldInfo$8 (Lnet/minecraft/world/storage/WorldInfo;)V +2157 net/minecraft/world/storage/WorldInfo (Lnet/minecraft/nbt/NBTTagCompound;)V +2158 net/minecraft/world/storage/WorldInfo (Lnet/minecraft/world/WorldSettings;Ljava/lang/String;)V +2159 net/minecraft/world/storage/WorldInfo (Lnet/minecraft/world/storage/WorldInfo;)V +2160 net/minecraft/client/AnvilConverterException (Ljava/lang/String;)V +2162 net/minecraft/world/storage/MapStorage (Lnet/minecraft/world/storage/ISaveHandler;)V +2292 net/minecraft/tileentity/TileEntityMobSpawner$1 (Lnet/minecraft/tileentity/TileEntityMobSpawner;)V +2300 net/minecraft/util/math/AxisAlignedBB (DDDDDD)V +2302 net/minecraft/util/math/RayTraceResult$Type (Ljava/lang/String;I)V +2304 net/minecraft/util/math/RayTraceResult (Lnet/minecraft/entity/Entity;)V +2307 net/minecraft/scoreboard/ScoreObjective (Lnet/minecraft/scoreboard/Scoreboard;Ljava/lang/String;Lnet/minecraft/scoreboard/IScoreCriteria;)V +2308 net/minecraft/scoreboard/ScorePlayerTeam (Lnet/minecraft/scoreboard/Scoreboard;Ljava/lang/String;)V +2309 net/minecraft/scoreboard/Score (Lnet/minecraft/scoreboard/Scoreboard;Lnet/minecraft/scoreboard/ScoreObjective;Ljava/lang/String;)V +2310 net/minecraft/scoreboard/ScoreboardSaveData (Ljava/lang/String;)V +2311 net/minecraft/scoreboard/ScoreCriteria (Ljava/lang/String;)V +2312 net/minecraft/scoreboard/ScoreCriteriaHealth (Ljava/lang/String;)V +2341 net/minecraft/client/Minecraft$4 (Lnet/minecraft/client/Minecraft;)V +2342 net/minecraft/client/multiplayer/WorldClient$3 (Lnet/minecraft/client/multiplayer/WorldClient;)V +2343 net/minecraft/client/multiplayer/WorldClient$4 (Lnet/minecraft/client/multiplayer/WorldClient;)V +2344 net/minecraft/client/renderer/StitcherException (Lnet/minecraft/client/renderer/texture/Stitcher$Holder;Ljava/lang/String;)V +2347 net/minecraft/entity/ai/EntityAIMoveTowardsRestriction (Lnet/minecraft/entity/EntityCreature;D)V +2362 net/minecraft/server/gui/MinecraftServerGui (Lnet/minecraft/server/dedicated/DedicatedServer;)V +2366 net/minecraft/server/gui/PlayerListComponent (Lnet/minecraft/server/MinecraftServer;)V +2367 net/minecraft/server/gui/StatsComponent (Lnet/minecraft/server/MinecraftServer;)V +2368 net/minecraft/server/gui/StatsComponent$1 (Lnet/minecraft/server/gui/StatsComponent;)V +43000 net/minecraft/world/gen/structure/StructureBoundingBox ([I)V +43001 net/minecraft/world/gen/structure/MapGenStructureData (Ljava/lang/String;)V +43002 net/minecraft/world/gen/structure/StructureStart (II)V +45000 net/minecraft/client/gui/ChatLine (ILnet/minecraft/util/text/ITextComponent;I)V +45001 net/minecraft/client/settings/KeyBinding (Ljava/lang/String;ILjava/lang/String;)V +45002 net/minecraft/client/Minecraft$5 (Lnet/minecraft/client/Minecraft;)V +45004 net/minecraft/client/settings/GameSettings$Options (Ljava/lang/String;ILjava/lang/String;ZZFFF)V +45007 net/minecraft/client/gui/MapItemRenderer$Instance (Lnet/minecraft/client/gui/MapItemRenderer;Lnet/minecraft/world/storage/MapData;)V +45008 net/minecraft/client/gui/MapItemRenderer$Instance (Lnet/minecraft/client/gui/MapItemRenderer;Lnet/minecraft/world/storage/MapData;Lnet/minecraft/client/gui/MapItemRenderer$1;)V +45009 net/minecraft/client/gui/MapItemRenderer (Lnet/minecraft/client/renderer/texture/TextureManager;)V +45010 net/minecraft/client/gui/GuiListExtended (Lnet/minecraft/client/Minecraft;IIIII)V +45011 net/minecraft/client/gui/GuiOptionButton (IIILjava/lang/String;)V +45013 net/minecraft/client/gui/GuiOptionButton (IIILnet/minecraft/client/settings/GameSettings$Options;Ljava/lang/String;)V +45014 net/minecraft/client/gui/GuiOptionsRowList$Row (Lnet/minecraft/client/gui/GuiButton;Lnet/minecraft/client/gui/GuiButton;)V +45015 net/minecraft/client/gui/GuiOptionsRowList (Lnet/minecraft/client/Minecraft;IIIII[Lnet/minecraft/client/settings/GameSettings$Options;)V +45016 net/minecraft/client/gui/GuiOptionSlider (IIILnet/minecraft/client/settings/GameSettings$Options;)V +45017 net/minecraft/client/gui/GuiOptionSlider (IIILnet/minecraft/client/settings/GameSettings$Options;FF)V +45018 net/minecraft/client/multiplayer/GuiConnecting$1 (Lnet/minecraft/client/multiplayer/GuiConnecting;Ljava/lang/String;Ljava/lang/String;I)V +45019 net/minecraft/client/gui/GuiCreateFlatWorld$Details (Lnet/minecraft/client/gui/GuiCreateFlatWorld;)V +45020 net/minecraft/client/gui/GuiDisconnected (Lnet/minecraft/client/gui/GuiScreen;Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;)V +45025 net/minecraft/client/gui/GuiScreenOptionsSounds (Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/client/settings/GameSettings;)V +45028 net/minecraft/client/gui/GuiKeyBindingList$CategoryEntry (Lnet/minecraft/client/gui/GuiKeyBindingList;Ljava/lang/String;)V +45029 net/minecraft/client/gui/GuiKeyBindingList$KeyEntry (Lnet/minecraft/client/gui/GuiKeyBindingList;Lnet/minecraft/client/settings/KeyBinding;)V +45030 net/minecraft/client/gui/GuiKeyBindingList$KeyEntry (Lnet/minecraft/client/gui/GuiKeyBindingList;Lnet/minecraft/client/settings/KeyBinding;Lnet/minecraft/client/gui/GuiKeyBindingList$1;)V +45031 net/minecraft/client/gui/GuiKeyBindingList (Lnet/minecraft/client/gui/GuiControls;Lnet/minecraft/client/Minecraft;)V +45047 net/minecraft/client/gui/ServerListEntryNormal$1 (Lnet/minecraft/client/gui/ServerListEntryNormal;)V +45048 net/minecraft/client/gui/ServerListEntryNormal (Lnet/minecraft/client/gui/GuiMultiplayer;Lnet/minecraft/client/multiplayer/ServerData;)V +45049 net/minecraft/client/gui/ServerSelectionList (Lnet/minecraft/client/gui/GuiMultiplayer;Lnet/minecraft/client/Minecraft;IIIII)V +45050 net/minecraft/client/gui/GuiScreenResourcePacks (Lnet/minecraft/client/gui/GuiScreen;)V +45051 net/minecraft/client/resources/ResourcePackListEntry (Lnet/minecraft/client/gui/GuiScreenResourcePacks;)V +45052 net/minecraft/client/resources/ResourcePackListEntryDefault (Lnet/minecraft/client/gui/GuiScreenResourcePacks;)V +45053 net/minecraft/client/resources/ResourcePackListEntryFound (Lnet/minecraft/client/gui/GuiScreenResourcePacks;Lnet/minecraft/client/resources/ResourcePackRepository$Entry;)V +45054 net/minecraft/client/gui/GuiResourcePackAvailable (Lnet/minecraft/client/Minecraft;IILjava/util/List;)V +45055 net/minecraft/client/gui/GuiResourcePackList (Lnet/minecraft/client/Minecraft;IILjava/util/List;)V +45056 net/minecraft/client/gui/GuiResourcePackSelected (Lnet/minecraft/client/Minecraft;IILjava/util/List;)V +45058 net/minecraft/client/network/NetHandlerLoginClient$1 (Lnet/minecraft/client/network/NetHandlerLoginClient;Ljavax/crypto/SecretKey;)V +45059 net/minecraft/client/network/NetHandlerLoginClient (Lnet/minecraft/network/NetworkManager;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiScreen;)V +45062 net/minecraft/client/multiplayer/PlayerControllerMP (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/network/NetHandlerPlayClient;)V +45063 net/minecraft/client/multiplayer/WorldClient (Lnet/minecraft/client/network/NetHandlerPlayClient;Lnet/minecraft/world/WorldSettings;ILnet/minecraft/world/EnumDifficulty;Lnet/minecraft/profiler/Profiler;)V +45066 net/minecraft/client/network/ServerPinger$2$1 (Lnet/minecraft/client/network/ServerPinger$2;)V +45067 net/minecraft/client/network/ServerPinger$2 (Lnet/minecraft/client/network/ServerPinger;Lnet/minecraft/client/multiplayer/ServerAddress;Lnet/minecraft/client/multiplayer/ServerData;)V +45068 net/minecraft/client/particle/ParticleManager$1 (Lnet/minecraft/client/particle/ParticleManager;Lnet/minecraft/client/particle/Particle;)V +45069 net/minecraft/client/particle/ParticleManager$2 (Lnet/minecraft/client/particle/ParticleManager;I)V +45070 net/minecraft/client/particle/ParticleManager$3 (Lnet/minecraft/client/particle/ParticleManager;Lnet/minecraft/client/particle/Particle;)V +45071 net/minecraft/client/particle/ParticleManager$4 (Lnet/minecraft/client/particle/ParticleManager;I)V +45073 net/minecraft/client/particle/ParticleWaterWake (Lnet/minecraft/world/World;DDDDDD)V +45074 net/minecraft/client/entity/AbstractClientPlayer (Lnet/minecraft/world/World;Lcom/mojang/authlib/GameProfile;)V +45075 net/minecraft/client/entity/EntityOtherPlayerMP (Lnet/minecraft/world/World;Lcom/mojang/authlib/GameProfile;)V +45076 net/minecraft/client/renderer/EntityRenderer (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/resources/IResourceManager;)V +45078 net/minecraft/client/shader/Framebuffer (IIZ)V +45080 net/minecraft/client/renderer/RenderItem$1 (Lnet/minecraft/client/renderer/RenderItem;Lnet/minecraft/item/ItemStack;)V +45082 net/minecraft/client/renderer/RenderItem$2 (Lnet/minecraft/client/renderer/RenderItem;Lnet/minecraft/item/ItemStack;)V +45083 net/minecraft/client/renderer/RenderItem$3 (Lnet/minecraft/client/renderer/RenderItem;Lnet/minecraft/item/ItemStack;)V +45084 net/minecraft/client/util/JsonBlendingMode (ZZIIIII)V +45085 net/minecraft/client/util/JsonBlendingMode (III)V +45086 net/minecraft/client/util/JsonBlendingMode (IIIII)V +45087 net/minecraft/client/shader/ShaderManager (Lnet/minecraft/client/resources/IResourceManager;Ljava/lang/String;)V +45089 net/minecraft/client/shader/Shader (Lnet/minecraft/client/resources/IResourceManager;Ljava/lang/String;Lnet/minecraft/client/shader/Framebuffer;Lnet/minecraft/client/shader/Framebuffer;)V +45090 net/minecraft/client/shader/ShaderLoader$ShaderType (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;I)V +45091 net/minecraft/client/shader/ShaderLoader (Lnet/minecraft/client/shader/ShaderLoader$ShaderType;ILjava/lang/String;)V +45092 net/minecraft/client/shader/ShaderUniform (Ljava/lang/String;IILnet/minecraft/client/shader/ShaderManager;)V +45093 net/minecraft/client/renderer/ThreadDownloadImageData$1 (Lnet/minecraft/client/renderer/ThreadDownloadImageData;Ljava/lang/String;)V +45094 net/minecraft/client/renderer/texture/Stitcher$Holder (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;I)V +45096 net/minecraft/client/renderer/texture/TextureMap$1 (Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +45097 net/minecraft/client/renderer/texture/TextureMap$2 (Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +45098 net/minecraft/client/renderer/texture/TextureMap$3 (Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +45099 net/minecraft/client/renderer/texture/TextureAtlasSprite$1 (Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;[[I)V +45101 net/minecraft/client/resources/ResourcePackRepository (Ljava/io/File;Ljava/io/File;Lnet/minecraft/client/resources/IResourcePack;Lnet/minecraft/client/resources/data/MetadataSerializer;Lnet/minecraft/client/settings/GameSettings;)V +45105 net/minecraft/client/audio/MovingSoundMinecart (Lnet/minecraft/entity/item/EntityMinecart;)V +45106 net/minecraft/client/audio/MovingSoundMinecartRiding (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/item/EntityMinecart;)V +45110 net/minecraft/client/audio/ISound$AttenuationType (Ljava/lang/String;II)V +45112 net/minecraft/client/audio/MusicTicker (Lnet/minecraft/client/Minecraft;)V +45115 net/minecraft/client/audio/SoundManager$2$1 (Lnet/minecraft/client/audio/SoundManager$2;Ljava/net/URL;)V +45116 net/minecraft/client/audio/SoundManager$2 (Lnet/minecraft/util/ResourceLocation;)V +45117 net/minecraft/client/audio/SoundManager$SoundSystemStarterThread (Lnet/minecraft/client/audio/SoundManager;)V +45118 net/minecraft/client/audio/SoundManager$SoundSystemStarterThread (Lnet/minecraft/client/audio/SoundManager;Lnet/minecraft/client/audio/SoundManager$1;)V +45119 net/minecraft/client/audio/SoundManager (Lnet/minecraft/client/audio/SoundHandler;Lnet/minecraft/client/settings/GameSettings;)V +45122 net/minecraft/client/audio/SoundHandler (Lnet/minecraft/client/resources/IResourceManager;Lnet/minecraft/client/settings/GameSettings;)V +45125 net/minecraft/crash/CrashReportCategory$1 (ILnet/minecraft/block/Block;)V +45128 net/minecraft/nbt/NBTTagByteArray ([B)V +45129 net/minecraft/nbt/NBTTagByte (B)V +45130 net/minecraft/nbt/NBTTagDouble (D)V +45131 net/minecraft/nbt/NBTTagFloat (F)V +45132 net/minecraft/nbt/NBTTagIntArray ([I)V +45133 net/minecraft/nbt/NBTTagInt (I)V +45134 net/minecraft/nbt/NBTTagLong (J)V +45135 net/minecraft/nbt/NBTTagShort (S)V +45140 net/minecraft/network/NettyEncryptionTranslator (Ljavax/crypto/Cipher;)V +45141 net/minecraft/network/NettyEncryptingDecoder (Ljavax/crypto/Cipher;)V +45142 net/minecraft/network/NettyEncryptingEncoder (Ljavax/crypto/Cipher;)V +45146 net/minecraft/network/NetworkManager$InboundHandlerTuplePacketListener (Lnet/minecraft/network/Packet;[Lio/netty/util/concurrent/GenericFutureListener;)V +45152 net/minecraft/network/EnumConnectionState (Ljava/lang/String;II)V +45154 net/minecraft/network/PacketBuffer (Lio/netty/buffer/ByteBuf;)V +45155 net/minecraft/util/text/event/ClickEvent$Action (Ljava/lang/String;ILjava/lang/String;Z)V +45156 net/minecraft/util/text/event/ClickEvent (Lnet/minecraft/util/text/event/ClickEvent$Action;Ljava/lang/String;)V +45157 net/minecraft/util/text/event/HoverEvent$Action (Ljava/lang/String;ILjava/lang/String;Z)V +45158 net/minecraft/util/text/event/HoverEvent (Lnet/minecraft/util/text/event/HoverEvent$Action;Lnet/minecraft/util/text/ITextComponent;)V +45159 net/minecraft/util/text/TextComponentString (Ljava/lang/String;)V +45160 net/minecraft/util/text/TextComponentTranslation (Ljava/lang/String;[Ljava/lang/Object;)V +45161 net/minecraft/util/text/TextComponentTranslationFormatException (Lnet/minecraft/util/text/TextComponentTranslation;Ljava/lang/String;)V +45162 net/minecraft/util/text/TextComponentTranslationFormatException (Lnet/minecraft/util/text/TextComponentTranslation;I)V +45163 net/minecraft/util/text/TextComponentTranslationFormatException (Lnet/minecraft/util/text/TextComponentTranslation;Ljava/lang/Throwable;)V +45274 net/minecraft/network/ServerStatusResponse$Players (II)V +45275 net/minecraft/network/ServerStatusResponse$Version (Ljava/lang/String;I)V +45278 net/minecraft/client/util/JsonException$Entry (Lnet/minecraft/client/util/JsonException$1;)V +45279 net/minecraft/client/util/JsonException (Ljava/lang/String;)V +45280 net/minecraft/client/util/JsonException (Ljava/lang/String;Ljava/lang/Throwable;)V +45281 net/minecraft/server/gui/MinecraftServerGui$4 (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;)V +45285 net/minecraft/entity/player/EntityPlayerMP (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/WorldServer;Lcom/mojang/authlib/GameProfile;Lnet/minecraft/server/management/PlayerInteractionManager;)V +45286 net/minecraft/network/LegacyPingHandler (Lnet/minecraft/network/NetworkSystem;)V +45287 net/minecraft/client/network/NetHandlerHandshakeMemory (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45292 net/minecraft/network/NetworkSystem (Lnet/minecraft/server/MinecraftServer;)V +45295 net/minecraft/server/network/NetHandlerHandshakeTCP (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45297 net/minecraft/server/network/NetHandlerLoginServer$LoginState (Ljava/lang/String;I)V +45298 net/minecraft/server/network/NetHandlerLoginServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45299 net/minecraft/server/network/NetHandlerStatusServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/network/NetworkManager;)V +45300 net/minecraft/network/rcon/RConThreadBase (Lnet/minecraft/network/rcon/IServer;Ljava/lang/String;)V +45303 net/minecraft/stats/StatBasic (Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/stats/IStatType;)V +45304 net/minecraft/stats/StatBasic (Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;)V +45306 net/minecraft/stats/StatisticsManagerServer (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;)V +45307 net/minecraft/stats/StatBase (Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/stats/IStatType;)V +45308 net/minecraft/stats/StatBase (Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;)V +45310 net/minecraft/util/EnumTypeAdapterFactory$1 (Lnet/minecraft/util/EnumTypeAdapterFactory;Ljava/util/Map;)V +45312 net/minecraft/world/EnumDifficulty (Ljava/lang/String;IILjava/lang/String;)V +45314 net/minecraft/entity/ai/EntityAIEatGrass (Lnet/minecraft/entity/EntityLiving;)V +45315 net/minecraft/entity/ai/EntityAIOcelotSit (Lnet/minecraft/entity/passive/EntityOcelot;D)V +45316 net/minecraft/entity/ai/EntityAITempt (Lnet/minecraft/entity/EntityCreature;DLnet/minecraft/item/Item;Z)V +45323 net/minecraft/entity/player/EntityPlayer$EnumChatVisibility (Ljava/lang/String;IILjava/lang/String;)V +45324 net/minecraft/entity/player/EntityPlayer (Lnet/minecraft/world/World;Lcom/mojang/authlib/GameProfile;)V +45327 net/minecraft/item/ItemAxe (Lnet/minecraft/item/Item$ToolMaterial;)V +45328 net/minecraft/item/ItemBlock (Lnet/minecraft/block/Block;)V +45329 net/minecraft/item/ItemBlockSpecial (Lnet/minecraft/block/Block;)V +45330 net/minecraft/item/ItemSoup (I)V +45331 net/minecraft/item/ItemBucket (Lnet/minecraft/block/Block;)V +45332 net/minecraft/item/ItemColored (Lnet/minecraft/block/Block;Z)V +45336 net/minecraft/item/ItemFishFood$FishType (Ljava/lang/String;IILjava/lang/String;IFIF)V +45337 net/minecraft/item/ItemFishFood$FishType (Ljava/lang/String;IILjava/lang/String;IF)V +45338 net/minecraft/item/ItemFishFood (Z)V +45339 net/minecraft/item/ItemFood (IFZ)V +45340 net/minecraft/item/ItemFood (IZ)V +45341 net/minecraft/item/ItemAppleGold (IFZ)V +45342 net/minecraft/item/ItemHangingEntity (Ljava/lang/Class;)V +45343 net/minecraft/item/ItemHoe (Lnet/minecraft/item/Item$ToolMaterial;)V +45344 net/minecraft/item/ItemLeaves (Lnet/minecraft/block/BlockLeaves;)V +45346 net/minecraft/item/ItemMultiTexture (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;[Ljava/lang/String;)V +45347 net/minecraft/item/ItemPickaxe (Lnet/minecraft/item/Item$ToolMaterial;)V +45348 net/minecraft/item/ItemPiston (Lnet/minecraft/block/Block;)V +45349 net/minecraft/item/EnumRarity (Ljava/lang/String;ILnet/minecraft/util/text/TextFormatting;Ljava/lang/String;)V +45351 net/minecraft/item/ItemSeedFood (IFLnet/minecraft/block/Block;Lnet/minecraft/block/Block;)V +45352 net/minecraft/item/ItemSeeds (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;)V +45353 net/minecraft/item/ItemSpade (Lnet/minecraft/item/Item$ToolMaterial;)V +45356 net/minecraft/item/ItemSword (Lnet/minecraft/item/Item$ToolMaterial;)V +45357 net/minecraft/item/ItemLilyPad (Lnet/minecraft/block/Block;)V +45358 net/minecraft/item/ItemCloth (Lnet/minecraft/block/Block;)V +45359 net/minecraft/enchantment/EnchantmentHelper$DamageIterator (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +45360 net/minecraft/enchantment/EnchantmentHelper$HurtIterator (Lnet/minecraft/enchantment/EnchantmentHelper$1;)V +45366 net/minecraft/world/World$2 (Lnet/minecraft/world/World;Lnet/minecraft/block/Block;)V +45367 net/minecraft/world/World$4 (Lnet/minecraft/world/World;)V +45372 net/minecraft/world/biome/Biome$TempCategory (Ljava/lang/String;I)V +45386 net/minecraft/block/BlockContainer (Lnet/minecraft/block/material/Material;)V +45389 net/minecraft/block/BlockRailBase (Z)V +45394 net/minecraft/block/Block (Lnet/minecraft/block/material/Material;)V +45395 net/minecraft/block/BlockBush (Lnet/minecraft/block/material/Material;)V +45396 net/minecraft/block/BlockButton (Z)V +45398 net/minecraft/block/BlockColored (Lnet/minecraft/block/material/Material;)V +45399 net/minecraft/block/BlockRedstoneComparator (Z)V +45400 net/minecraft/block/BlockRedstoneDiode (Z)V +45401 net/minecraft/block/BlockDirectional (Lnet/minecraft/block/material/Material;)V +45402 net/minecraft/block/BlockDoor (Lnet/minecraft/block/material/Material;)V +45403 net/minecraft/block/BlockDynamicLiquid (Lnet/minecraft/block/material/Material;)V +45404 net/minecraft/block/BlockEndPortal (Lnet/minecraft/block/material/Material;)V +45405 net/minecraft/block/BlockFalling (Lnet/minecraft/block/material/Material;)V +45407 net/minecraft/block/BlockFurnace (Z)V +45408 net/minecraft/block/BlockGlass (Lnet/minecraft/block/material/Material;Z)V +45409 net/minecraft/block/BlockGlowstone (Lnet/minecraft/block/material/Material;)V +45413 net/minecraft/block/BlockLiquid (Lnet/minecraft/block/material/Material;)V +45417 net/minecraft/block/BlockPressurePlate$Sensitivity (Ljava/lang/String;I)V +45420 net/minecraft/block/BlockRedstoneOre (Z)V +45421 net/minecraft/block/BlockRedstoneLight (Z)V +45423 net/minecraft/block/BlockRedstoneTorch (Z)V +45424 net/minecraft/block/BlockRedstoneRepeater (Z)V +45425 net/minecraft/block/BlockRotatedPillar (Lnet/minecraft/block/material/Material;)V +45427 net/minecraft/block/BlockStainedGlass (Lnet/minecraft/block/material/Material;)V +45429 net/minecraft/block/BlockStaticLiquid (Lnet/minecraft/block/material/Material;)V +45430 net/minecraft/block/BlockStem (Lnet/minecraft/block/Block;)V +45434 net/minecraft/block/BlockTrapDoor (Lnet/minecraft/block/material/Material;)V +45435 net/minecraft/block/BlockWall (Lnet/minecraft/block/Block;)V +45438 net/minecraft/tileentity/TileEntity$1 (Lnet/minecraft/tileentity/TileEntity;)V +45439 net/minecraft/tileentity/TileEntity$2 (Lnet/minecraft/tileentity/TileEntity;)V +45440 net/minecraft/tileentity/TileEntity$3 (Lnet/minecraft/tileentity/TileEntity;)V +45441 net/minecraft/tileentity/TileEntityCommandBlock$1 (Lnet/minecraft/tileentity/TileEntityCommandBlock;)V +45442 net/minecraft/tileentity/TileEntityFlowerPot (Lnet/minecraft/item/Item;I)V +45443 net/minecraft/block/BlockPistonBase (Z)V +45445 net/minecraft/world/chunk/Chunk$1 (Lnet/minecraft/world/chunk/Chunk;III)V +45448 net/minecraft/world/gen/feature/WorldGenAbstractTree (Z)V +45449 net/minecraft/world/gen/feature/WorldGenBirchTree (ZZ)V +45450 net/minecraft/world/gen/feature/WorldGenBlockBlob (Lnet/minecraft/block/Block;I)V +45453 net/minecraft/world/gen/feature/WorldGenHellLava (Lnet/minecraft/block/Block;Z)V +45454 net/minecraft/world/gen/feature/WorldGenIcePath (I)V +45455 net/minecraft/world/gen/feature/WorldGenLakes (Lnet/minecraft/block/Block;)V +45457 net/minecraft/world/gen/feature/WorldGenMegaPineTree (ZZ)V +45461 net/minecraft/world/gen/feature/WorldGenCanopyTree (Z)V +45462 net/minecraft/world/gen/feature/WorldGenSand (Lnet/minecraft/block/Block;I)V +45463 net/minecraft/world/gen/feature/WorldGenSavannaTree (Z)V +45465 net/minecraft/world/gen/feature/WorldGenLiquids (Lnet/minecraft/block/Block;)V +45467 net/minecraft/world/gen/FlatLayerInfo (ILnet/minecraft/block/Block;)V +45469 net/minecraft/world/gen/NoiseGeneratorImproved (Ljava/util/Random;)V +45470 net/minecraft/world/gen/NoiseGeneratorPerlin (Ljava/util/Random;I)V +45471 net/minecraft/world/gen/NoiseGeneratorSimplex (Ljava/util/Random;)V +45472 net/minecraft/world/gen/layer/GenLayerDeepOcean (JLnet/minecraft/world/gen/layer/GenLayer;)V +45473 net/minecraft/world/gen/layer/GenLayerEdge$Mode (Ljava/lang/String;I)V +45474 net/minecraft/world/gen/layer/GenLayerEdge (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/gen/layer/GenLayerEdge$Mode;)V +45475 net/minecraft/world/gen/layer/GenLayerBiomeEdge (JLnet/minecraft/world/gen/layer/GenLayer;)V +45478 net/minecraft/world/gen/layer/GenLayerRareBiome (JLnet/minecraft/world/gen/layer/GenLayer;)V +45479 net/minecraft/world/gen/layer/GenLayerHills (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/gen/layer/GenLayer;)V +45480 net/minecraft/world/gen/layer/GenLayerRemoveTooMuchOcean (JLnet/minecraft/world/gen/layer/GenLayer;)V +45483 net/minecraft/scoreboard/ScoreCriteriaStat (Lnet/minecraft/stats/StatBase;)V +45487 net/minecraft/client/main/GameConfiguration$ServerInformation (Ljava/lang/String;I)V +45489 net/minecraft/client/main/GameConfiguration$FolderInformation (Ljava/io/File;Ljava/io/File;Ljava/io/File;Ljava/lang/String;)V +45490 net/minecraft/client/main/GameConfiguration$DisplayInformation (IIZZ)V +45491 net/minecraft/client/main/GameConfiguration (Lnet/minecraft/client/main/GameConfiguration$UserInformation;Lnet/minecraft/client/main/GameConfiguration$DisplayInformation;Lnet/minecraft/client/main/GameConfiguration$FolderInformation;Lnet/minecraft/client/main/GameConfiguration$GameInformation;Lnet/minecraft/client/main/GameConfiguration$ServerInformation;)V +45492 net/minecraft/client/gui/spectator/categories/TeleportToTeam$TeamSelectionObject (Lnet/minecraft/client/gui/spectator/categories/TeleportToTeam;Lnet/minecraft/scoreboard/ScorePlayerTeam;)V +45493 net/minecraft/client/gui/spectator/categories/TeleportToPlayer (Ljava/util/Collection;)V +45494 net/minecraft/client/gui/spectator/categories/SpectatorDetails (Lnet/minecraft/client/gui/spectator/ISpectatorMenuView;Ljava/util/List;I)V +45495 net/minecraft/client/gui/spectator/SpectatorMenu$MoveMenuObject (IZ)V +45496 net/minecraft/client/gui/spectator/SpectatorMenu$EndSpectatorObject (Lnet/minecraft/client/gui/spectator/SpectatorMenu$1;)V +45497 net/minecraft/client/gui/spectator/SpectatorMenu (Lnet/minecraft/client/gui/spectator/ISpectatorMenuRecipient;)V +45498 net/minecraft/client/gui/spectator/PlayerMenuObject (Lcom/mojang/authlib/GameProfile;)V +45500 net/minecraft/client/gui/GuiMerchant (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/entity/IMerchant;Lnet/minecraft/world/World;)V +45501 net/minecraft/client/gui/inventory/GuiFurnace (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45502 net/minecraft/client/gui/GuiEnchantment (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/world/IWorldNameable;)V +45503 net/minecraft/client/gui/inventory/GuiDispenser (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45504 net/minecraft/client/gui/inventory/GuiCrafting (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;)V +45505 net/minecraft/client/gui/inventory/GuiCrafting (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45506 net/minecraft/client/gui/inventory/GuiBrewingStand (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45507 net/minecraft/client/gui/inventory/GuiBeacon (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45508 net/minecraft/client/gui/GuiRepair (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;)V +45514 net/minecraft/client/gui/GuiCustomizeSkin$ButtonPart (Lnet/minecraft/client/gui/GuiCustomizeSkin;IIIIILnet/minecraft/entity/player/EnumPlayerModelParts;)V +45515 net/minecraft/client/gui/GuiCustomizeSkin$ButtonPart (Lnet/minecraft/client/gui/GuiCustomizeSkin;IIIIILnet/minecraft/entity/player/EnumPlayerModelParts;Lnet/minecraft/client/gui/GuiCustomizeSkin$1;)V +45516 net/minecraft/client/gui/GuiCustomizeSkin (Lnet/minecraft/client/gui/GuiScreen;)V +45518 net/minecraft/client/gui/GuiFlatPresets$LayerItem (Lnet/minecraft/item/Item;ILjava/lang/String;Ljava/lang/String;)V +45519 net/minecraft/client/gui/GuiLanguage$List (Lnet/minecraft/client/gui/GuiLanguage;Lnet/minecraft/client/Minecraft;)V +45520 net/minecraft/client/gui/GuiCustomizeWorldScreen$1 (Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;)V +45521 net/minecraft/client/gui/GuiCustomizeWorldScreen (Lnet/minecraft/client/gui/GuiScreen;Ljava/lang/String;)V +45522 net/minecraft/client/gui/GuiScreenCustomizePresets$ListPreset (Lnet/minecraft/client/gui/GuiScreenCustomizePresets;)V +45523 net/minecraft/client/gui/GuiScreenCustomizePresets$Info (Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/world/gen/ChunkGeneratorSettings$Factory;)V +45524 net/minecraft/client/gui/GuiScreenCustomizePresets (Lnet/minecraft/client/gui/GuiCustomizeWorldScreen;)V +45525 net/minecraft/client/gui/GuiSimpleScrolledSelectionListProxy (Lnet/minecraft/realms/RealmsSimpleScrolledSelectionList;IIIII)V +45526 net/minecraft/client/gui/GuiClickableScrolledSelectionListProxy (Lnet/minecraft/realms/RealmsClickableScrolledSelectionList;IIIII)V +45527 net/minecraft/client/gui/GuiSpectator (Lnet/minecraft/client/Minecraft;)V +45528 net/minecraft/client/gui/GuiPlayerTabOverlay$PlayerComparator (Lnet/minecraft/client/gui/GuiPlayerTabOverlay$1;)V +45529 net/minecraft/client/gui/GuiPlayerTabOverlay (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiIngame;)V +45530 net/minecraft/client/gui/GuiPageButtonList$GuiSlideEntry (ILjava/lang/String;ZLnet/minecraft/client/gui/GuiSlider$FormatHelper;FFF)V +45531 net/minecraft/client/gui/GuiPageButtonList$GuiListEntry (ILjava/lang/String;Z)V +45532 net/minecraft/client/gui/GuiPageButtonList$GuiLabelEntry (ILjava/lang/String;Z)V +45533 net/minecraft/client/gui/GuiPageButtonList$GuiEntry (Lnet/minecraft/client/gui/Gui;Lnet/minecraft/client/gui/Gui;)V +45534 net/minecraft/client/gui/GuiPageButtonList$EditBoxEntry (ILjava/lang/String;ZLcom/google/common/base/Predicate;)V +45535 net/minecraft/client/gui/GuiPageButtonList$GuiButtonEntry (ILjava/lang/String;ZZ)V +45536 net/minecraft/client/gui/GuiPageButtonList (Lnet/minecraft/client/Minecraft;IIIIILnet/minecraft/client/gui/GuiPageButtonList$GuiResponder;[[Lnet/minecraft/client/gui/GuiPageButtonList$GuiListEntry;)V +45537 net/minecraft/client/gui/GuiLockIconButton$Icon (Ljava/lang/String;III)V +45538 net/minecraft/client/gui/GuiLockIconButton (III)V +45539 net/minecraft/client/gui/GuiListButton (Lnet/minecraft/client/gui/GuiPageButtonList$GuiResponder;IIILjava/lang/String;Z)V +45540 net/minecraft/client/gui/GuiLabel (Lnet/minecraft/client/gui/FontRenderer;IIIIII)V +45541 net/minecraft/client/gui/GuiSlider (Lnet/minecraft/client/gui/GuiPageButtonList$GuiResponder;IIILjava/lang/String;FFFLnet/minecraft/client/gui/GuiSlider$FormatHelper;)V +45542 net/minecraft/client/gui/GuiTextField (ILnet/minecraft/client/gui/FontRenderer;IIII)V +45543 net/minecraft/client/gui/GuiOverlayDebug (Lnet/minecraft/client/Minecraft;)V +45544 net/minecraft/client/gui/GuiIngame$1 (Lnet/minecraft/client/gui/GuiIngame;)V +45547 net/minecraft/client/Minecraft (Lnet/minecraft/client/main/GameConfiguration;)V +45548 net/minecraft/scoreboard/IScoreCriteria$EnumRenderType (Ljava/lang/String;ILjava/lang/String;)V +45549 net/minecraft/scoreboard/ScoreCriteriaColored (Ljava/lang/String;Lnet/minecraft/util/text/TextFormatting;)V +45550 net/minecraft/scoreboard/Team$EnumVisible (Ljava/lang/String;ILjava/lang/String;I)V +45554 net/minecraft/util/math/AxisAlignedBB (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/BlockPos;)V +45560 net/minecraft/world/gen/layer/GenLayerBiome (JLnet/minecraft/world/gen/layer/GenLayer;Lnet/minecraft/world/WorldType;Lnet/minecraft/world/gen/ChunkGeneratorSettings;)V +45561 net/minecraft/world/gen/structure/StructureVillagePieces$House3 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45562 net/minecraft/world/gen/structure/StructureVillagePieces$Path (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45563 net/minecraft/world/gen/structure/StructureVillagePieces$House2 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45564 net/minecraft/world/gen/structure/StructureVillagePieces$Church (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45565 net/minecraft/world/gen/structure/StructureVillagePieces$WoodHut (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45566 net/minecraft/world/gen/structure/StructureVillagePieces$House4Garden (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45567 net/minecraft/world/gen/structure/StructureVillagePieces$Hall (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45568 net/minecraft/world/gen/structure/StructureVillagePieces$Torch (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45569 net/minecraft/world/gen/structure/StructureVillagePieces$Field2 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45570 net/minecraft/world/gen/structure/StructureVillagePieces$Field1 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45571 net/minecraft/world/gen/structure/StructureVillagePieces$House1 (Lnet/minecraft/world/gen/structure/StructureVillagePieces$Start;ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45572 net/minecraft/world/gen/structure/StructureStrongholdPieces$StairsStraight (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45573 net/minecraft/world/gen/structure/StructureStrongholdPieces$Straight (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45574 net/minecraft/world/gen/structure/StructureStrongholdPieces$Stairs (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45575 net/minecraft/world/gen/structure/StructureStrongholdPieces$RoomCrossing (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45576 net/minecraft/world/gen/structure/StructureStrongholdPieces$Prison (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45577 net/minecraft/world/gen/structure/StructureStrongholdPieces$PortalRoom (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45578 net/minecraft/world/gen/structure/StructureStrongholdPieces$Library (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45579 net/minecraft/world/gen/structure/StructureStrongholdPieces$LeftTurn (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45580 net/minecraft/world/gen/structure/StructureStrongholdPieces$Crossing (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45581 net/minecraft/world/gen/structure/StructureStrongholdPieces$Corridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45582 net/minecraft/world/gen/structure/StructureStrongholdPieces$ChestCorridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45584 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition (I)V +45585 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$WingRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureBoundingBox;I)V +45586 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$SimpleTopRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45587 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$SimpleRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45588 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece (I)V +45589 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureBoundingBox;)V +45590 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Piece (ILnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;III)V +45591 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$Penthouse (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureBoundingBox;)V +45592 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$EntryRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;)V +45593 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleZRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45594 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleYZRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45595 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleYRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45596 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleXYRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45597 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$DoubleXRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45598 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentCoreRoom (Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$RoomDefinition;Ljava/util/Random;)V +45599 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$MonumentBuilding (Ljava/util/Random;IILnet/minecraft/util/EnumFacing;)V +45607 net/minecraft/world/gen/structure/StructureOceanMonument$StartMonument (Lnet/minecraft/world/World;Ljava/util/Random;II)V +45608 net/minecraft/world/gen/structure/StructureOceanMonument (Ljava/util/Map;)V +45609 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Stairs (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45610 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45611 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Throne (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45612 net/minecraft/world/gen/structure/StructureNetherBridgePieces$NetherStalkRoom (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45613 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor2 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45614 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor5 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45615 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45616 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing2 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45617 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Entrance (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45618 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor4 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45619 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Corridor3 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45620 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Straight (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45621 net/minecraft/world/gen/structure/StructureNetherBridgePieces$End (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45622 net/minecraft/world/gen/structure/StructureNetherBridgePieces$Crossing3 (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;)V +45626 net/minecraft/world/gen/structure/StructureBoundingBox (Lnet/minecraft/util/math/Vec3i;Lnet/minecraft/util/math/Vec3i;)V +45627 net/minecraft/world/gen/FlatLayerInfo (IILnet/minecraft/block/Block;)V +45628 net/minecraft/world/gen/FlatLayerInfo (IILnet/minecraft/block/Block;I)V +45629 net/minecraft/world/gen/feature/WorldGenTallGrass (Lnet/minecraft/block/BlockTallGrass$EnumType;)V +45630 net/minecraft/world/gen/feature/WorldGenMinable (Lnet/minecraft/block/state/IBlockState;I)V +45631 net/minecraft/world/gen/feature/WorldGenMinable (Lnet/minecraft/block/state/IBlockState;ILcom/google/common/base/Predicate;)V +45632 net/minecraft/world/gen/feature/WorldGenFlowers (Lnet/minecraft/block/BlockFlower;Lnet/minecraft/block/BlockFlower$EnumFlowerType;)V +45633 net/minecraft/world/gen/feature/WorldGenBush (Lnet/minecraft/block/BlockBush;)V +45635 net/minecraft/world/gen/feature/WorldGenBigTree$FoliageCoordinates (Lnet/minecraft/util/math/BlockPos;I)V +45637 net/minecraft/world/gen/ChunkGeneratorHell (Lnet/minecraft/world/World;ZJ)V +45638 net/minecraft/world/gen/ChunkGeneratorDebug (Lnet/minecraft/world/World;)V +45639 net/minecraft/world/gen/ChunkGeneratorSettings (Lnet/minecraft/world/gen/ChunkGeneratorSettings$Factory;)V +45640 net/minecraft/world/gen/ChunkGeneratorSettings (Lnet/minecraft/world/gen/ChunkGeneratorSettings$Factory;Lnet/minecraft/world/gen/ChunkGeneratorSettings$1;)V +45641 net/minecraft/world/WorldProviderHell$1 (Lnet/minecraft/world/WorldProviderHell;)V +45642 net/minecraft/world/chunk/Chunk$EnumCreateEntityType (Ljava/lang/String;I)V +45645 net/minecraft/world/chunk/Chunk (Lnet/minecraft/world/World;Lnet/minecraft/world/chunk/ChunkPrimer;II)V +45646 net/minecraft/world/chunk/NibbleArray ([B)V +45647 net/minecraft/world/border/EnumBorderStatus (Ljava/lang/String;II)V +45648 net/minecraft/block/properties/PropertyInteger (Ljava/lang/String;II)V +45649 net/minecraft/block/properties/PropertyEnum (Ljava/lang/String;Ljava/lang/Class;Ljava/util/Collection;)V +45650 net/minecraft/block/properties/PropertyDirection (Ljava/lang/String;Ljava/util/Collection;)V +45651 net/minecraft/block/properties/PropertyBool (Ljava/lang/String;)V +45652 net/minecraft/block/properties/PropertyHelper (Ljava/lang/String;Ljava/lang/Class;)V +45653 net/minecraft/block/state/pattern/BlockStateMatcher (Lnet/minecraft/block/state/BlockStateContainer;)V +45654 net/minecraft/block/state/pattern/BlockMatcher (Lnet/minecraft/block/Block;)V +45657 net/minecraft/block/state/pattern/BlockPattern ([[[Lcom/google/common/base/Predicate;)V +45658 net/minecraft/block/state/BlockWorldState$1 (Lcom/google/common/base/Predicate;)V +45660 net/minecraft/block/state/BlockStateContainer$StateImplementation (Lnet/minecraft/block/Block;Lcom/google/common/collect/ImmutableMap;)V +45661 net/minecraft/block/state/BlockStateContainer$StateImplementation (Lnet/minecraft/block/Block;Lcom/google/common/collect/ImmutableMap;Lnet/minecraft/block/state/BlockStateContainer$1;)V +45663 net/minecraft/block/state/BlockStateContainer (Lnet/minecraft/block/Block;[Lnet/minecraft/block/properties/IProperty;)V +45664 net/minecraft/block/state/BlockPistonStructureHelper (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Z)V +45665 net/minecraft/tileentity/TileEntityPiston (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/util/EnumFacing;ZZ)V +45666 net/minecraft/block/BlockPistonExtension$EnumPistonType (Ljava/lang/String;ILjava/lang/String;)V +45667 net/minecraft/tileentity/TileEntitySign$2 (Lnet/minecraft/tileentity/TileEntitySign;Lnet/minecraft/entity/player/EntityPlayer;)V +45669 net/minecraft/tileentity/TileEntityBeacon$BeamSegment ([F)V +45673 net/minecraft/block/BlockWall$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45674 net/minecraft/block/BlockTrapDoor$DoorHalf (Ljava/lang/String;ILjava/lang/String;)V +45675 net/minecraft/block/BlockPane (Lnet/minecraft/block/material/Material;Z)V +45676 net/minecraft/block/BlockTallGrass$EnumType (Ljava/lang/String;IILjava/lang/String;)V +45679 net/minecraft/block/BlockStoneBrick$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45682 net/minecraft/block/BlockStairs$EnumShape (Ljava/lang/String;ILjava/lang/String;)V +45683 net/minecraft/block/BlockStairs$EnumHalf (Ljava/lang/String;ILjava/lang/String;)V +45684 net/minecraft/block/BlockStairs (Lnet/minecraft/block/state/IBlockState;)V +45685 net/minecraft/block/BlockSeaLantern (Lnet/minecraft/block/material/Material;)V +45686 net/minecraft/block/BlockSandStone$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45688 net/minecraft/block/BlockRedstoneTorch$Toggle (Lnet/minecraft/util/math/BlockPos;J)V +45689 net/minecraft/block/BlockRedstoneWire$EnumAttachPosition (Ljava/lang/String;ILjava/lang/String;)V +45690 net/minecraft/block/BlockRedSandstone$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45691 net/minecraft/block/BlockQuartz$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45692 net/minecraft/block/BlockPrismarine$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45693 net/minecraft/block/BlockPressurePlate (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/BlockPressurePlate$Sensitivity;)V +45694 net/minecraft/block/BlockPortal$Size (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing$Axis;)V +45698 net/minecraft/block/BlockSilverfish$EnumType$6 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45699 net/minecraft/block/BlockSilverfish$EnumType$5 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45700 net/minecraft/block/BlockSilverfish$EnumType$4 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45701 net/minecraft/block/BlockSilverfish$EnumType$3 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45702 net/minecraft/block/BlockSilverfish$EnumType$2 (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45703 net/minecraft/block/BlockSilverfish$EnumType$1 (Ljava/lang/String;IILjava/lang/String;)V +45704 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;)V +45705 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45708 net/minecraft/block/BlockLog$EnumAxis (Ljava/lang/String;ILjava/lang/String;)V +45709 net/minecraft/block/BlockLever$EnumOrientation (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/util/EnumFacing;)V +45710 net/minecraft/block/BlockHugeMushroom$EnumType (Ljava/lang/String;IILjava/lang/String;)V +45712 net/minecraft/block/BlockBreakable (Lnet/minecraft/block/material/Material;Z)V +45713 net/minecraft/block/BlockSlab$EnumBlockHalf (Ljava/lang/String;ILjava/lang/String;)V +45714 net/minecraft/block/BlockSlab (Lnet/minecraft/block/material/Material;)V +45715 net/minecraft/block/BlockFlowerPot$EnumFlowerType (Ljava/lang/String;ILjava/lang/String;)V +45716 net/minecraft/block/BlockFlower$EnumFlowerColor (Ljava/lang/String;I)V +45717 net/minecraft/block/BlockFlower$EnumFlowerType$1 (Lnet/minecraft/block/BlockFlower$EnumFlowerColor;)V +45718 net/minecraft/block/BlockFlower$EnumFlowerType (Ljava/lang/String;ILnet/minecraft/block/BlockFlower$EnumFlowerColor;ILjava/lang/String;)V +45719 net/minecraft/block/BlockFlower$EnumFlowerType (Ljava/lang/String;ILnet/minecraft/block/BlockFlower$EnumFlowerColor;ILjava/lang/String;Ljava/lang/String;)V +45720 net/minecraft/block/BlockFlower$1 (Lnet/minecraft/block/BlockFlower;)V +45722 net/minecraft/block/BlockDoublePlant$EnumPlantType (Ljava/lang/String;IILjava/lang/String;)V +45723 net/minecraft/block/BlockDoublePlant$EnumPlantType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +45724 net/minecraft/block/BlockDoublePlant$EnumBlockHalf (Ljava/lang/String;I)V +45725 net/minecraft/block/BlockDoor$EnumHingePosition (Ljava/lang/String;I)V +45726 net/minecraft/block/BlockDoor$EnumDoorHalf (Ljava/lang/String;I)V +45729 net/minecraft/block/BlockDaylightDetector (Z)V +45730 net/minecraft/block/BlockWorkbench$InterfaceCraftingTable (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45731 net/minecraft/block/BlockRedstoneComparator$Mode (Ljava/lang/String;ILjava/lang/String;)V +45732 net/minecraft/block/BlockRedstoneComparator$1 (Lnet/minecraft/block/BlockRedstoneComparator;Lnet/minecraft/util/EnumFacing;)V +45733 net/minecraft/block/Block$EnumOffsetType (Ljava/lang/String;I)V +45735 net/minecraft/block/BlockBed$EnumPartType (Ljava/lang/String;ILjava/lang/String;)V +45736 net/minecraft/block/BlockBeacon$1$1 (Lnet/minecraft/block/BlockBeacon$1;Lnet/minecraft/util/math/BlockPos;)V +45737 net/minecraft/block/BlockBeacon$1 (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45738 net/minecraft/block/BlockRailBase$EnumRailDirection (Ljava/lang/String;IILjava/lang/String;)V +45739 net/minecraft/block/BlockRailBase$Rail (Lnet/minecraft/block/BlockRailBase;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;)V +45740 net/minecraft/block/BlockBasePressurePlate (Lnet/minecraft/block/material/Material;)V +45741 net/minecraft/block/BlockAnvil$Anvil (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45742 net/minecraft/realms/DisconnectedRealmsScreen (Lnet/minecraft/realms/RealmsScreen;Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;)V +45743 net/minecraft/realms/RealmsEditBox (IIIII)V +45744 net/minecraft/world/biome/BiomeProvider (JLnet/minecraft/world/WorldType;Ljava/lang/String;)V +45745 net/minecraft/world/NextTickListEntry (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/Block;)V +45746 net/minecraft/world/ChunkCache (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/math/BlockPos;I)V +45747 net/minecraft/world/Teleporter$PortalPosition (Lnet/minecraft/world/Teleporter;Lnet/minecraft/util/math/BlockPos;J)V +45748 net/minecraft/world/World$1 (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45749 net/minecraft/world/World (Lnet/minecraft/world/storage/ISaveHandler;Lnet/minecraft/world/storage/WorldInfo;Lnet/minecraft/world/WorldProvider;Lnet/minecraft/profiler/Profiler;Z)V +45750 net/minecraft/world/GameRules$ValueType (Ljava/lang/String;I)V +45751 net/minecraft/world/GameRules$Value (Ljava/lang/String;Lnet/minecraft/world/GameRules$ValueType;)V +45752 net/minecraft/world/Explosion (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;DDDFLjava/util/List;)V +45753 net/minecraft/world/Explosion (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;DDDFZZLjava/util/List;)V +45754 net/minecraft/world/Explosion (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;DDDFZZ)V +45755 net/minecraft/util/BlockRenderLayer (Ljava/lang/String;ILjava/lang/String;)V +45756 net/minecraft/block/BlockEventData (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/Block;II)V +45758 net/minecraft/tileentity/CommandBlockBaseLogic$2 (Lnet/minecraft/tileentity/CommandBlockBaseLogic;)V +45759 net/minecraft/tileentity/CommandBlockBaseLogic$1 (Lnet/minecraft/tileentity/CommandBlockBaseLogic;)V +45760 net/minecraft/village/MerchantRecipe (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;II)V +45781 net/minecraft/item/ItemSnow (Lnet/minecraft/block/Block;)V +45782 net/minecraft/item/ItemSlab (Lnet/minecraft/block/Block;Lnet/minecraft/block/BlockSlab;Lnet/minecraft/block/BlockSlab;)V +45783 net/minecraft/item/ItemMultiTexture$1 ([Ljava/lang/String;)V +45788 net/minecraft/item/ItemDoor (Lnet/minecraft/block/Block;)V +45790 net/minecraft/inventory/SlotCrafting (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/InventoryCrafting;Lnet/minecraft/inventory/IInventory;III)V +45791 net/minecraft/inventory/ContainerHorseInventory (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/passive/AbstractHorse;Lnet/minecraft/entity/player/EntityPlayer;)V +45792 net/minecraft/inventory/ContainerHopper (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/player/EntityPlayer;)V +45793 net/minecraft/inventory/SlotFurnaceOutput (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/inventory/IInventory;III)V +45794 net/minecraft/inventory/ContainerFurnace (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45795 net/minecraft/inventory/SlotFurnaceFuel (Lnet/minecraft/inventory/IInventory;III)V +45796 net/minecraft/inventory/ContainerEnchantment$3 (Lnet/minecraft/inventory/ContainerEnchantment;Lnet/minecraft/inventory/IInventory;III)V +45797 net/minecraft/inventory/ContainerEnchantment (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;)V +45798 net/minecraft/inventory/ContainerEnchantment (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45799 net/minecraft/inventory/ContainerDispenser (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;)V +45800 net/minecraft/inventory/ContainerWorkbench (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45801 net/minecraft/inventory/ContainerChest (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/player/EntityPlayer;)V +45802 net/minecraft/inventory/ContainerBrewingStand (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +45803 net/minecraft/realms/RealmsSimpleScrolledSelectionList (IIIII)V +45804 net/minecraft/inventory/ContainerBeacon (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;)V +45805 net/minecraft/inventory/ContainerRepair$2 (Lnet/minecraft/inventory/ContainerRepair;Lnet/minecraft/inventory/IInventory;IIILnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45806 net/minecraft/inventory/ContainerRepair (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/entity/player/EntityPlayer;)V +45807 net/minecraft/inventory/ContainerRepair (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/EntityPlayer;)V +45809 net/minecraft/entity/player/EnumPlayerModelParts (Ljava/lang/String;IILjava/lang/String;)V +45810 net/minecraft/entity/passive/EntityVillager$PriceInfo (II)V +45811 net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45812 net/minecraft/entity/passive/EntityVillager$ListItemForEmeralds (Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45813 net/minecraft/entity/passive/EntityVillager$ItemAndEmeraldToItem (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45814 net/minecraft/entity/passive/EntityVillager$ListEnchantedItemForEmeralds (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45815 net/minecraft/entity/passive/EntityVillager$EmeraldForItems (Lnet/minecraft/item/Item;Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;)V +45817 net/minecraft/entity/NpcMerchant (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/text/ITextComponent;)V +45818 net/minecraft/entity/monster/EntitySpider$AISpiderTarget (Lnet/minecraft/entity/monster/EntitySpider;Ljava/lang/Class;)V +45820 net/minecraft/entity/monster/EntitySlime$AISlimeFaceRandom (Lnet/minecraft/entity/monster/EntitySlime;)V +45821 net/minecraft/entity/monster/EntitySlime$SlimeMoveHelper (Lnet/minecraft/entity/monster/EntitySlime;)V +45822 net/minecraft/entity/monster/EntitySlime$AISlimeHop (Lnet/minecraft/entity/monster/EntitySlime;)V +45823 net/minecraft/entity/monster/EntitySlime$AISlimeFloat (Lnet/minecraft/entity/monster/EntitySlime;)V +45824 net/minecraft/entity/monster/EntitySlime$AISlimeAttack (Lnet/minecraft/entity/monster/EntitySlime;)V +45826 net/minecraft/entity/monster/EntitySilverfish$AISummonSilverfish (Lnet/minecraft/entity/monster/EntitySilverfish;)V +45827 net/minecraft/entity/monster/EntitySilverfish$AIHideInStone (Lnet/minecraft/entity/monster/EntitySilverfish;)V +45828 net/minecraft/entity/monster/EntityPigZombie$AIHurtByAggressor (Lnet/minecraft/entity/monster/EntityPigZombie;)V +45829 net/minecraft/entity/monster/EntityPigZombie$AITargetAggressor (Lnet/minecraft/entity/monster/EntityPigZombie;)V +45831 net/minecraft/entity/monster/EntityGuardian$GuardianMoveHelper (Lnet/minecraft/entity/monster/EntityGuardian;)V +45832 net/minecraft/entity/monster/EntityGuardian$GuardianTargetSelector (Lnet/minecraft/entity/monster/EntityGuardian;)V +45833 net/minecraft/entity/monster/EntityGuardian$AIGuardianAttack (Lnet/minecraft/entity/monster/EntityGuardian;)V +45835 net/minecraft/entity/monster/EntityGuardian (Lnet/minecraft/world/World;)V +45836 net/minecraft/entity/monster/EntityGhast$AIRandomFly (Lnet/minecraft/entity/monster/EntityGhast;)V +45837 net/minecraft/entity/monster/EntityGhast$AIFireballAttack (Lnet/minecraft/entity/monster/EntityGhast;)V +45838 net/minecraft/entity/monster/EntityGhast$GhastMoveHelper (Lnet/minecraft/entity/monster/EntityGhast;)V +45839 net/minecraft/entity/monster/EntityGhast$AILookAround (Lnet/minecraft/entity/monster/EntityGhast;)V +45840 net/minecraft/entity/monster/EntityEndermite (Lnet/minecraft/world/World;)V +45841 net/minecraft/entity/monster/EntityEnderman$AITakeBlock (Lnet/minecraft/entity/monster/EntityEnderman;)V +45842 net/minecraft/entity/monster/EntityEnderman$AIFindPlayer (Lnet/minecraft/entity/monster/EntityEnderman;)V +45843 net/minecraft/entity/monster/EntityEnderman$AIPlaceBlock (Lnet/minecraft/entity/monster/EntityEnderman;)V +45844 net/minecraft/entity/monster/EntityEnderman$1 (Lnet/minecraft/entity/monster/EntityEnderman;)V +45846 net/minecraft/entity/monster/EntityBlaze$AIFireballAttack (Lnet/minecraft/entity/monster/EntityBlaze;)V +45848 net/minecraft/entity/item/EntityFallingBlock (Lnet/minecraft/world/World;DDDLnet/minecraft/block/state/IBlockState;)V +45849 net/minecraft/entity/item/EntityPainting (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V +45850 net/minecraft/entity/item/EntityPainting (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Ljava/lang/String;)V +45851 net/minecraft/entity/EntityLeashKnot (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45852 net/minecraft/entity/item/EntityItemFrame (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V +45853 net/minecraft/entity/EntityHanging (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +45854 net/minecraft/entity/item/EntityArmorStand (Lnet/minecraft/world/World;)V +45855 net/minecraft/entity/item/EntityArmorStand (Lnet/minecraft/world/World;DDD)V +45856 net/minecraft/entity/passive/EntityWolf$1 (Lnet/minecraft/entity/passive/EntityWolf;)V +45859 net/minecraft/entity/passive/EntitySquid$AIMoveRandom (Lnet/minecraft/entity/passive/EntitySquid;)V +45860 net/minecraft/entity/passive/EntityRabbit$AIRaidFarm (Lnet/minecraft/entity/passive/EntityRabbit;)V +45861 net/minecraft/entity/passive/EntityRabbit$AIPanic (Lnet/minecraft/entity/passive/EntityRabbit;D)V +45862 net/minecraft/entity/passive/EntityRabbit$RabbitMoveHelper (Lnet/minecraft/entity/passive/EntityRabbit;)V +45863 net/minecraft/entity/passive/EntityRabbit$RabbitJumpHelper (Lnet/minecraft/entity/passive/EntityRabbit;Lnet/minecraft/entity/passive/EntityRabbit;)V +45864 net/minecraft/entity/passive/EntityRabbit$RabbitTypeData (I)V +45867 net/minecraft/entity/passive/EntityRabbit$AIEvilAttack (Lnet/minecraft/entity/passive/EntityRabbit;)V +45869 net/minecraft/entity/passive/EntityRabbit (Lnet/minecraft/world/World;)V +45871 net/minecraft/village/VillageDoorInfo (Lnet/minecraft/util/math/BlockPos;III)V +45872 net/minecraft/village/VillageDoorInfo (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;I)V +45873 net/minecraft/pathfinding/PathNavigateSwimmer (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +45874 net/minecraft/pathfinding/PathNavigateClimber (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +45875 net/minecraft/pathfinding/PathNavigateGround (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +45876 net/minecraft/entity/ai/EntityAITargetNonTamed (Lnet/minecraft/entity/passive/EntityTameable;Ljava/lang/Class;ZLcom/google/common/base/Predicate;)V +45877 net/minecraft/entity/ai/EntityAINearestAttackableTarget$1 (Lnet/minecraft/entity/ai/EntityAINearestAttackableTarget;Lcom/google/common/base/Predicate;)V +45878 net/minecraft/entity/ai/EntityAINearestAttackableTarget (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;Z)V +45879 net/minecraft/entity/ai/EntityAINearestAttackableTarget (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;ZZ)V +45880 net/minecraft/entity/ai/EntityAINearestAttackableTarget (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;IZZLcom/google/common/base/Predicate;)V +45881 net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer$1 (Lnet/minecraft/entity/ai/EntityAIFindEntityNearestPlayer;)V +45882 net/minecraft/entity/ai/EntityAIFindEntityNearestPlayer (Lnet/minecraft/entity/EntityLiving;)V +45883 net/minecraft/entity/ai/EntityAIFindEntityNearest$1 (Lnet/minecraft/entity/ai/EntityAIFindEntityNearest;)V +45884 net/minecraft/entity/ai/EntityAIFindEntityNearest (Lnet/minecraft/entity/EntityLiving;Ljava/lang/Class;)V +45885 net/minecraft/entity/ai/EntityAIHurtByTarget (Lnet/minecraft/entity/EntityCreature;Z[Ljava/lang/Class;)V +45886 net/minecraft/entity/ai/EntityAIVillagerInteract (Lnet/minecraft/entity/passive/EntityVillager;)V +45887 net/minecraft/entity/ai/EntityAIWander (Lnet/minecraft/entity/EntityCreature;DI)V +45888 net/minecraft/entity/ai/EntityAIMoveToBlock (Lnet/minecraft/entity/EntityCreature;DI)V +45889 net/minecraft/entity/ai/EntityAIHarvestFarmland (Lnet/minecraft/entity/passive/EntityVillager;D)V +45891 net/minecraft/entity/ai/attributes/RangedAttribute (Lnet/minecraft/entity/ai/attributes/IAttribute;Ljava/lang/String;DDD)V +45892 net/minecraft/entity/ai/attributes/BaseAttribute (Lnet/minecraft/entity/ai/attributes/IAttribute;Ljava/lang/String;D)V +45893 net/minecraft/entity/EntityLiving$SpawnPlacementType (Ljava/lang/String;I)V +45894 net/minecraft/entity/Entity$4 (Lnet/minecraft/entity/Entity;)V +45895 net/minecraft/entity/Entity$3 (Lnet/minecraft/entity/Entity;)V +45902 net/minecraft/inventory/InventoryBasic (Lnet/minecraft/util/text/ITextComponent;I)V +45903 net/minecraft/world/LockCode (Ljava/lang/String;)V +45904 net/minecraft/world/DifficultyInstance (Lnet/minecraft/world/EnumDifficulty;JJF)V +45905 net/minecraft/inventory/InventoryLargeChest (Ljava/lang/String;Lnet/minecraft/world/ILockableContainer;Lnet/minecraft/world/ILockableContainer;)V +45906 net/minecraft/util/HttpUtil$1 (Lnet/minecraft/util/IProgressUpdate;Ljava/lang/String;Ljava/net/Proxy;Ljava/util/Map;Ljava/io/File;I)V +45908 net/minecraft/util/ClassInheritanceMultiMap$1 (Lnet/minecraft/util/ClassInheritanceMultiMap;Ljava/lang/Class;)V +45909 net/minecraft/util/ClassInheritanceMultiMap (Ljava/lang/Class;)V +45910 net/minecraft/stats/StatCrafting (Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/item/Item;)V +45911 net/minecraft/server/management/PlayerList$1 (Lnet/minecraft/server/management/PlayerList;)V +45912 net/minecraft/server/network/NetHandlerLoginServer$2 (Lnet/minecraft/server/network/NetHandlerLoginServer;Ljava/lang/String;)V +45913 net/minecraft/server/network/NetHandlerLoginServer$1 (Lnet/minecraft/server/network/NetHandlerLoginServer;)V +45914 net/minecraft/network/NetHandlerPlayServer$3 (Lnet/minecraft/network/NetHandlerPlayServer;Lnet/minecraft/network/Packet;)V +45915 net/minecraft/network/NetHandlerPlayServer$2 (Lnet/minecraft/network/NetHandlerPlayServer;)V +45918 net/minecraft/network/NetworkSystem$4 (Lnet/minecraft/network/NetworkSystem;)V +45920 net/minecraft/world/WorldServer$1 (Lnet/minecraft/world/WorldServer;)V +45921 net/minecraft/world/WorldServer (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/storage/ISaveHandler;Lnet/minecraft/world/storage/WorldInfo;ILnet/minecraft/profiler/Profiler;)V +45922 net/minecraft/world/WorldServerMulti$1 (Lnet/minecraft/world/WorldServerMulti;)V +45923 net/minecraft/world/WorldServerMulti (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/storage/ISaveHandler;ILnet/minecraft/world/WorldServer;Lnet/minecraft/profiler/Profiler;)V +45924 net/minecraft/world/WorldServerDemo (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/world/storage/ISaveHandler;Lnet/minecraft/world/storage/WorldInfo;ILnet/minecraft/profiler/Profiler;)V +45925 net/minecraft/client/renderer/DestroyBlockProgress (ILnet/minecraft/util/math/BlockPos;)V +45927 net/minecraft/util/LoggingPrintStream (Ljava/lang/String;Ljava/io/OutputStream;)V +45928 net/minecraft/util/ResourceLocation (I[Ljava/lang/String;)V +45994 net/minecraft/network/PacketThreadUtil$1 (Lnet/minecraft/network/Packet;Lnet/minecraft/network/INetHandler;)V +45995 net/minecraft/network/EnumPacketDirection (Ljava/lang/String;I)V +45996 net/minecraft/util/text/TextComponentSelector (Ljava/lang/String;)V +45997 net/minecraft/util/text/TextComponentScore (Ljava/lang/String;Ljava/lang/String;)V +45998 net/minecraft/network/NettyPacketEncoder (Lnet/minecraft/network/EnumPacketDirection;)V +45999 net/minecraft/network/NettyPacketDecoder (Lnet/minecraft/network/EnumPacketDirection;)V +46001 net/minecraft/network/NetworkManager$5 (Lnet/minecraft/network/NetworkManager;)V +46004 net/minecraft/network/NetworkManager (Lnet/minecraft/network/EnumPacketDirection;)V +46005 net/minecraft/network/NettyCompressionEncoder (I)V +46006 net/minecraft/network/NettyCompressionDecoder (I)V +46007 net/minecraft/util/math/Vec3i (III)V +46008 net/minecraft/util/math/Vec3i (DDD)V +46009 net/minecraft/util/math/Rotations (FFF)V +46010 net/minecraft/util/math/Rotations (Lnet/minecraft/nbt/NBTTagList;)V +46011 net/minecraft/util/EnumParticleTypes (Ljava/lang/String;ILjava/lang/String;IZI)V +46012 net/minecraft/util/EnumParticleTypes (Ljava/lang/String;ILjava/lang/String;IZ)V +46013 net/minecraft/util/EnumFacing$Plane (Ljava/lang/String;I)V +46014 net/minecraft/util/EnumFacing$AxisDirection (Ljava/lang/String;IILjava/lang/String;)V +46015 net/minecraft/util/EnumFacing$Axis (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/util/EnumFacing$Plane;)V +46016 net/minecraft/util/EnumFacing (Ljava/lang/String;IIIILjava/lang/String;Lnet/minecraft/util/EnumFacing$AxisDirection;Lnet/minecraft/util/EnumFacing$Axis;Lnet/minecraft/util/math/Vec3i;)V +46017 net/minecraft/util/registry/RegistryNamespacedDefaultedByKey (Ljava/lang/Object;)V +46018 net/minecraft/util/math/Cartesian$Product$ProductIterator (Ljava/lang/Class;[Ljava/lang/Iterable;)V +46019 net/minecraft/util/math/Cartesian$Product$ProductIterator (Ljava/lang/Class;[Ljava/lang/Iterable;Lnet/minecraft/util/math/Cartesian$1;)V +46020 net/minecraft/util/math/Cartesian$Product (Ljava/lang/Class;[Ljava/lang/Iterable;)V +46021 net/minecraft/util/math/Cartesian$Product (Ljava/lang/Class;[Ljava/lang/Iterable;Lnet/minecraft/util/math/Cartesian$1;)V +46022 net/minecraft/util/math/Cartesian$GetList (Lnet/minecraft/util/math/Cartesian$1;)V +46023 net/minecraft/block/BlockSourceImpl (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +46024 net/minecraft/util/math/BlockPos$MutableBlockPos (III)V +46026 net/minecraft/util/math/BlockPos$2$1 (Lnet/minecraft/util/math/BlockPos$2;)V +46028 net/minecraft/util/math/BlockPos$1$1 (Lnet/minecraft/util/math/BlockPos$1;)V +46030 net/minecraft/util/math/BlockPos (III)V +46031 net/minecraft/util/math/BlockPos (DDD)V +46032 net/minecraft/util/math/BlockPos (Lnet/minecraft/entity/Entity;)V +46034 net/minecraft/util/math/BlockPos (Lnet/minecraft/util/math/Vec3i;)V +46035 net/minecraft/command/EntityNotFoundException (Ljava/lang/String;[Ljava/lang/Object;)V +46037 net/minecraft/command/CommandClone$StaticCloneData (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/nbt/NBTTagCompound;)V +46050 net/minecraft/command/CommandResultStats$Type (Ljava/lang/String;IILjava/lang/String;)V +46051 net/minecraft/command/CommandBase$CoordinateArg (DDZ)V +46052 net/minecraft/realms/RealmsClickableScrolledSelectionList (IIIII)V +46068 net/minecraft/client/audio/SoundManager$1$1 (Lnet/minecraft/client/audio/SoundManager$1;)V +46069 net/minecraft/server/integrated/IntegratedServer$3 (Lnet/minecraft/server/integrated/IntegratedServer;)V +46071 net/minecraft/client/audio/GuardianSound (Lnet/minecraft/entity/monster/EntityGuardian;)V +46073 net/minecraft/client/renderer/block/model/WeightedBakedModel (Ljava/util/List;)V +46078 net/minecraft/client/renderer/block/model/ModelResourceLocation (I[Ljava/lang/String;)V +46079 net/minecraft/client/renderer/block/model/ModelResourceLocation (Ljava/lang/String;)V +46080 net/minecraft/client/renderer/block/model/ModelResourceLocation (Lnet/minecraft/util/ResourceLocation;Ljava/lang/String;)V +46081 net/minecraft/client/renderer/block/model/ModelResourceLocation (Ljava/lang/String;Ljava/lang/String;)V +46082 net/minecraft/client/renderer/block/model/ModelManager (Lnet/minecraft/client/renderer/texture/TextureMap;)V +46085 net/minecraft/client/renderer/block/model/ModelBakery (Lnet/minecraft/client/resources/IResourceManager;Lnet/minecraft/client/renderer/texture/TextureMap;Lnet/minecraft/client/renderer/BlockModelShapes;)V +46087 net/minecraft/client/renderer/block/model/ModelRotation (Ljava/lang/String;III)V +46088 net/minecraft/client/resources/data/AnimationMetadataSection (Ljava/util/List;IIIZ)V +46089 net/minecraft/client/resources/SkinManager$2 (Lnet/minecraft/client/resources/SkinManager;Lnet/minecraft/client/renderer/IImageBuffer;Lnet/minecraft/client/resources/SkinManager$SkinAvailableCallback;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture$Type;Lnet/minecraft/util/ResourceLocation;Lcom/mojang/authlib/minecraft/MinecraftProfileTexture;)V +46090 net/minecraft/client/resources/SimpleResource (Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Ljava/io/InputStream;Ljava/io/InputStream;Lnet/minecraft/client/resources/data/MetadataSerializer;)V +46092 net/minecraft/client/resources/ResourcePackRepository$2 (Lnet/minecraft/client/resources/ResourcePackRepository;Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiScreenWorking;)V +46093 net/minecraft/client/resources/FallbackResourceManager$InputStreamLeakedResourceLogger (Ljava/io/InputStream;Lnet/minecraft/util/ResourceLocation;Ljava/lang/String;)V +46094 net/minecraft/client/renderer/vertex/VertexFormatElement$EnumUsage (Ljava/lang/String;ILjava/lang/String;)V +46095 net/minecraft/client/renderer/vertex/VertexFormatElement$EnumType (Ljava/lang/String;IILjava/lang/String;I)V +46096 net/minecraft/client/renderer/vertex/VertexFormatElement (ILnet/minecraft/client/renderer/vertex/VertexFormatElement$EnumType;Lnet/minecraft/client/renderer/vertex/VertexFormatElement$EnumUsage;I)V +46097 net/minecraft/client/renderer/vertex/VertexFormat (Lnet/minecraft/client/renderer/vertex/VertexFormat;)V +46098 net/minecraft/client/renderer/vertex/VertexBuffer (Lnet/minecraft/client/renderer/vertex/VertexFormat;)V +46099 net/minecraft/client/renderer/texture/TextureMap (Ljava/lang/String;)V +46100 net/minecraft/client/renderer/texture/TextureMap (Ljava/lang/String;Lnet/minecraft/client/renderer/texture/ITextureMapPopulator;)V +46101 net/minecraft/client/renderer/texture/LayeredColorMaskTexture (Lnet/minecraft/util/ResourceLocation;Ljava/util/List;Ljava/util/List;)V +46102 net/minecraft/client/renderer/entity/RenderPlayer (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46103 net/minecraft/client/renderer/entity/RenderPlayer (Lnet/minecraft/client/renderer/entity/RenderManager;Z)V +46104 net/minecraft/client/renderer/entity/layers/LayerWolfCollar (Lnet/minecraft/client/renderer/entity/RenderWolf;)V +46105 net/minecraft/client/renderer/entity/layers/LayerWitherAura (Lnet/minecraft/client/renderer/entity/RenderWither;)V +46106 net/minecraft/client/renderer/entity/layers/LayerHeldItemWitch (Lnet/minecraft/client/renderer/entity/RenderWitch;)V +46107 net/minecraft/client/renderer/entity/layers/LayerIronGolemFlower (Lnet/minecraft/client/renderer/entity/RenderIronGolem;)V +46108 net/minecraft/client/renderer/entity/layers/LayerVillagerArmor (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46109 net/minecraft/client/renderer/entity/layers/LayerSpiderEyes (Lnet/minecraft/client/renderer/entity/RenderSpider;)V +46110 net/minecraft/client/renderer/entity/layers/LayerSnowmanHead (Lnet/minecraft/client/renderer/entity/RenderSnowMan;)V +46111 net/minecraft/client/renderer/entity/layers/LayerSlimeGel (Lnet/minecraft/client/renderer/entity/RenderSlime;)V +46112 net/minecraft/client/renderer/entity/layers/LayerSheepWool (Lnet/minecraft/client/renderer/entity/RenderSheep;)V +46113 net/minecraft/client/renderer/entity/layers/LayerSaddle (Lnet/minecraft/client/renderer/entity/RenderPig;)V +46114 net/minecraft/client/renderer/entity/layers/LayerMooshroomMushroom (Lnet/minecraft/client/renderer/entity/RenderMooshroom;)V +46115 net/minecraft/client/renderer/entity/layers/LayerHeldItem (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46116 net/minecraft/client/renderer/entity/layers/LayerBipedArmor (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46117 net/minecraft/client/renderer/entity/layers/LayerEndermanEyes (Lnet/minecraft/client/renderer/entity/RenderEnderman;)V +46118 net/minecraft/client/renderer/entity/layers/LayerEnderDragonEyes (Lnet/minecraft/client/renderer/entity/RenderDragon;)V +46119 net/minecraft/client/renderer/entity/layers/LayerDeadmau5Head (Lnet/minecraft/client/renderer/entity/RenderPlayer;)V +46120 net/minecraft/client/renderer/entity/layers/LayerCustomHead (Lnet/minecraft/client/model/ModelRenderer;)V +46121 net/minecraft/client/renderer/entity/layers/LayerCreeperCharge (Lnet/minecraft/client/renderer/entity/RenderCreeper;)V +46122 net/minecraft/client/renderer/entity/layers/LayerHeldBlock (Lnet/minecraft/client/renderer/entity/RenderEnderman;)V +46123 net/minecraft/client/renderer/entity/layers/LayerCape (Lnet/minecraft/client/renderer/entity/RenderPlayer;)V +46124 net/minecraft/client/renderer/entity/layers/LayerArrow (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46125 net/minecraft/client/renderer/entity/layers/LayerArmorBase (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46126 net/minecraft/client/renderer/entity/RenderZombie$1 (Lnet/minecraft/client/renderer/entity/RenderZombie;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46127 net/minecraft/client/renderer/entity/RenderZombie (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46129 net/minecraft/client/renderer/entity/RenderWitherSkull (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46130 net/minecraft/client/renderer/entity/RenderWither (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46131 net/minecraft/client/renderer/entity/RenderWitch (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46132 net/minecraft/client/renderer/entity/RenderVillager (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46133 net/minecraft/client/renderer/entity/RenderIronGolem (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46134 net/minecraft/client/renderer/entity/RenderTNTPrimed (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46135 net/minecraft/client/renderer/entity/RenderTntMinecart (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46136 net/minecraft/client/renderer/entity/RenderPotion (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/renderer/RenderItem;)V +46137 net/minecraft/client/renderer/entity/RenderSnowball (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/item/Item;Lnet/minecraft/client/renderer/RenderItem;)V +46139 net/minecraft/client/renderer/entity/RenderSpider (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46140 net/minecraft/client/renderer/entity/RenderSnowMan (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46142 net/minecraft/client/renderer/entity/RenderSkeleton$1 (Lnet/minecraft/client/renderer/entity/RenderSkeleton;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46143 net/minecraft/client/renderer/entity/RenderSkeleton (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46144 net/minecraft/client/renderer/entity/RenderSilverfish (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46147 net/minecraft/client/renderer/entity/RenderPigZombie$1 (Lnet/minecraft/client/renderer/entity/RenderPigZombie;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46148 net/minecraft/client/renderer/entity/RenderPigZombie (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46150 net/minecraft/client/renderer/entity/RenderPainting (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46153 net/minecraft/client/renderer/entity/RenderLiving (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46154 net/minecraft/client/renderer/entity/RenderMinecartMobSpawner (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46155 net/minecraft/client/renderer/entity/RenderMinecart (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46156 net/minecraft/client/renderer/entity/RenderLivingBase (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBase;F)V +46157 net/minecraft/client/renderer/entity/RenderLightningBolt (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46158 net/minecraft/client/renderer/entity/RenderLeashKnot (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46159 net/minecraft/client/renderer/entity/RenderMagmaCube (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46160 net/minecraft/client/renderer/RenderItem$8 (Lnet/minecraft/client/renderer/RenderItem;)V +46161 net/minecraft/client/renderer/RenderItem$7 (Lnet/minecraft/client/renderer/RenderItem;)V +46162 net/minecraft/client/renderer/RenderItem$6 (Lnet/minecraft/client/renderer/RenderItem;)V +46163 net/minecraft/client/renderer/RenderItem$5 (Lnet/minecraft/client/renderer/RenderItem;)V +46166 net/minecraft/client/renderer/entity/RenderItemFrame (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/renderer/RenderItem;)V +46167 net/minecraft/client/renderer/entity/RenderEntityItem (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/renderer/RenderItem;)V +46168 net/minecraft/client/renderer/entity/RenderBiped (Lnet/minecraft/client/renderer/entity/RenderManager;Lnet/minecraft/client/model/ModelBiped;F)V +46171 net/minecraft/client/renderer/entity/RenderGuardian (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46172 net/minecraft/client/renderer/entity/RenderGiantZombie$1 (Lnet/minecraft/client/renderer/entity/RenderGiantZombie;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46174 net/minecraft/client/renderer/entity/RenderGhast (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46175 net/minecraft/client/renderer/entity/RenderFish (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46176 net/minecraft/client/renderer/entity/RenderFireball (Lnet/minecraft/client/renderer/entity/RenderManager;F)V +46177 net/minecraft/client/renderer/entity/RenderFallingBlock (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46178 net/minecraft/client/renderer/entity/RenderXPOrb (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46179 net/minecraft/client/renderer/entity/Render (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46180 net/minecraft/client/renderer/entity/RenderManager (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/RenderItem;)V +46181 net/minecraft/client/renderer/entity/RenderEndermite (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46182 net/minecraft/client/renderer/entity/RenderEnderman (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46183 net/minecraft/client/renderer/entity/RenderDragon (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46184 net/minecraft/client/renderer/entity/RenderEnderCrystal (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46185 net/minecraft/client/renderer/entity/RenderEntity (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46186 net/minecraft/client/renderer/entity/RenderCreeper (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46189 net/minecraft/client/renderer/entity/RenderCaveSpider (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46190 net/minecraft/client/renderer/entity/RenderBoat (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46191 net/minecraft/client/renderer/entity/RenderBlaze (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46192 net/minecraft/client/renderer/entity/RenderBat (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46193 net/minecraft/client/renderer/entity/RenderArrow (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46194 net/minecraft/client/renderer/entity/RenderArmorStand$1 (Lnet/minecraft/client/renderer/entity/RenderArmorStand;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +46195 net/minecraft/client/renderer/entity/RenderArmorStand (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46196 net/minecraft/client/renderer/culling/Frustum (Lnet/minecraft/client/renderer/culling/ClippingHelper;)V +46199 net/minecraft/client/renderer/chunk/ChunkRenderWorker$2 (Lnet/minecraft/client/renderer/chunk/ChunkRenderWorker;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator;Lnet/minecraft/client/renderer/chunk/CompiledChunk;)V +46200 net/minecraft/client/renderer/chunk/ChunkRenderWorker$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderWorker;Lcom/google/common/util/concurrent/ListenableFuture;)V +46201 net/minecraft/client/renderer/chunk/ChunkRenderWorker (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;)V +46202 net/minecraft/client/renderer/chunk/ChunkRenderWorker (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/RegionRenderCacheBuilder;)V +46204 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$2 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator;)V +46205 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$1 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator;)V +46206 net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Type (Ljava/lang/String;I)V +46207 net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Status (Ljava/lang/String;I)V +46210 net/minecraft/client/renderer/block/statemap/StateMap (Lnet/minecraft/block/properties/IProperty;Ljava/lang/String;Ljava/util/List;)V +46211 net/minecraft/client/renderer/block/statemap/StateMap (Lnet/minecraft/block/properties/IProperty;Ljava/lang/String;Ljava/util/List;Lnet/minecraft/client/renderer/block/statemap/StateMap$1;)V +46212 net/minecraft/client/renderer/block/model/ItemCameraTransforms$TransformType (Ljava/lang/String;I)V +46214 net/minecraft/client/renderer/block/model/ItemTransformVec3f (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;)V +46215 net/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing (Ljava/lang/String;ILnet/minecraft/util/EnumFacing;II)V +46216 net/minecraft/client/renderer/block/model/ItemModelGenerator$Span (Lnet/minecraft/client/renderer/block/model/ItemModelGenerator$SpanFacing;II)V +46217 net/minecraft/client/renderer/block/model/BakedQuadRetextured (Lnet/minecraft/client/renderer/block/model/BakedQuad;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +46220 net/minecraft/client/renderer/block/model/ModelBlockDefinition$MissingVariantException (Lnet/minecraft/client/renderer/block/model/ModelBlockDefinition;)V +46222 net/minecraft/client/renderer/block/model/ModelBlockDefinition (Ljava/util/List;)V +46223 net/minecraft/client/renderer/block/model/ModelBlock$Bookkeep (Lnet/minecraft/client/renderer/block/model/ModelBlock;)V +46224 net/minecraft/client/renderer/block/model/ModelBlock$Bookkeep (Lnet/minecraft/client/renderer/block/model/ModelBlock;Lnet/minecraft/client/renderer/block/model/ModelBlock$1;)V +46228 net/minecraft/client/renderer/block/model/BlockFaceUV ([FI)V +46229 net/minecraft/client/renderer/block/model/BlockPartRotation (Lorg/lwjgl/util/vector/Vector3f;Lnet/minecraft/util/EnumFacing$Axis;FZ)V +46230 net/minecraft/client/renderer/block/model/BlockPartFace (Lnet/minecraft/util/EnumFacing;ILjava/lang/String;Lnet/minecraft/client/renderer/block/model/BlockFaceUV;)V +46231 net/minecraft/client/renderer/block/model/BlockPart (Lorg/lwjgl/util/vector/Vector3f;Lorg/lwjgl/util/vector/Vector3f;Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/BlockPartRotation;Z)V +46233 net/minecraft/client/renderer/BlockModelRenderer$Orientation (Ljava/lang/String;ILnet/minecraft/util/EnumFacing;Z)V +46234 net/minecraft/client/renderer/BlockModelRenderer$VertexTranslations (Ljava/lang/String;IIIII)V +46235 net/minecraft/client/renderer/BlockModelRenderer$AmbientOcclusionFace (Lnet/minecraft/client/renderer/BlockModelRenderer;)V +46236 net/minecraft/client/renderer/BlockModelRenderer$EnumNeighborInfo (Ljava/lang/String;I[Lnet/minecraft/util/EnumFacing;FZ[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;[Lnet/minecraft/client/renderer/BlockModelRenderer$Orientation;)V +46238 net/minecraft/client/renderer/BlockModelShapes$7 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46239 net/minecraft/client/renderer/BlockModelShapes$6 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46240 net/minecraft/client/renderer/BlockModelShapes$5 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46241 net/minecraft/client/renderer/BlockModelShapes$4 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46242 net/minecraft/client/renderer/BlockModelShapes$3 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46243 net/minecraft/client/renderer/BlockModelShapes$2 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46244 net/minecraft/client/renderer/BlockModelShapes$1 (Lnet/minecraft/client/renderer/BlockModelShapes;)V +46245 net/minecraft/client/renderer/BlockModelShapes (Lnet/minecraft/client/renderer/block/model/ModelManager;)V +46246 net/minecraft/client/renderer/ViewFrustum (Lnet/minecraft/world/World;ILnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/client/renderer/chunk/IRenderChunkFactory;)V +46248 net/minecraft/client/renderer/RenderGlobal$ContainerLocalRenderInformation (Lnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/util/EnumFacing;I)V +46249 net/minecraft/client/renderer/RenderGlobal$ContainerLocalRenderInformation (Lnet/minecraft/client/renderer/RenderGlobal;Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/util/EnumFacing;ILnet/minecraft/client/renderer/RenderGlobal$1;)V +46250 net/minecraft/client/renderer/ItemModelMesher (Lnet/minecraft/client/renderer/block/model/ModelManager;)V +46254 net/minecraft/client/renderer/GlStateManager$TexGenCoord (II)V +46255 net/minecraft/client/renderer/GlStateManager$TexGen (Ljava/lang/String;I)V +46265 net/minecraft/client/renderer/GlStateManager$Color (FFFF)V +46267 net/minecraft/client/renderer/GlStateManager$BooleanState (I)V +46270 net/minecraft/client/renderer/EnumFaceDirection$VertexInformation (III)V +46271 net/minecraft/client/renderer/EnumFaceDirection$VertexInformation (IIILnet/minecraft/client/renderer/EnumFaceDirection$1;)V +46272 net/minecraft/client/renderer/EnumFaceDirection (Ljava/lang/String;I[Lnet/minecraft/client/renderer/EnumFaceDirection$VertexInformation;)V +46275 net/minecraft/client/renderer/BufferBuilder (I)V +46276 net/minecraft/client/player/inventory/ContainerLocalMenu (Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;I)V +46277 net/minecraft/client/player/inventory/LocalBlockIntercommunication (Ljava/lang/String;Lnet/minecraft/util/text/ITextComponent;)V +46279 net/minecraft/client/particle/ParticleEmitter (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/EnumParticleTypes;)V +46280 net/minecraft/client/particle/ParticleDigging (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/block/state/IBlockState;)V +46281 net/minecraft/client/particle/ParticleBlockDust (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/block/state/IBlockState;)V +46282 net/minecraft/client/particle/ParticleSmokeNormal (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/ParticleSmokeNormal$1;)V +46283 net/minecraft/client/particle/ParticleMobAppearance (Lnet/minecraft/world/World;DDD)V +46284 net/minecraft/client/particle/ParticleCrit (Lnet/minecraft/world/World;DDDDDD)V +46285 net/minecraft/client/particle/ParticleCrit (Lnet/minecraft/world/World;DDDDDDF)V +46286 net/minecraft/client/particle/Barrier (Lnet/minecraft/world/World;DDDLnet/minecraft/item/Item;)V +46289 net/minecraft/crash/CrashReportCategory$3 (Lnet/minecraft/util/math/BlockPos;)V +46290 net/minecraft/client/network/NetworkPlayerInfo$1 (Lnet/minecraft/client/network/NetworkPlayerInfo;)V +46291 net/minecraft/util/text/TextFormatting (Ljava/lang/String;ILjava/lang/String;CI)V +46292 net/minecraft/util/text/TextFormatting (Ljava/lang/String;ILjava/lang/String;CZ)V +46293 net/minecraft/util/text/TextFormatting (Ljava/lang/String;ILjava/lang/String;CZI)V +46294 net/minecraft/client/network/NetworkPlayerInfo (Lcom/mojang/authlib/GameProfile;)V +46300 net/minecraft/client/network/NetHandlerPlayClient (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/GuiScreen;Lnet/minecraft/network/NetworkManager;Lcom/mojang/authlib/GameProfile;)V +46301 net/minecraft/client/model/ModelBox (Lnet/minecraft/client/model/ModelRenderer;IIFFFIIIFZ)V +46302 net/minecraft/client/model/ModelWither (F)V +46303 net/minecraft/client/model/ModelSkeleton (FZ)V +46304 net/minecraft/client/model/ModelPlayer (FZ)V +46305 net/minecraft/client/model/ModelEnderman (F)V +46306 net/minecraft/client/model/ModelArmorStand (F)V +46307 net/minecraft/client/model/ModelArmorStandArmor (F)V +46308 net/minecraft/client/model/ModelArmorStandArmor (FII)V +46309 net/minecraft/server/dedicated/ServerHangWatchdog$1 (Lnet/minecraft/server/dedicated/ServerHangWatchdog;)V +46310 net/minecraft/server/dedicated/ServerHangWatchdog (Lnet/minecraft/server/dedicated/DedicatedServer;)V +46313 net/minecraft/client/gui/inventory/GuiContainerCreative$CreativeSlot (Lnet/minecraft/client/gui/inventory/GuiContainerCreative;Lnet/minecraft/inventory/Slot;I)V +46314 net/minecraft/client/gui/inventory/CreativeCrafting (Lnet/minecraft/client/Minecraft;)V +46315 net/minecraft/client/gui/inventory/GuiChest (Lnet/minecraft/inventory/IInventory;Lnet/minecraft/inventory/IInventory;)V +46316 net/minecraft/client/gui/GuiScreenBook$NextPageButton (IIIZ)V +46318 net/minecraft/client/gui/GuiFlatPresets (Lnet/minecraft/client/gui/GuiCreateFlatWorld;)V +46319 net/minecraft/client/gui/GuiErrorScreen (Ljava/lang/String;Ljava/lang/String;)V +46320 net/minecraft/client/gui/GuiCreateWorld (Lnet/minecraft/client/gui/GuiScreen;)V +46321 net/minecraft/client/gui/GuiButtonRealmsProxy (Lnet/minecraft/realms/RealmsButton;IIILjava/lang/String;)V +46323 net/minecraft/client/gui/GuiButton (IIIIILjava/lang/String;)V +46325 net/minecraft/client/gui/GuiIngame (Lnet/minecraft/client/Minecraft;)V +46326 net/minecraft/client/settings/GameSettings (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V +46329 net/minecraft/server/management/PreYggdrasilConverter$5 (Lnet/minecraft/server/MinecraftServer;Ljava/util/List;)V +46330 net/minecraft/server/management/UserListIPBansEntry (Ljava/lang/String;)V +46331 net/minecraft/server/management/UserListIPBansEntry (Lcom/google/gson/JsonObject;)V +46332 net/minecraft/server/management/PlayerProfileCache$Serializer (Lnet/minecraft/server/management/PlayerProfileCache;Lnet/minecraft/server/management/PlayerProfileCache$1;)V +46333 net/minecraft/server/management/PlayerProfileCache$ProfileEntry (Lnet/minecraft/server/management/PlayerProfileCache;Lcom/mojang/authlib/GameProfile;Ljava/util/Date;)V +46334 net/minecraft/server/management/UserListEntryBan (Ljava/lang/Object;Ljava/util/Date;Ljava/lang/String;Ljava/util/Date;Ljava/lang/String;)V +46337 net/minecraft/network/EnumConnectionState$1 (Ljava/lang/String;II)V +46338 net/minecraft/network/EnumConnectionState$2 (Ljava/lang/String;II)V +46339 net/minecraft/network/EnumConnectionState$4 (Ljava/lang/String;II)V +46340 net/minecraft/network/EnumConnectionState$3 (Ljava/lang/String;II)V +46341 net/minecraft/nbt/NBTSizeTracker$1 (J)V +46342 net/minecraft/nbt/NBTSizeTracker (J)V +46347 net/minecraft/client/particle/ParticleSmokeNormal (Lnet/minecraft/world/World;DDDDDD)V +46348 net/minecraft/client/particle/ParticleSmokeNormal (Lnet/minecraft/world/World;DDDDDDF)V +46349 net/minecraft/client/particle/ParticleRedstone (Lnet/minecraft/world/World;DDDFFF)V +46350 net/minecraft/client/particle/ParticleRedstone (Lnet/minecraft/world/World;DDDFFFF)V +46351 net/minecraft/client/particle/ParticlePortal (Lnet/minecraft/world/World;DDDDDD)V +46352 net/minecraft/client/particle/Particle (Lnet/minecraft/world/World;DDD)V +46353 net/minecraft/client/particle/ParticleNote (Lnet/minecraft/world/World;DDDDDD)V +46354 net/minecraft/client/particle/ParticleHeart (Lnet/minecraft/world/World;DDDDDDF)V +46358 net/minecraft/client/model/ModelRenderer (Lnet/minecraft/client/model/ModelBase;II)V +46359 net/minecraft/client/model/ModelBox (Lnet/minecraft/client/model/ModelRenderer;IIFFFIIIF)V +46360 net/minecraft/client/model/ModelDragon (F)V +46361 net/minecraft/client/model/ModelWitch (F)V +46362 net/minecraft/client/model/ModelIronGolem (FF)V +46363 net/minecraft/client/model/PositionTextureVertex (Lnet/minecraft/client/model/PositionTextureVertex;FF)V +46364 net/minecraft/client/model/TexturedQuad ([Lnet/minecraft/client/model/PositionTextureVertex;)V +46365 net/minecraft/client/model/ModelLeashKnot (IIII)V +46366 net/minecraft/client/model/ModelCreeper (F)V +46367 net/minecraft/server/management/PreYggdrasilConverter$ConversionError (Ljava/lang/String;Ljava/lang/Throwable;Lnet/minecraft/server/management/PreYggdrasilConverter$1;)V +46368 net/minecraft/server/management/PreYggdrasilConverter$4 (Lnet/minecraft/server/MinecraftServer;Lnet/minecraft/server/management/UserListWhitelist;)V +46369 net/minecraft/server/gui/MinecraftServerGui$5 (Lnet/minecraft/server/gui/MinecraftServerGui;Ljavax/swing/JTextArea;Ljavax/swing/JScrollPane;Ljava/lang/String;)V +46370 net/minecraft/server/gui/MinecraftServerGui$3 (Lnet/minecraft/server/gui/MinecraftServerGui;)V +46371 net/minecraft/server/dedicated/DedicatedServer$2 (Lnet/minecraft/server/dedicated/DedicatedServer;Ljava/lang/String;)V +46372 net/minecraft/server/dedicated/PropertyManager (Ljava/io/File;)V +46373 net/minecraft/server/ServerEula (Ljava/io/File;)V +46375 net/minecraft/client/main/GameConfiguration$UserInformation (Lnet/minecraft/util/Session;Lcom/mojang/authlib/properties/PropertyMap;Lcom/mojang/authlib/properties/PropertyMap;Ljava/net/Proxy;)V +46376 net/minecraft/client/gui/GuiScreenAddServer$1 (Lnet/minecraft/client/gui/GuiScreenAddServer;)V +46378 net/minecraft/block/state/pattern/BlockPattern$PatternHelper (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/EnumFacing;Lcom/google/common/cache/LoadingCache;III)V +46379 net/minecraft/block/BlockPressurePlateWeighted (Lnet/minecraft/block/material/Material;I)V +46380 net/minecraft/block/BlockPressurePlateWeighted (Lnet/minecraft/block/material/Material;ILnet/minecraft/block/material/MapColor;)V +46381 net/minecraft/block/BlockStoneSlab$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;)V +46382 net/minecraft/block/BlockStoneSlab$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;Ljava/lang/String;)V +46383 net/minecraft/block/BlockStone$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;Z)V +46384 net/minecraft/block/BlockStone$EnumType (Ljava/lang/String;IILnet/minecraft/block/material/MapColor;Ljava/lang/String;Ljava/lang/String;Z)V +46385 net/minecraft/block/BlockRotatedPillar (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46386 net/minecraft/block/BlockCompressedPowered (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46388 net/minecraft/block/BlockPlanks$EnumType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46389 net/minecraft/block/BlockPlanks$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46390 net/minecraft/block/BlockOre (Lnet/minecraft/block/material/MapColor;)V +46391 net/minecraft/block/BlockStoneSlabNew$EnumType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46392 net/minecraft/block/BlockHugeMushroom (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;Lnet/minecraft/block/Block;)V +46393 net/minecraft/block/BlockBreakable (Lnet/minecraft/block/material/Material;ZLnet/minecraft/block/material/MapColor;)V +46394 net/minecraft/block/BlockFenceGate (Lnet/minecraft/block/BlockPlanks$EnumType;)V +46395 net/minecraft/block/BlockFence (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46396 net/minecraft/block/BlockDirt$DirtType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46397 net/minecraft/block/BlockDirt$DirtType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;)V +46399 net/minecraft/block/Block (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46401 net/minecraft/block/BlockBasePressurePlate (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46402 net/minecraft/block/BlockContainer (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46403 net/minecraft/entity/passive/EntityRabbit$AIAvoidEntity (Lnet/minecraft/entity/passive/EntityRabbit;Ljava/lang/Class;FDD)V +46404 net/minecraft/entity/ai/EntityAIAvoidEntity (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;FDD)V +46405 net/minecraft/entity/ai/EntityAIAvoidEntity (Lnet/minecraft/entity/EntityCreature;Ljava/lang/Class;Lcom/google/common/base/Predicate;FDD)V +46407 net/minecraft/network/NetworkSystem$7 (Lnet/minecraft/network/NetworkSystem;Lnet/minecraft/network/NetworkManager;Lnet/minecraft/util/text/TextComponentString;)V +46408 net/minecraft/network/NetworkSystem$6 (Lnet/minecraft/network/NetworkSystem;Lnet/minecraft/network/NetworkManager;)V +46409 net/minecraft/network/NetworkSystem$5 (Lnet/minecraft/network/NetworkSystem;)V +46411 net/minecraft/network/NetworkManager$6 (Lnet/minecraft/network/NetworkManager;)V +46412 net/minecraft/network/NetworkManager$4 (Lnet/minecraft/network/NetworkManager;Lnet/minecraft/network/EnumConnectionState;Lnet/minecraft/network/EnumConnectionState;Lnet/minecraft/network/Packet;[Lio/netty/util/concurrent/GenericFutureListener;)V +46413 net/minecraft/client/renderer/Matrix4f ([F)V +46417 net/minecraft/client/renderer/EntityRenderer$4 (Lnet/minecraft/client/renderer/EntityRenderer;Lnet/minecraft/client/gui/ScaledResolution;)V +46418 net/minecraft/client/renderer/EntityRenderer$3 (Lnet/minecraft/client/renderer/EntityRenderer;II)V +46419 net/minecraft/client/renderer/EntityRenderer$2 (Lnet/minecraft/client/renderer/EntityRenderer;)V +46420 net/minecraft/client/multiplayer/ServerData (Ljava/lang/String;Ljava/lang/String;Z)V +46442 net/minecraft/realms/RealmsBufferBuilder (Lnet/minecraft/client/renderer/BufferBuilder;)V +46443 net/minecraft/client/renderer/block/model/ItemCameraTransforms (Lnet/minecraft/client/renderer/block/model/ItemCameraTransforms;)V +46445 net/minecraft/client/gui/ScaledResolution (Lnet/minecraft/client/Minecraft;)V +46446 net/minecraft/world/gen/feature/WorldGenTrees (ZILnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;Z)V +46447 net/minecraft/world/gen/feature/WorldGenHugeTrees (ZIILnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;)V +46448 net/minecraft/world/gen/feature/WorldGenMegaJungle (ZIILnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;)V +46449 net/minecraft/world/gen/feature/WorldGenBigMushroom (Lnet/minecraft/block/Block;)V +46450 net/minecraft/world/gen/feature/WorldGenShrub (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/block/state/IBlockState;)V +46451 net/minecraft/block/state/BlockWorldState (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Z)V +46452 net/minecraft/block/BlockBush (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46453 net/minecraft/client/renderer/BufferBuilder$State (Lnet/minecraft/client/renderer/BufferBuilder;[ILnet/minecraft/client/renderer/vertex/VertexFormat;)V +46455 net/minecraft/entity/item/EntityEnderPearl (Lnet/minecraft/world/World;)V +46456 net/minecraft/realms/RealmsVertexFormat (Lnet/minecraft/client/renderer/vertex/VertexFormat;)V +46457 net/minecraft/command/CommandResultStats$1 (Lnet/minecraft/command/CommandResultStats;Lnet/minecraft/command/ICommandSender;)V +46460 net/minecraft/block/state/pattern/BlockPattern$CacheLoader (Lnet/minecraft/world/World;Z)V +46463 net/minecraft/realms/RealmsVertexFormatElement (Lnet/minecraft/client/renderer/vertex/VertexFormatElement;)V +46464 net/minecraft/client/particle/ParticleFirework$Starter (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/ParticleManager;Lnet/minecraft/nbt/NBTTagCompound;)V +46465 net/minecraft/client/particle/ParticleFirework$Spark (Lnet/minecraft/world/World;DDDDDDLnet/minecraft/client/particle/ParticleManager;)V +46466 net/minecraft/client/particle/ParticleFirework$Overlay (Lnet/minecraft/world/World;DDD)V +46467 net/minecraft/client/Minecraft$10 (Lnet/minecraft/client/Minecraft;)V +46469 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$FitSimpleRoomTopHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46470 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$FitSimpleRoomHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46471 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$ZDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46472 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$YZDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46473 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$YDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46474 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$XYDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46475 net/minecraft/world/gen/structure/StructureOceanMonumentPieces$XDoubleRoomFitHelper (Lnet/minecraft/world/gen/structure/StructureOceanMonumentPieces$1;)V +46476 net/minecraft/client/renderer/GlStateManager$TextureState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46477 net/minecraft/client/renderer/GlStateManager$TexGenState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46478 net/minecraft/client/renderer/GlStateManager$StencilState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46479 net/minecraft/client/renderer/GlStateManager$StencilFunc (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46480 net/minecraft/client/renderer/GlStateManager$PolygonOffsetState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46481 net/minecraft/client/renderer/GlStateManager$FogState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46482 net/minecraft/client/renderer/GlStateManager$DepthState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46483 net/minecraft/client/renderer/GlStateManager$CullState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46484 net/minecraft/client/renderer/GlStateManager$ColorMaterialState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46485 net/minecraft/client/renderer/GlStateManager$ColorMask (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46486 net/minecraft/client/renderer/GlStateManager$ColorLogicState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46487 net/minecraft/client/renderer/GlStateManager$ClearState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46488 net/minecraft/client/renderer/GlStateManager$BlendState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46489 net/minecraft/client/renderer/GlStateManager$AlphaState (Lnet/minecraft/client/renderer/GlStateManager$1;)V +46490 net/minecraft/crash/CrashReportCategory$7 (Lnet/minecraft/util/math/BlockPos;)V +46491 net/minecraft/crash/CrashReportCategory$6 (Lnet/minecraft/block/state/IBlockState;)V +46492 net/minecraft/server/management/UserListOpsEntry (Lcom/mojang/authlib/GameProfile;IZ)V +46500 net/minecraft/client/renderer/BufferBuilder$1 (Lnet/minecraft/client/renderer/BufferBuilder;[F)V +46501 net/minecraft/network/EnumConnectionState (Ljava/lang/String;IILnet/minecraft/network/EnumConnectionState$1;)V +46502 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;Lnet/minecraft/block/BlockSilverfish$1;)V +46503 net/minecraft/block/BlockSilverfish$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/BlockSilverfish$1;)V +46504 net/minecraft/client/network/ServerPinger$1 (Lnet/minecraft/client/network/ServerPinger;Lnet/minecraft/network/NetworkManager;Lnet/minecraft/client/multiplayer/ServerData;)V +46508 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$JunglePyramid$Stones (Lnet/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$1;)V +46510 net/minecraft/client/Minecraft$9 (Lnet/minecraft/client/Minecraft;)V +46511 net/minecraft/client/Minecraft$8 (Lnet/minecraft/client/Minecraft;)V +46513 net/minecraft/client/network/NetHandlerPlayClient$1 (Lnet/minecraft/client/network/NetHandlerPlayClient;Ljava/lang/String;Ljava/lang/String;)V +46514 net/minecraft/client/renderer/GlStateManager$SourceFactor (Ljava/lang/String;II)V +46515 net/minecraft/client/renderer/GlStateManager$Profile (Ljava/lang/String;I)V +46516 net/minecraft/client/renderer/GlStateManager$Profile (Ljava/lang/String;ILnet/minecraft/client/renderer/GlStateManager$1;)V +46517 net/minecraft/client/renderer/GlStateManager$LogicOp (Ljava/lang/String;II)V +46518 net/minecraft/client/renderer/GlStateManager$FogMode (Ljava/lang/String;II)V +46519 net/minecraft/client/renderer/GlStateManager$DestFactor (Ljava/lang/String;II)V +46520 net/minecraft/client/renderer/GlStateManager$CullFace (Ljava/lang/String;II)V +46521 net/minecraft/client/audio/SoundEventAccessor (Lnet/minecraft/util/ResourceLocation;Ljava/lang/String;)V +46522 net/minecraft/server/integrated/IntegratedServerCommandManager (Lnet/minecraft/server/integrated/IntegratedServer;)V +46523 net/minecraft/server/integrated/IntegratedServer (Lnet/minecraft/client/Minecraft;Ljava/lang/String;Ljava/lang/String;Lnet/minecraft/world/WorldSettings;Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/management/PlayerProfileCache;)V +46524 net/minecraft/client/renderer/block/model/multipart/ICondition$1$1 (Lnet/minecraft/client/renderer/block/model/multipart/ICondition$1;)V +46525 net/minecraft/client/audio/SoundList (Ljava/util/List;ZLjava/lang/String;)V +46526 net/minecraft/client/audio/Sound (Ljava/lang/String;FFILnet/minecraft/client/audio/Sound$Type;Z)V +46527 net/minecraft/client/audio/PositionedSoundRecord (Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundCategory;FFLnet/minecraft/util/math/BlockPos;)V +46528 net/minecraft/client/audio/PositionedSoundRecord (Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundCategory;FFFFF)V +46529 net/minecraft/client/audio/PositionedSoundRecord (Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundCategory;FFZILnet/minecraft/client/audio/ISound$AttenuationType;FFF)V +46530 net/minecraft/client/audio/PositionedSoundRecord (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/util/SoundCategory;FFZILnet/minecraft/client/audio/ISound$AttenuationType;FFF)V +46531 net/minecraft/item/ItemGlassBottle$1 (Lnet/minecraft/item/ItemGlassBottle;)V +46532 net/minecraft/client/audio/MovingSound (Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundCategory;)V +46533 net/minecraft/client/audio/PositionedSound (Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundCategory;)V +46534 net/minecraft/client/audio/PositionedSound (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/util/SoundCategory;)V +46535 net/minecraft/client/renderer/block/model/SimpleBakedModel (Ljava/util/List;Ljava/util/Map;ZZLnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/client/renderer/block/model/ItemCameraTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrideList;)V +46536 net/minecraft/client/renderer/block/model/MultipartBakedModel (Ljava/util/Map;)V +46537 net/minecraft/client/renderer/block/model/BuiltInModel (Lnet/minecraft/client/renderer/block/model/ItemCameraTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrideList;)V +46538 net/minecraft/client/resources/data/TextureMetadataSection (ZZ)V +46540 net/minecraft/client/resources/ResourceIndexFolder (Ljava/io/File;)V +46541 net/minecraft/client/resources/DefaultResourcePack (Lnet/minecraft/client/resources/ResourceIndex;)V +46542 net/minecraft/client/renderer/texture/Stitcher (IIII)V +46543 net/minecraft/client/renderer/texture/PngSizeInfo (Ljava/io/InputStream;)V +46544 net/minecraft/network/play/server/SPacketMultiBlockChange$BlockUpdateData (Lnet/minecraft/network/play/server/SPacketMultiBlockChange;SLnet/minecraft/block/state/IBlockState;)V +46545 net/minecraft/network/play/server/SPacketMultiBlockChange$BlockUpdateData (Lnet/minecraft/network/play/server/SPacketMultiBlockChange;SLnet/minecraft/world/chunk/Chunk;)V +46547 net/minecraft/client/renderer/entity/RenderTippedArrow (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46549 net/minecraft/client/renderer/entity/RenderSpectralArrow (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46551 net/minecraft/client/renderer/entity/RenderShulkerBullet (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46552 net/minecraft/client/renderer/RenderItem (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/client/renderer/block/model/ModelManager;Lnet/minecraft/client/renderer/color/ItemColors;)V +46553 net/minecraft/client/renderer/entity/RenderDragonFireball (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46554 net/minecraft/client/renderer/entity/RenderAreaEffectCloud (Lnet/minecraft/client/renderer/entity/RenderManager;)V +46555 net/minecraft/client/renderer/debug/DebugRendererWater (Lnet/minecraft/client/Minecraft;)V +46556 net/minecraft/client/renderer/debug/DebugRendererPathfinding (Lnet/minecraft/client/Minecraft;)V +46557 net/minecraft/client/renderer/debug/DebugRenderer (Lnet/minecraft/client/Minecraft;)V +46558 net/minecraft/client/resources/ResourcePackRepository$Entry (Lnet/minecraft/client/resources/ResourcePackRepository;Lnet/minecraft/client/resources/IResourcePack;)V +46559 net/minecraft/client/resources/ResourcePackRepository$Entry (Lnet/minecraft/client/resources/ResourcePackRepository;Lnet/minecraft/client/resources/IResourcePack;Lnet/minecraft/client/resources/ResourcePackRepository$1;)V +46560 net/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator (Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/client/renderer/chunk/ChunkCompileTaskGenerator$Type;D)V +46561 net/minecraft/world/storage/loot/functions/SetAttributes$Modifier (Ljava/lang/String;Ljava/lang/String;ILnet/minecraft/world/storage/loot/RandomValueRange;[Lnet/minecraft/inventory/EntityEquipmentSlot;Ljava/util/UUID;)V +46562 net/minecraft/client/renderer/block/model/multipart/Selector (Lnet/minecraft/client/renderer/block/model/multipart/ICondition;Lnet/minecraft/client/renderer/block/model/VariantList;)V +46563 net/minecraft/client/renderer/block/model/multipart/ConditionOr (Ljava/lang/Iterable;)V +46564 net/minecraft/client/renderer/block/model/multipart/Multipart (Ljava/util/List;)V +46565 net/minecraft/client/renderer/block/model/multipart/ConditionPropertyValue (Ljava/lang/String;Ljava/lang/String;)V +46566 net/minecraft/client/renderer/block/model/multipart/ConditionAnd (Ljava/lang/Iterable;)V +46567 net/minecraft/client/renderer/block/model/Variant (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/renderer/block/model/ModelRotation;ZI)V +46568 net/minecraft/client/renderer/block/model/VariantList (Ljava/util/List;)V +46569 net/minecraft/client/renderer/block/model/ItemCameraTransforms (Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;Lnet/minecraft/client/renderer/block/model/ItemTransformVec3f;)V +46570 net/minecraft/client/renderer/block/model/ItemOverrideList (Ljava/util/List;)V +46571 net/minecraft/client/renderer/block/model/ItemOverride (Lnet/minecraft/util/ResourceLocation;Ljava/util/Map;)V +46572 net/minecraft/client/renderer/block/model/ModelBlockDefinition (Ljava/util/Map;Lnet/minecraft/client/renderer/block/model/multipart/Multipart;)V +46573 net/minecraft/client/renderer/block/model/ModelBlock (Lnet/minecraft/util/ResourceLocation;Ljava/util/List;Ljava/util/Map;ZZLnet/minecraft/client/renderer/block/model/ItemCameraTransforms;Ljava/util/List;)V +46574 net/minecraft/client/renderer/block/model/BakedQuad ([IILnet/minecraft/util/EnumFacing;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;)V +46575 net/minecraft/client/renderer/BlockModelRenderer (Lnet/minecraft/client/renderer/color/BlockColors;)V +46576 net/minecraft/client/renderer/BlockFluidRenderer (Lnet/minecraft/client/renderer/color/BlockColors;)V +46577 net/minecraft/client/renderer/BlockRendererDispatcher (Lnet/minecraft/client/renderer/BlockModelShapes;Lnet/minecraft/client/renderer/color/BlockColors;)V +46578 net/minecraft/client/particle/ParticleSimpleAnimated (Lnet/minecraft/world/World;DDDIIF)V +46579 net/minecraft/item/ItemClock$1 (Lnet/minecraft/item/ItemClock;)V +46580 net/minecraft/client/particle/ParticleEndRod (Lnet/minecraft/world/World;DDDDDD)V +46581 net/minecraft/client/particle/ParticleDragonBreath (Lnet/minecraft/world/World;DDDDDD)V +46582 net/minecraft/client/particle/ParticleSweepAttack (Lnet/minecraft/client/renderer/texture/TextureManager;Lnet/minecraft/world/World;DDDDDD)V +46583 net/minecraft/client/network/NetworkPlayerInfo (Lnet/minecraft/network/play/server/SPacketPlayerListItem$AddPlayerData;)V +46584 net/minecraft/inventory/ContainerPlayer$2 (Lnet/minecraft/inventory/ContainerPlayer;Lnet/minecraft/inventory/IInventory;III)V +46585 net/minecraft/inventory/ContainerPlayer$1 (Lnet/minecraft/inventory/ContainerPlayer;Lnet/minecraft/inventory/IInventory;IIILnet/minecraft/inventory/EntityEquipmentSlot;)V +46586 net/minecraft/util/math/BlockPos$PooledMutableBlockPos (III)V +46587 net/minecraft/util/math/BlockPos$MutableBlockPos (Lnet/minecraft/util/math/BlockPos;)V +46588 net/minecraft/client/model/ModelDragonHead (F)V +46590 net/minecraft/client/gui/GuiListWorldSelection (Lnet/minecraft/client/gui/GuiWorldSelection;Lnet/minecraft/client/Minecraft;IIIII)V +46591 net/minecraft/client/gui/GuiListWorldSelectionEntry (Lnet/minecraft/client/gui/GuiListWorldSelection;Lnet/minecraft/world/storage/WorldSummary;Lnet/minecraft/world/storage/ISaveFormat;)V +46592 net/minecraft/client/gui/GuiWorldSelection (Lnet/minecraft/client/gui/GuiScreen;)V +46593 net/minecraft/client/gui/GuiWorldEdit (Lnet/minecraft/client/gui/GuiScreen;Ljava/lang/String;)V +46594 net/minecraft/client/resources/ResourcePackListEntryServer (Lnet/minecraft/client/gui/GuiScreenResourcePacks;Lnet/minecraft/client/resources/IResourcePack;)V +46595 net/minecraft/client/gui/inventory/GuiEditCommandBlockMinecart (Lnet/minecraft/tileentity/CommandBlockBaseLogic;)V +46596 net/minecraft/client/gui/GuiCommandBlock (Lnet/minecraft/tileentity/TileEntityCommandBlock;)V +46597 net/minecraft/util/TabCompleter (Lnet/minecraft/client/gui/GuiTextField;Z)V +46598 net/minecraft/client/gui/GuiGameOver (Lnet/minecraft/util/text/ITextComponent;)V +46599 net/minecraft/network/play/server/SPacketUpdateScore$Action (Ljava/lang/String;I)V +46600 net/minecraft/client/renderer/block/model/ModelBakery$3 (Lnet/minecraft/client/renderer/block/model/ModelBakery;Ljava/util/Set;)V +46601 net/minecraft/client/renderer/block/model/ModelBakery$2 (Lnet/minecraft/client/renderer/block/model/ModelBakery;)V +46602 net/minecraft/client/renderer/block/model/ModelBakery$1 (Lnet/minecraft/client/renderer/block/model/ModelBakery;Lnet/minecraft/util/ResourceLocation;)V +46603 net/minecraft/client/gui/GuiSubtitleOverlay (Lnet/minecraft/client/Minecraft;)V +46604 net/minecraft/entity/monster/EntityEnderman$AIFindPlayer$1 (Lnet/minecraft/entity/monster/EntityEnderman$AIFindPlayer;)V +46605 net/minecraft/client/gui/BossInfoClient (Lnet/minecraft/network/play/server/SPacketUpdateBossInfo;)V +46606 net/minecraft/client/gui/GuiBossOverlay (Lnet/minecraft/client/Minecraft;)V +46607 net/minecraft/init/Bootstrap$7$1 (Lnet/minecraft/init/Bootstrap$7;Lnet/minecraft/item/ItemStack;)V +46608 net/minecraft/scoreboard/ScoreCriteriaReadOnly (Ljava/lang/String;)V +46609 net/minecraft/world/BossInfo$Overlay (Ljava/lang/String;I)V +46610 net/minecraft/world/BossInfo$Color (Ljava/lang/String;I)V +46611 net/minecraft/client/renderer/OpenGlHelper$FboMode (Ljava/lang/String;I)V +46612 net/minecraft/util/math/AxisAlignedBB (Lnet/minecraft/util/math/BlockPos;)V +46613 net/minecraft/world/storage/loot/properties/EntityOnFire (Z)V +46614 net/minecraft/world/storage/loot/conditions/RandomChanceWithLooting (FF)V +46615 net/minecraft/world/storage/loot/conditions/RandomChance (F)V +46616 net/minecraft/world/storage/loot/conditions/KilledByPlayer (Z)V +46617 net/minecraft/world/storage/loot/conditions/EntityHasProperty ([Lnet/minecraft/world/storage/loot/properties/EntityProperty;Lnet/minecraft/world/storage/loot/LootContext$EntityTarget;)V +46618 net/minecraft/world/storage/loot/conditions/EntityHasScore (Ljava/util/Map;Lnet/minecraft/world/storage/loot/LootContext$EntityTarget;)V +46619 net/minecraft/world/storage/loot/functions/Smelt ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;)V +46620 net/minecraft/world/storage/loot/functions/SetNBT ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/nbt/NBTTagCompound;)V +46621 net/minecraft/world/storage/loot/functions/SetMetadata ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/world/storage/loot/RandomValueRange;)V +46622 net/minecraft/world/storage/loot/functions/SetDamage ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/world/storage/loot/RandomValueRange;)V +46623 net/minecraft/world/storage/loot/functions/SetCount ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/world/storage/loot/RandomValueRange;)V +46624 net/minecraft/world/storage/loot/functions/SetAttributes ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;[Lnet/minecraft/world/storage/loot/functions/SetAttributes$Modifier;)V +46626 net/minecraft/world/storage/loot/functions/LootFunction ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;)V +46627 net/minecraft/world/storage/loot/functions/EnchantWithLevels ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/world/storage/loot/RandomValueRange;Z)V +46628 net/minecraft/world/storage/loot/functions/EnchantRandomly ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Ljava/util/List;)V +46629 net/minecraft/world/storage/loot/RandomValueRange (FF)V +46630 net/minecraft/world/storage/loot/RandomValueRange (F)V +46631 net/minecraft/client/audio/Sound$Type (Ljava/lang/String;ILjava/lang/String;)V +46632 net/minecraft/world/storage/loot/LootTableManager (Ljava/io/File;)V +46633 net/minecraft/client/renderer/block/model/multipart/ConditionAnd$1 (Lnet/minecraft/client/renderer/block/model/multipart/ConditionAnd;Lnet/minecraft/block/state/BlockStateContainer;)V +46635 net/minecraft/tileentity/TileEntityCommandBlock$Mode (Ljava/lang/String;I)V +46636 net/minecraft/network/play/server/SPacketWorldBorder$Action (Ljava/lang/String;I)V +46637 net/minecraft/world/storage/loot/LootTableManager$Loader (Lnet/minecraft/world/storage/loot/LootTableManager;)V +46638 net/minecraft/world/storage/loot/LootTableManager$Loader (Lnet/minecraft/world/storage/loot/LootTableManager;Lnet/minecraft/world/storage/loot/LootTableManager$1;)V +46639 net/minecraft/world/storage/loot/LootEntryTable (Lnet/minecraft/util/ResourceLocation;II[Lnet/minecraft/world/storage/loot/conditions/LootCondition;)V +46640 net/minecraft/world/storage/loot/LootContext (FLnet/minecraft/world/WorldServer;Lnet/minecraft/world/storage/loot/LootTableManager;Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/DamageSource;)V +46641 net/minecraft/world/storage/loot/LootTable ([Lnet/minecraft/world/storage/loot/LootPool;)V +46642 net/minecraft/world/storage/loot/LootEntry (II[Lnet/minecraft/world/storage/loot/conditions/LootCondition;)V +46643 net/minecraft/world/storage/loot/LootPool ([Lnet/minecraft/world/storage/loot/LootEntry;[Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/world/storage/loot/RandomValueRange;Lnet/minecraft/world/storage/loot/RandomValueRange;)V +46644 net/minecraft/world/storage/loot/LootEntryItem (Lnet/minecraft/item/Item;II[Lnet/minecraft/world/storage/loot/functions/LootFunction;[Lnet/minecraft/world/storage/loot/conditions/LootCondition;)V +46645 net/minecraft/world/storage/loot/LootEntryEmpty (II[Lnet/minecraft/world/storage/loot/conditions/LootCondition;)V +46646 net/minecraft/world/storage/WorldSummary (Lnet/minecraft/world/storage/WorldInfo;Ljava/lang/String;Ljava/lang/String;JZ)V +46647 net/minecraft/world/storage/SaveFormatOld (Ljava/io/File;Lnet/minecraft/util/datafix/DataFixer;)V +46648 net/minecraft/world/storage/SaveHandler (Ljava/io/File;Ljava/lang/String;ZLnet/minecraft/util/datafix/DataFixer;)V +46649 net/minecraft/world/chunk/storage/AnvilSaveConverter (Ljava/io/File;Lnet/minecraft/util/datafix/DataFixer;)V +46650 net/minecraft/world/chunk/storage/AnvilSaveHandler (Ljava/io/File;Ljava/lang/String;ZLnet/minecraft/util/datafix/DataFixer;)V +46651 net/minecraft/world/storage/WorldSavedDataCallableSave (Lnet/minecraft/world/storage/WorldSavedData;)V +46652 net/minecraft/pathfinding/PathFinder (Lnet/minecraft/pathfinding/NodeProcessor;)V +46653 net/minecraft/pathfinding/PathNodeType (Ljava/lang/String;IF)V +46656 net/minecraft/client/renderer/GlStateManager$Profile$3 (Ljava/lang/String;I)V +46657 net/minecraft/client/renderer/GlStateManager$Profile$2 (Ljava/lang/String;I)V +46658 net/minecraft/client/renderer/GlStateManager$Profile$1 (Ljava/lang/String;I)V +46659 net/minecraft/block/material/EnumPushReaction (Ljava/lang/String;I)V +46662 net/minecraft/world/gen/structure/StructureComponentTemplate (I)V +46663 net/minecraft/network/play/server/SPacketPlayerListItem$AddPlayerData (Lnet/minecraft/network/play/server/SPacketPlayerListItem;Lcom/mojang/authlib/GameProfile;ILnet/minecraft/world/GameType;Lnet/minecraft/util/text/ITextComponent;)V +46664 net/minecraft/network/play/server/SPacketPlayerListItem$Action (Ljava/lang/String;I)V +46665 net/minecraft/world/gen/structure/MapGenEndCity (Lnet/minecraft/world/gen/ChunkGeneratorEnd;)V +46666 net/minecraft/world/gen/feature/WorldGenEndPodium (Z)V +46668 net/minecraft/world/gen/ChunkGeneratorOverworld (Lnet/minecraft/world/World;JZLjava/lang/String;)V +46669 net/minecraft/world/end/DragonFightManager (Lnet/minecraft/world/WorldServer;Lnet/minecraft/nbt/NBTTagCompound;)V +46670 net/minecraft/world/end/DragonSpawnManager (Ljava/lang/String;I)V +46671 net/minecraft/world/end/DragonSpawnManager (Ljava/lang/String;ILnet/minecraft/world/end/DragonSpawnManager$1;)V +46672 net/minecraft/world/DimensionType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Ljava/lang/Class;)V +46673 net/minecraft/world/chunk/storage/AnvilChunkLoader (Ljava/io/File;Lnet/minecraft/util/datafix/DataFixer;)V +46676 net/minecraft/entity/monster/EntitySpider$AISpiderAttack (Lnet/minecraft/entity/monster/EntitySpider;)V +46677 net/minecraft/tileentity/TileEntityChest (Lnet/minecraft/block/BlockChest$Type;)V +46678 net/minecraft/world/biome/BiomeEndDecorator$SpikeCacheLoader (Lnet/minecraft/world/biome/BiomeEndDecorator$1;)V +46679 net/minecraft/block/SoundType (FFLnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundEvent;)V +46680 net/minecraft/util/Rotation (Ljava/lang/String;ILjava/lang/String;)V +46681 net/minecraft/util/EnumBlockRenderType (Ljava/lang/String;I)V +46682 net/minecraft/block/BlockEmptyDrops (Lnet/minecraft/block/material/Material;)V +46684 net/minecraft/entity/projectile/EntityArrow$PickupStatus (Ljava/lang/String;I)V +46685 net/minecraft/block/BlockHorizontal (Lnet/minecraft/block/material/Material;)V +46686 net/minecraft/block/BlockHorizontal (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +46687 net/minecraft/block/BlockEndGateway (Lnet/minecraft/block/material/Material;)V +46688 net/minecraft/block/BlockCommandBlock (Lnet/minecraft/block/material/MapColor;)V +46689 net/minecraft/block/BlockChest (Lnet/minecraft/block/BlockChest$Type;)V +46690 net/minecraft/network/play/server/SPacketPlayerPosLook$EnumFlags (Ljava/lang/String;II)V +46691 net/minecraft/entity/item/EntityMinecartCommandBlock$1 (Lnet/minecraft/entity/item/EntityMinecartCommandBlock;)V +46692 net/minecraft/world/biome/BiomeVoid (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46693 net/minecraft/world/biome/BiomeEnd (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46694 net/minecraft/world/biome/BiomeTaiga (Lnet/minecraft/world/biome/BiomeTaiga$Type;Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46695 net/minecraft/world/biome/BiomeSwamp (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46696 net/minecraft/world/biome/BiomeStoneBeach (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46697 net/minecraft/world/biome/BiomeSavanna (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46698 net/minecraft/world/biome/BiomeRiver (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46699 net/minecraft/world/biome/BiomePlains (ZLnet/minecraft/world/biome/Biome$BiomeProperties;)V +46700 net/minecraft/world/biome/BiomeOcean (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46701 net/minecraft/world/biome/BiomeSavannaMutated (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46702 net/minecraft/world/biome/BiomeForestMutated (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46703 net/minecraft/world/biome/BiomeMushroomIsland (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46704 net/minecraft/world/biome/BiomeMesa (ZZLnet/minecraft/world/biome/Biome$BiomeProperties;)V +46705 net/minecraft/world/biome/BiomeJungle (ZLnet/minecraft/world/biome/Biome$BiomeProperties;)V +46706 net/minecraft/world/biome/BiomeSnow (ZLnet/minecraft/world/biome/Biome$BiomeProperties;)V +46707 net/minecraft/world/biome/BiomeHell (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46708 net/minecraft/world/biome/BiomeForest (Lnet/minecraft/world/biome/BiomeForest$Type;Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46709 net/minecraft/world/biome/BiomeProviderSingle (Lnet/minecraft/world/biome/Biome;)V +46710 net/minecraft/world/biome/BiomeHills (Lnet/minecraft/world/biome/BiomeHills$Type;Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46711 net/minecraft/world/biome/BiomeDesert (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46712 net/minecraft/world/biome/BiomeProvider (Lnet/minecraft/world/storage/WorldInfo;)V +46713 net/minecraft/world/biome/Biome (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46714 net/minecraft/world/biome/BiomeBeach (Lnet/minecraft/world/biome/Biome$BiomeProperties;)V +46715 net/minecraft/util/WeightedSpawnerEntity (Lnet/minecraft/nbt/NBTTagCompound;)V +46716 net/minecraft/util/WeightedSpawnerEntity (ILnet/minecraft/nbt/NBTTagCompound;)V +46717 net/minecraft/util/math/ChunkPos (Lnet/minecraft/util/math/BlockPos;)V +46718 net/minecraft/world/GameType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +46719 net/minecraft/enchantment/EnchantmentWaterWorker (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46720 net/minecraft/enchantment/EnchantmentWaterWalker (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46721 net/minecraft/enchantment/EnchantmentUntouching (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46722 net/minecraft/enchantment/EnchantmentThorns (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46723 net/minecraft/enchantment/EnchantmentProtection (Lnet/minecraft/enchantment/Enchantment$Rarity;Lnet/minecraft/enchantment/EnchantmentProtection$Type;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46724 net/minecraft/enchantment/EnchantmentOxygen (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46725 net/minecraft/enchantment/EnchantmentMending (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46726 net/minecraft/enchantment/EnchantmentLootBonus (Lnet/minecraft/enchantment/Enchantment$Rarity;Lnet/minecraft/enchantment/EnumEnchantmentType;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46727 net/minecraft/enchantment/EnchantmentKnockback (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46728 net/minecraft/enchantment/EnchantmentFrostWalker (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46729 net/minecraft/enchantment/EnchantmentFishingSpeed (Lnet/minecraft/enchantment/Enchantment$Rarity;Lnet/minecraft/enchantment/EnumEnchantmentType;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46730 net/minecraft/enchantment/EnchantmentFireAspect (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46731 net/minecraft/enchantment/Enchantment (Lnet/minecraft/enchantment/Enchantment$Rarity;Lnet/minecraft/enchantment/EnumEnchantmentType;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46732 net/minecraft/enchantment/EnchantmentDigging (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46733 net/minecraft/enchantment/EnchantmentDurability (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46734 net/minecraft/enchantment/EnchantmentDamage (Lnet/minecraft/enchantment/Enchantment$Rarity;I[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46735 net/minecraft/enchantment/EnchantmentArrowKnockback (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46736 net/minecraft/enchantment/EnchantmentArrowInfinite (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46737 net/minecraft/enchantment/EnchantmentArrowFire (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46738 net/minecraft/enchantment/EnchantmentArrowDamage (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +46739 net/minecraft/potion/PotionType ([Lnet/minecraft/potion/PotionEffect;)V +46740 net/minecraft/potion/PotionType (Ljava/lang/String;[Lnet/minecraft/potion/PotionEffect;)V +46741 net/minecraft/util/CooldownTrackerServer (Lnet/minecraft/entity/player/EntityPlayerMP;)V +46742 net/minecraft/item/ItemRecord (Ljava/lang/String;Lnet/minecraft/util/SoundEvent;)V +46743 net/minecraft/item/ItemMinecart (Lnet/minecraft/entity/item/EntityMinecart$Type;)V +46744 net/minecraft/client/gui/GuiScreenOptionsSounds$Button (Lnet/minecraft/client/gui/GuiScreenOptionsSounds;IIILnet/minecraft/util/SoundCategory;Z)V +46745 net/minecraft/item/ItemTool (FFLnet/minecraft/item/Item$ToolMaterial;Ljava/util/Set;)V +46746 net/minecraft/item/ItemTool (Lnet/minecraft/item/Item$ToolMaterial;Ljava/util/Set;)V +46747 net/minecraft/item/ItemChorusFruit (IF)V +46748 net/minecraft/item/ItemBoat (Lnet/minecraft/entity/item/EntityBoat$Type;)V +46749 net/minecraft/client/gui/GuiChat$ChatTabCompleter (Lnet/minecraft/client/gui/GuiTextField;)V +46750 net/minecraft/item/ItemArmor (Lnet/minecraft/item/ItemArmor$ArmorMaterial;ILnet/minecraft/inventory/EntityEquipmentSlot;)V +46751 net/minecraft/inventory/ClickType (Ljava/lang/String;I)V +46752 net/minecraft/entity/item/EntityMinecartMobSpawner (Lnet/minecraft/world/World;)V +46753 net/minecraft/entity/item/EntityMinecartMobSpawner (Lnet/minecraft/world/World;DDD)V +46754 net/minecraft/entity/item/EntityMinecartCommandBlock (Lnet/minecraft/world/World;)V +46755 net/minecraft/entity/item/EntityMinecartCommandBlock (Lnet/minecraft/world/World;DDD)V +46756 net/minecraft/entity/projectile/EntityTippedArrow (Lnet/minecraft/world/World;)V +46757 net/minecraft/entity/projectile/EntityTippedArrow (Lnet/minecraft/world/World;DDD)V +46758 net/minecraft/entity/projectile/EntityTippedArrow (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +46759 net/minecraft/entity/ai/EntityMoveHelper$Action (Ljava/lang/String;I)V +46760 net/minecraft/world/gen/structure/MapGenEndCity$Start (Lnet/minecraft/world/World;Lnet/minecraft/world/gen/ChunkGeneratorEnd;Ljava/util/Random;II)V +46761 net/minecraft/client/resources/ResourcePackListEntry$1 (Lnet/minecraft/client/resources/ResourcePackListEntry;I)V +46762 net/minecraft/client/gui/GuiCommandBlock$1 (Lnet/minecraft/client/gui/GuiCommandBlock;Lnet/minecraft/client/gui/GuiTextField;ZLnet/minecraft/tileentity/CommandBlockBaseLogic;)V +46763 net/minecraft/client/renderer/block/model/WeightedBakedModel$WeightedModel (Lnet/minecraft/client/renderer/block/model/IBakedModel;I)V +46765 net/minecraft/client/gui/GuiListWorldSelectionEntry$2 (Lnet/minecraft/client/gui/GuiListWorldSelectionEntry;)V +46766 net/minecraft/client/gui/GuiListWorldSelectionEntry$1 (Lnet/minecraft/client/gui/GuiListWorldSelectionEntry;)V +46767 net/minecraft/entity/projectile/EntitySpectralArrow (Lnet/minecraft/world/World;)V +46768 net/minecraft/entity/projectile/EntitySpectralArrow (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +46769 net/minecraft/entity/projectile/EntitySpectralArrow (Lnet/minecraft/world/World;DDD)V +46770 net/minecraft/entity/projectile/EntityShulkerBullet (Lnet/minecraft/world/World;)V +46771 net/minecraft/entity/projectile/EntityShulkerBullet (Lnet/minecraft/world/World;DDDDDD)V +46772 net/minecraft/entity/projectile/EntityShulkerBullet (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/EnumFacing$Axis;)V +46773 net/minecraft/network/play/server/SPacketCombatEvent$Event (Ljava/lang/String;I)V +46774 net/minecraft/entity/projectile/EntityDragonFireball (Lnet/minecraft/world/World;)V +46775 net/minecraft/entity/projectile/EntityDragonFireball (Lnet/minecraft/world/World;DDDDDD)V +46776 net/minecraft/entity/projectile/EntityDragonFireball (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;DDD)V +46777 net/minecraft/entity/projectile/EntityArrow (Lnet/minecraft/world/World;Lnet/minecraft/entity/EntityLivingBase;)V +46778 net/minecraft/client/gui/inventory/GuiEditCommandBlockMinecart$1 (Lnet/minecraft/client/gui/inventory/GuiEditCommandBlockMinecart;Lnet/minecraft/client/gui/GuiTextField;Z)V +46779 net/minecraft/entity/monster/EntityShulker (Lnet/minecraft/world/World;)V +46780 net/minecraft/entity/effect/EntityLightningBolt (Lnet/minecraft/world/World;DDDZ)V +46781 net/minecraft/entity/boss/dragon/phase/PhaseManager (Lnet/minecraft/entity/boss/EntityDragon;)V +46782 net/minecraft/entity/boss/dragon/phase/PhaseList (ILjava/lang/Class;Ljava/lang/String;)V +46783 net/minecraft/entity/boss/dragon/phase/PhaseTakeoff (Lnet/minecraft/entity/boss/EntityDragon;)V +46784 net/minecraft/entity/boss/dragon/phase/PhaseStrafePlayer (Lnet/minecraft/entity/boss/EntityDragon;)V +46785 net/minecraft/entity/boss/dragon/phase/PhaseSittingScanning (Lnet/minecraft/entity/boss/EntityDragon;)V +46786 net/minecraft/entity/boss/dragon/phase/PhaseSittingFlaming (Lnet/minecraft/entity/boss/EntityDragon;)V +46787 net/minecraft/entity/boss/dragon/phase/PhaseSittingAttacking (Lnet/minecraft/entity/boss/EntityDragon;)V +46788 net/minecraft/entity/boss/dragon/phase/PhaseLanding (Lnet/minecraft/entity/boss/EntityDragon;)V +46789 net/minecraft/entity/boss/dragon/phase/PhaseLandingApproach (Lnet/minecraft/entity/boss/EntityDragon;)V +46790 net/minecraft/entity/boss/dragon/phase/PhaseHover (Lnet/minecraft/entity/boss/EntityDragon;)V +46791 net/minecraft/entity/boss/dragon/phase/PhaseHoldingPattern (Lnet/minecraft/entity/boss/EntityDragon;)V +46792 net/minecraft/entity/boss/dragon/phase/PhaseDying (Lnet/minecraft/entity/boss/EntityDragon;)V +46793 net/minecraft/entity/boss/dragon/phase/PhaseChargingPlayer (Lnet/minecraft/entity/boss/EntityDragon;)V +46794 net/minecraft/entity/boss/dragon/phase/PhaseSittingBase (Lnet/minecraft/entity/boss/EntityDragon;)V +46795 net/minecraft/entity/boss/dragon/phase/PhaseBase (Lnet/minecraft/entity/boss/EntityDragon;)V +46797 net/minecraft/entity/ai/EntityAISkeletonRiders (Lnet/minecraft/entity/passive/EntitySkeletonHorse;)V +46799 net/minecraft/entity/passive/HorseArmorType (Ljava/lang/String;II)V +46800 net/minecraft/entity/passive/HorseArmorType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;)V +46801 net/minecraft/client/main/GameConfiguration$GameInformation (ZLjava/lang/String;Ljava/lang/String;)V +46802 net/minecraft/item/ItemElytra$1 (Lnet/minecraft/item/ItemElytra;)V +46803 net/minecraft/entity/ai/EntityAIZombieAttack (Lnet/minecraft/entity/monster/EntityZombie;DZ)V +46804 net/minecraft/entity/ai/EntityAITempt (Lnet/minecraft/entity/EntityCreature;DZLjava/util/Set;)V +46806 net/minecraft/util/EnumHandSide (Ljava/lang/String;ILnet/minecraft/util/text/ITextComponent;)V +46807 net/minecraft/item/ItemShield$1 (Lnet/minecraft/item/ItemShield;)V +46808 net/minecraft/inventory/EntityEquipmentSlot (Ljava/lang/String;ILnet/minecraft/inventory/EntityEquipmentSlot$Type;IILjava/lang/String;)V +46809 net/minecraft/entity/EntityAreaEffectCloud (Lnet/minecraft/world/World;)V +46810 net/minecraft/entity/EntityAreaEffectCloud (Lnet/minecraft/world/World;DDD)V +46811 net/minecraft/potion/PotionEffect (Lnet/minecraft/potion/Potion;)V +46812 net/minecraft/potion/PotionEffect (Lnet/minecraft/potion/Potion;I)V +46813 net/minecraft/potion/PotionEffect (Lnet/minecraft/potion/Potion;II)V +46814 net/minecraft/potion/PotionEffect (Lnet/minecraft/potion/Potion;IIZZ)V +46815 net/minecraft/potion/Potion (ZI)V +46816 net/minecraft/potion/PotionHealth (ZI)V +46817 net/minecraft/potion/PotionHealthBoost (ZI)V +46818 net/minecraft/client/renderer/block/model/FaceBakery$Rotation (Lnet/minecraft/client/renderer/block/model/FaceBakery$1;)V +46819 net/minecraft/potion/PotionAttackDamage (ZID)V +46820 net/minecraft/potion/PotionAbsorption (ZI)V +46821 net/minecraft/util/ActionResult (Lnet/minecraft/util/EnumActionResult;Ljava/lang/Object;)V +46822 net/minecraft/util/EnumActionResult (Ljava/lang/String;I)V +46823 net/minecraft/util/EnumHand (Ljava/lang/String;I)V +46824 net/minecraft/world/BossInfo (Ljava/util/UUID;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/world/BossInfo$Color;Lnet/minecraft/world/BossInfo$Overlay;)V +46828 net/minecraft/util/datafix/DataFixer (I)V +46829 net/minecraft/util/datafix/FixTypes (Ljava/lang/String;I)V +46830 net/minecraft/util/IntIdentityHashBiMap (I)V +46831 net/minecraft/world/storage/loot/properties/EntityProperty$Serializer (Lnet/minecraft/util/ResourceLocation;Ljava/lang/Class;)V +46832 net/minecraft/util/BitArray (II)V +46833 net/minecraft/util/SoundCategory (Ljava/lang/String;ILjava/lang/String;)V +46834 net/minecraft/util/SoundEvent (Lnet/minecraft/util/ResourceLocation;)V +46835 net/minecraft/network/rcon/RConConsoleSource (Lnet/minecraft/server/MinecraftServer;)V +46836 net/minecraft/server/management/PlayerProfileCache (Lcom/mojang/authlib/GameProfileRepository;Ljava/io/File;)V +46837 net/minecraft/entity/EntityTrackerEntry (Lnet/minecraft/entity/Entity;IIIZ)V +46838 net/minecraft/world/gen/ChunkProviderServer (Lnet/minecraft/world/WorldServer;Lnet/minecraft/world/chunk/storage/IChunkLoader;Lnet/minecraft/world/gen/IChunkGenerator;)V +46839 net/minecraft/world/BossInfoServer (Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/world/BossInfo$Color;Lnet/minecraft/world/BossInfo$Overlay;)V +46840 net/minecraft/network/datasync/EntityDataManager (Lnet/minecraft/entity/Entity;)V +46841 net/minecraft/network/datasync/DataParameter (ILnet/minecraft/network/datasync/DataSerializer;)V +46842 net/minecraft/network/status/client/CPacketPing (J)V +46848 net/minecraft/network/status/server/SPacketServerInfo (Lnet/minecraft/network/ServerStatusResponse;)V +46849 net/minecraft/command/EntitySelector$11 (II)V +46850 net/minecraft/network/status/server/SPacketPong (J)V +46851 net/minecraft/network/login/client/CPacketEncryptionResponse (Ljavax/crypto/SecretKey;Ljava/security/PublicKey;[B)V +46852 net/minecraft/network/login/client/CPacketLoginStart (Lcom/mojang/authlib/GameProfile;)V +46853 net/minecraft/network/login/server/SPacketDisconnect (Lnet/minecraft/util/text/ITextComponent;)V +46854 net/minecraft/network/login/server/SPacketEnableCompression (I)V +46855 net/minecraft/network/login/server/SPacketEncryptionRequest (Ljava/lang/String;Ljava/security/PublicKey;[B)V +46856 net/minecraft/network/login/server/SPacketLoginSuccess (Lcom/mojang/authlib/GameProfile;)V +46857 net/minecraft/network/play/client/CPacketPlayerTryUseItem (Lnet/minecraft/util/EnumHand;)V +46858 net/minecraft/network/play/client/CPacketPlayerTryUseItemOnBlock (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/EnumHand;FFF)V +46859 net/minecraft/network/play/client/CPacketSpectate (Ljava/util/UUID;)V +46860 net/minecraft/network/play/client/CPacketAnimation (Lnet/minecraft/util/EnumHand;)V +46861 net/minecraft/network/play/client/CPacketUpdateSign (Lnet/minecraft/util/math/BlockPos;[Lnet/minecraft/util/text/ITextComponent;)V +46862 net/minecraft/network/play/client/CPacketCreativeInventoryAction (ILnet/minecraft/item/ItemStack;)V +46863 net/minecraft/network/play/client/CPacketPlayer$Rotation (FFZ)V +46864 net/minecraft/network/play/client/CPacketHeldItemChange (I)V +46865 net/minecraft/network/play/client/CPacketPlayer$PositionRotation (DDDFFZ)V +46867 net/minecraft/network/play/client/CPacketPlayer$Position (DDDZ)V +46868 net/minecraft/network/play/client/CPacketInput (FFZZ)V +46869 net/minecraft/network/play/client/CPacketEntityAction (Lnet/minecraft/entity/Entity;Lnet/minecraft/network/play/client/CPacketEntityAction$Action;)V +46870 net/minecraft/network/play/client/CPacketEntityAction (Lnet/minecraft/entity/Entity;Lnet/minecraft/network/play/client/CPacketEntityAction$Action;I)V +46871 net/minecraft/network/play/client/CPacketPlayerDigging (Lnet/minecraft/network/play/client/CPacketPlayerDigging$Action;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/EnumFacing;)V +46872 net/minecraft/network/play/client/CPacketPlayerAbilities (Lnet/minecraft/entity/player/PlayerCapabilities;)V +46873 net/minecraft/network/play/client/CPacketSteerBoat (ZZ)V +46874 net/minecraft/network/play/client/CPacketVehicleMove (Lnet/minecraft/entity/Entity;)V +46875 net/minecraft/network/play/client/CPacketPlayer (Z)V +46876 net/minecraft/network/play/client/CPacketKeepAlive (J)V +46877 net/minecraft/network/play/client/CPacketUseEntity (Lnet/minecraft/entity/Entity;)V +46878 net/minecraft/network/play/client/CPacketUseEntity (Lnet/minecraft/entity/Entity;Lnet/minecraft/util/EnumHand;)V +46880 net/minecraft/network/play/client/CPacketCustomPayload (Ljava/lang/String;Lnet/minecraft/network/PacketBuffer;)V +46881 net/minecraft/network/play/client/CPacketCloseWindow (I)V +46882 net/minecraft/network/play/client/CPacketClickWindow (IIILnet/minecraft/inventory/ClickType;Lnet/minecraft/item/ItemStack;S)V +46883 net/minecraft/network/play/client/CPacketEnchantItem (II)V +46884 net/minecraft/network/play/client/CPacketConfirmTransaction (ISZ)V +46885 net/minecraft/network/play/client/CPacketClientSettings (Ljava/lang/String;ILnet/minecraft/entity/player/EntityPlayer$EnumChatVisibility;ZILnet/minecraft/util/EnumHandSide;)V +46886 net/minecraft/network/play/client/CPacketClientStatus (Lnet/minecraft/network/play/client/CPacketClientStatus$State;)V +46887 net/minecraft/network/play/client/CPacketChatMessage (Ljava/lang/String;)V +46888 net/minecraft/network/play/client/CPacketTabComplete (Ljava/lang/String;Lnet/minecraft/util/math/BlockPos;Z)V +46889 net/minecraft/network/play/client/CPacketConfirmTeleport (I)V +46890 net/minecraft/client/renderer/color/BlockColors$2 (Lnet/minecraft/client/renderer/color/BlockColors;)V +46891 net/minecraft/network/play/server/SPacketEntityEffect (ILnet/minecraft/potion/PotionEffect;)V +46892 net/minecraft/network/play/server/SPacketEntityProperties (ILjava/util/Collection;)V +46893 net/minecraft/network/play/server/SPacketEntityTeleport (Lnet/minecraft/entity/Entity;)V +46896 net/minecraft/network/play/server/SPacketSoundEffect (Lnet/minecraft/util/SoundEvent;Lnet/minecraft/util/SoundCategory;DDDFF)V +46899 net/minecraft/network/play/server/SPacketTitle (Lnet/minecraft/network/play/server/SPacketTitle$Type;Lnet/minecraft/util/text/ITextComponent;)V +46900 net/minecraft/network/play/server/SPacketTitle (III)V +46901 net/minecraft/network/play/server/SPacketTitle (Lnet/minecraft/network/play/server/SPacketTitle$Type;Lnet/minecraft/util/text/ITextComponent;III)V +46902 net/minecraft/network/play/server/SPacketTimeUpdate (JJZ)V +46903 net/minecraft/network/play/server/SPacketSpawnPosition (Lnet/minecraft/util/math/BlockPos;)V +46904 net/minecraft/network/play/server/SPacketUpdateScore (Lnet/minecraft/scoreboard/Score;)V +46905 net/minecraft/network/play/server/SPacketUpdateScore (Ljava/lang/String;)V +46906 net/minecraft/network/play/server/SPacketUpdateScore (Ljava/lang/String;Lnet/minecraft/scoreboard/ScoreObjective;)V +46907 net/minecraft/network/play/server/SPacketTeams (Lnet/minecraft/scoreboard/ScorePlayerTeam;I)V +46908 net/minecraft/network/play/server/SPacketTeams (Lnet/minecraft/scoreboard/ScorePlayerTeam;Ljava/util/Collection;I)V +46909 net/minecraft/network/play/server/SPacketSetPassengers (Lnet/minecraft/entity/Entity;)V +46910 net/minecraft/network/play/server/SPacketScoreboardObjective (Lnet/minecraft/scoreboard/ScoreObjective;I)V +46911 net/minecraft/network/play/server/SPacketUpdateHealth (FIF)V +46912 net/minecraft/network/play/server/SPacketSetExperience (FII)V +46913 net/minecraft/network/play/server/SPacketEntityEquipment (ILnet/minecraft/inventory/EntityEquipmentSlot;Lnet/minecraft/item/ItemStack;)V +46914 net/minecraft/network/play/server/SPacketEntityVelocity (Lnet/minecraft/entity/Entity;)V +46915 net/minecraft/network/play/server/SPacketEntityVelocity (IDDD)V +46916 net/minecraft/network/play/server/SPacketEntityAttach (Lnet/minecraft/entity/Entity;Lnet/minecraft/entity/Entity;)V +46917 net/minecraft/network/play/server/SPacketEntityMetadata (ILnet/minecraft/network/datasync/EntityDataManager;Z)V +46918 net/minecraft/network/play/server/SPacketDisplayObjective (ILnet/minecraft/scoreboard/ScoreObjective;)V +46919 net/minecraft/network/play/server/SPacketHeldItemChange (I)V +46920 net/minecraft/network/play/server/SPacketCamera (Lnet/minecraft/entity/Entity;)V +46921 net/minecraft/network/play/server/SPacketWorldBorder (Lnet/minecraft/world/border/WorldBorder;Lnet/minecraft/network/play/server/SPacketWorldBorder$Action;)V +46922 net/minecraft/network/play/server/SPacketEntityHeadLook (Lnet/minecraft/entity/Entity;B)V +46923 net/minecraft/network/play/server/SPacketRespawn (ILnet/minecraft/world/EnumDifficulty;Lnet/minecraft/world/WorldType;Lnet/minecraft/world/GameType;)V +46924 net/minecraft/network/play/server/SPacketResourcePackSend (Ljava/lang/String;Ljava/lang/String;)V +46925 net/minecraft/network/play/server/SPacketRemoveEntityEffect (ILnet/minecraft/potion/Potion;)V +46926 net/minecraft/network/play/server/SPacketDestroyEntities ([I)V +46927 net/minecraft/network/play/server/SPacketUseBed (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/util/math/BlockPos;)V +46928 net/minecraft/network/play/server/SPacketPlayerPosLook (DDDFFLjava/util/Set;I)V +46929 net/minecraft/network/play/server/SPacketPlayerListItem (Lnet/minecraft/network/play/server/SPacketPlayerListItem$Action;[Lnet/minecraft/entity/player/EntityPlayerMP;)V +46930 net/minecraft/network/play/server/SPacketPlayerListItem (Lnet/minecraft/network/play/server/SPacketPlayerListItem$Action;Ljava/lang/Iterable;)V +46931 net/minecraft/network/play/server/SPacketCombatEvent (Lnet/minecraft/util/CombatTracker;Lnet/minecraft/network/play/server/SPacketCombatEvent$Event;)V +46932 net/minecraft/network/play/server/SPacketCombatEvent (Lnet/minecraft/util/CombatTracker;Lnet/minecraft/network/play/server/SPacketCombatEvent$Event;Z)V +46933 net/minecraft/network/play/server/SPacketPlayerAbilities (Lnet/minecraft/entity/player/PlayerCapabilities;)V +46934 net/minecraft/network/play/server/SPacketSignEditorOpen (Lnet/minecraft/util/math/BlockPos;)V +46935 net/minecraft/network/play/server/SPacketMoveVehicle (Lnet/minecraft/entity/Entity;)V +46936 net/minecraft/network/play/server/SPacketEntity (I)V +46937 net/minecraft/network/play/server/SPacketMaps (IBZLjava/util/Collection;[BIIII)V +46938 net/minecraft/network/play/server/SPacketJoinGame (ILnet/minecraft/world/GameType;ZILnet/minecraft/world/EnumDifficulty;ILnet/minecraft/world/WorldType;Z)V +46939 net/minecraft/network/play/server/SPacketParticles (Lnet/minecraft/util/EnumParticleTypes;ZFFFFFFFI[I)V +46940 net/minecraft/network/play/server/SPacketEffect (ILnet/minecraft/util/math/BlockPos;IZ)V +46942 net/minecraft/network/play/server/SPacketKeepAlive (J)V +46943 net/minecraft/network/play/server/SPacketChangeGameState (IF)V +46944 net/minecraft/network/play/server/SPacketUnloadChunk (II)V +46946 net/minecraft/network/play/server/SPacketEntityStatus (Lnet/minecraft/entity/Entity;B)V +46947 net/minecraft/network/play/server/SPacketDisconnect (Lnet/minecraft/util/text/ITextComponent;)V +46948 net/minecraft/network/play/server/SPacketCustomSound (Ljava/lang/String;Lnet/minecraft/util/SoundCategory;DDDFF)V +46949 net/minecraft/network/play/server/SPacketCustomPayload (Ljava/lang/String;Lnet/minecraft/network/PacketBuffer;)V +46950 net/minecraft/network/play/server/SPacketCooldown (Lnet/minecraft/item/Item;I)V +46951 net/minecraft/network/play/server/SPacketSetSlot (IILnet/minecraft/item/ItemStack;)V +46952 net/minecraft/network/play/server/SPacketWindowProperty (III)V +46954 net/minecraft/network/play/server/SPacketOpenWindow (ILjava/lang/String;Lnet/minecraft/util/text/ITextComponent;)V +46955 net/minecraft/network/play/server/SPacketOpenWindow (ILjava/lang/String;Lnet/minecraft/util/text/ITextComponent;I)V +46956 net/minecraft/network/play/server/SPacketOpenWindow (ILjava/lang/String;Lnet/minecraft/util/text/ITextComponent;II)V +46957 net/minecraft/network/play/server/SPacketCloseWindow (I)V +46958 net/minecraft/network/play/server/SPacketConfirmTransaction (ISZ)V +46959 net/minecraft/network/play/server/SPacketMultiBlockChange (I[SLnet/minecraft/world/chunk/Chunk;)V +46960 net/minecraft/network/play/server/SPacketChat (Lnet/minecraft/util/text/ITextComponent;)V +46962 net/minecraft/network/play/server/SPacketTabComplete ([Ljava/lang/String;)V +46963 net/minecraft/network/play/server/SPacketServerDifficulty (Lnet/minecraft/world/EnumDifficulty;Z)V +46964 net/minecraft/network/play/server/SPacketUpdateBossInfo (Lnet/minecraft/network/play/server/SPacketUpdateBossInfo$Operation;Lnet/minecraft/world/BossInfo;)V +46965 net/minecraft/network/play/server/SPacketBlockChange (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;)V +46966 net/minecraft/network/play/server/SPacketBlockAction (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/Block;II)V +46967 net/minecraft/network/play/server/SPacketUpdateTileEntity (Lnet/minecraft/util/math/BlockPos;ILnet/minecraft/nbt/NBTTagCompound;)V +46968 net/minecraft/network/play/server/SPacketBlockBreakAnim (ILnet/minecraft/util/math/BlockPos;I)V +46969 net/minecraft/network/play/server/SPacketStatistics (Ljava/util/Map;)V +46970 net/minecraft/network/play/server/SPacketAnimation (Lnet/minecraft/entity/Entity;I)V +46971 net/minecraft/network/play/server/SPacketSpawnPlayer (Lnet/minecraft/entity/player/EntityPlayer;)V +46972 net/minecraft/network/play/server/SPacketSpawnPainting (Lnet/minecraft/entity/item/EntityPainting;)V +46973 net/minecraft/network/play/server/SPacketSpawnMob (Lnet/minecraft/entity/EntityLivingBase;)V +46974 net/minecraft/network/play/server/SPacketSpawnGlobalEntity (Lnet/minecraft/entity/Entity;)V +46975 net/minecraft/network/play/server/SPacketSpawnExperienceOrb (Lnet/minecraft/entity/item/EntityXPOrb;)V +46976 net/minecraft/network/play/server/SPacketSpawnObject (Lnet/minecraft/entity/Entity;I)V +46977 net/minecraft/network/play/server/SPacketSpawnObject (Lnet/minecraft/entity/Entity;II)V +46978 net/minecraft/network/play/server/SPacketSpawnObject (Lnet/minecraft/entity/Entity;IILnet/minecraft/util/math/BlockPos;)V +46979 net/minecraft/world/end/DragonSpawnManager$5 (Ljava/lang/String;I)V +46980 net/minecraft/world/end/DragonSpawnManager$4 (Ljava/lang/String;I)V +46981 net/minecraft/world/end/DragonSpawnManager$3 (Ljava/lang/String;I)V +46982 net/minecraft/world/end/DragonSpawnManager$2 (Ljava/lang/String;I)V +46983 net/minecraft/world/end/DragonSpawnManager$1 (Ljava/lang/String;I)V +46984 net/minecraft/util/ObjectIntIdentityMap (I)V +46985 net/minecraft/command/ServerCommandManager (Lnet/minecraft/server/MinecraftServer;)V +46986 net/minecraft/inventory/EntityEquipmentSlot$Type (Ljava/lang/String;I)V +46987 net/minecraft/entity/item/EntityMinecartMobSpawner$1 (Lnet/minecraft/entity/item/EntityMinecartMobSpawner;)V +46988 net/minecraft/client/renderer/block/model/SimpleBakedModel$Builder (Lnet/minecraft/client/renderer/block/model/ModelBlock;Lnet/minecraft/client/renderer/block/model/ItemOverrideList;)V +46989 net/minecraft/client/renderer/block/model/SimpleBakedModel$Builder (Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/client/renderer/block/model/IBakedModel;Lnet/minecraft/client/renderer/texture/TextureAtlasSprite;Lnet/minecraft/util/math/BlockPos;)V +46990 net/minecraft/client/renderer/block/model/SimpleBakedModel$Builder (ZZLnet/minecraft/client/renderer/block/model/ItemCameraTransforms;Lnet/minecraft/client/renderer/block/model/ItemOverrideList;)V +46992 net/minecraft/world/storage/loot/LootContext$EntityTarget (Ljava/lang/String;ILjava/lang/String;)V +46993 net/minecraft/world/storage/loot/LootContext$Builder (Lnet/minecraft/world/WorldServer;)V +46994 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$PendingUpload (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lcom/google/common/util/concurrent/ListenableFutureTask;D)V +46995 net/minecraft/world/biome/BiomeForest$Type (Ljava/lang/String;I)V +46996 net/minecraft/client/renderer/chunk/ChunkRenderDispatcher$3 (Lnet/minecraft/client/renderer/chunk/ChunkRenderDispatcher;Lnet/minecraft/util/BlockRenderLayer;Lnet/minecraft/client/renderer/BufferBuilder;Lnet/minecraft/client/renderer/chunk/RenderChunk;Lnet/minecraft/client/renderer/chunk/CompiledChunk;D)V +46997 net/minecraft/client/renderer/BannerTextures$CacheEntry (Lnet/minecraft/client/renderer/BannerTextures$1;)V +46998 net/minecraft/client/renderer/BannerTextures$Cache (Ljava/lang/String;Lnet/minecraft/util/ResourceLocation;Ljava/lang/String;)V +46999 net/minecraft/client/renderer/block/model/multipart/ConditionOr$1 (Lnet/minecraft/client/renderer/block/model/multipart/ConditionOr;Lnet/minecraft/block/state/BlockStateContainer;)V +47001 net/minecraft/block/BlockChest$Type (Ljava/lang/String;I)V +47002 net/minecraft/world/storage/loot/functions/LootFunction$Serializer (Lnet/minecraft/util/ResourceLocation;Ljava/lang/Class;)V +47003 net/minecraft/world/biome/BiomeTaiga$Type (Ljava/lang/String;I)V +47004 net/minecraft/network/play/client/CPacketResourcePackStatus$Action (Ljava/lang/String;I)V +47005 net/minecraft/entity/item/EntityMinecart$Type (Ljava/lang/String;IILjava/lang/String;)V +47006 net/minecraft/server/management/PlayerChunkMap$5 (Lnet/minecraft/server/management/PlayerChunkMap;)V +47007 net/minecraft/server/management/PlayerChunkMap$4 (Lnet/minecraft/server/management/PlayerChunkMap;)V +47008 net/minecraft/server/management/PlayerChunkMap$3 (Lnet/minecraft/server/management/PlayerChunkMap;Ljava/util/Iterator;)V +47009 net/minecraft/entity/monster/EntityIronGolem$1 (Lnet/minecraft/entity/monster/EntityIronGolem;)V +47010 net/minecraft/network/datasync/EntityDataManager$DataEntry (Lnet/minecraft/network/datasync/DataParameter;Ljava/lang/Object;)V +47011 net/minecraft/entity/ai/EntityAINearestAttackableTarget$2 (Lnet/minecraft/entity/ai/EntityAINearestAttackableTarget;)V +47015 net/minecraft/entity/boss/EntityWither$AIDoNothing (Lnet/minecraft/entity/boss/EntityWither;)V +47018 net/minecraft/network/play/client/CPacketEntityAction$Action (Ljava/lang/String;I)V +47019 net/minecraft/network/play/server/SPacketTitle$Type (Ljava/lang/String;I)V +47020 net/minecraft/world/gen/feature/WorldGenSpikes$EndSpike (IIIIZ)V +47021 net/minecraft/world/storage/loot/conditions/LootCondition$Serializer (Lnet/minecraft/util/ResourceLocation;Ljava/lang/Class;)V +47022 net/minecraft/network/play/server/SPacketUpdateBossInfo$Operation (Ljava/lang/String;I)V +47023 net/minecraft/init/Bootstrap$BehaviorDispenseBoat (Lnet/minecraft/entity/item/EntityBoat$Type;)V +47024 net/minecraft/client/renderer/entity/RenderShulker$HeadLayer (Lnet/minecraft/client/renderer/entity/RenderShulker;)V +47025 net/minecraft/client/renderer/entity/RenderShulker$HeadLayer (Lnet/minecraft/client/renderer/entity/RenderShulker;Lnet/minecraft/client/renderer/entity/RenderShulker$1;)V +47026 net/minecraft/enchantment/Enchantment$Rarity (Ljava/lang/String;II)V +47027 net/minecraft/tileentity/TileEntityStructure$Mode (Ljava/lang/String;ILjava/lang/String;I)V +47028 net/minecraft/entity/item/EntityBoat$Type (Ljava/lang/String;IILjava/lang/String;)V +47029 net/minecraft/entity/item/EntityBoat$Status (Ljava/lang/String;I)V +47030 net/minecraft/tileentity/TileEntityStructure$1 (Lnet/minecraft/tileentity/TileEntityStructure;)V +47035 net/minecraft/network/play/client/CPacketUseEntity$Action (Ljava/lang/String;I)V +47036 net/minecraft/world/gen/structure/ComponentScatteredFeaturePieces$Igloo (Ljava/util/Random;II)V +47037 net/minecraft/util/CooldownTracker$Cooldown (Lnet/minecraft/util/CooldownTracker;II)V +47038 net/minecraft/util/CooldownTracker$Cooldown (Lnet/minecraft/util/CooldownTracker;IILnet/minecraft/util/CooldownTracker$1;)V +47039 net/minecraft/item/ItemCompass$1 (Lnet/minecraft/item/ItemCompass;)V +47042 net/minecraft/world/gen/structure/template/Template$BlockInfo (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/state/IBlockState;Lnet/minecraft/nbt/NBTTagCompound;)V +47044 net/minecraft/world/gen/structure/template/Template$1 (Lnet/minecraft/world/gen/structure/template/Template;)V +47045 net/minecraft/client/gui/inventory/GuiBeacon$PowerButton (Lnet/minecraft/client/gui/inventory/GuiBeacon;IIILnet/minecraft/potion/Potion;I)V +47047 net/minecraft/command/EntitySelector$8 (Ljava/lang/String;Z)V +47050 net/minecraft/client/audio/MusicTicker$MusicType (Ljava/lang/String;ILnet/minecraft/util/SoundEvent;II)V +47051 net/minecraft/enchantment/EnchantmentProtection$Type (Ljava/lang/String;ILjava/lang/String;III)V +47052 net/minecraft/network/play/client/CPacketPlayerDigging$Action (Ljava/lang/String;I)V +47053 net/minecraft/scoreboard/Team$CollisionRule (Ljava/lang/String;ILjava/lang/String;I)V +47054 net/minecraft/server/MinecraftServer (Ljava/io/File;Ljava/net/Proxy;Lnet/minecraft/util/datafix/DataFixer;Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/management/PlayerProfileCache;)V +47055 net/minecraft/world/biome/BiomeHills$Type (Ljava/lang/String;I)V +47056 net/minecraft/client/renderer/block/model/multipart/ConditionPropertyValue$2 (Lnet/minecraft/client/renderer/block/model/multipart/ConditionPropertyValue;Lnet/minecraft/block/properties/IProperty;Lcom/google/common/base/Optional;)V +47057 net/minecraft/client/renderer/block/model/multipart/ConditionPropertyValue$1 (Lnet/minecraft/client/renderer/block/model/multipart/ConditionPropertyValue;Lnet/minecraft/block/properties/IProperty;)V +47058 net/minecraft/entity/monster/EntityShulker$AIPeek (Lnet/minecraft/entity/monster/EntityShulker;)V +47059 net/minecraft/entity/monster/EntityShulker$AIPeek (Lnet/minecraft/entity/monster/EntityShulker;Lnet/minecraft/entity/monster/EntityShulker$1;)V +47060 net/minecraft/entity/monster/EntityShulker$AIAttackNearest (Lnet/minecraft/entity/monster/EntityShulker;Lnet/minecraft/entity/monster/EntityShulker;)V +47061 net/minecraft/entity/monster/EntityShulker$AIDefenseAttack (Lnet/minecraft/entity/monster/EntityShulker;)V +47062 net/minecraft/entity/monster/EntityShulker$BodyHelper (Lnet/minecraft/entity/monster/EntityShulker;Lnet/minecraft/entity/EntityLivingBase;)V +47063 net/minecraft/entity/monster/EntityShulker$AIAttack (Lnet/minecraft/entity/monster/EntityShulker;)V +47064 net/minecraft/network/play/client/CPacketClientStatus$State (Ljava/lang/String;I)V +47065 net/minecraft/item/ItemFishingRod$1 (Lnet/minecraft/item/ItemFishingRod;)V +47066 net/minecraft/client/renderer/block/model/multipart/ICondition$2$1 (Lnet/minecraft/client/renderer/block/model/multipart/ICondition$2;)V +47067 net/minecraft/item/ItemBow$2 (Lnet/minecraft/item/ItemBow;)V +47068 net/minecraft/item/ItemBow$1 (Lnet/minecraft/item/ItemBow;)V +47069 net/minecraft/inventory/ContainerBrewingStand$Ingredient (Lnet/minecraft/inventory/IInventory;III)V +47070 net/minecraft/inventory/ContainerBrewingStand$Fuel (Lnet/minecraft/inventory/IInventory;III)V +47072 net/minecraft/world/gen/structure/MapGenScatteredFeature$Start (Lnet/minecraft/world/World;Ljava/util/Random;IILnet/minecraft/world/biome/Biome;)V +47073 net/minecraft/world/biome/Biome$BiomeProperties (Ljava/lang/String;)V +47074 net/minecraft/client/model/ModelBiped$ArmPose (Ljava/lang/String;I)V +47075 net/minecraft/network/play/server/SPacketEntityProperties$Snapshot (Lnet/minecraft/network/play/server/SPacketEntityProperties;Ljava/lang/String;DLjava/util/Collection;)V +47077 net/minecraft/client/network/NetHandlerPlayClient$1$1 (Lnet/minecraft/client/network/NetHandlerPlayClient$1;)V +47078 net/minecraft/block/BlockPurpurSlab$Variant (Ljava/lang/String;I)V +47081 net/minecraft/network/play/server/SPacketEntity$S16PacketEntityLook (IBBZ)V +47082 net/minecraft/network/play/server/SPacketEntity$S17PacketEntityLookMove (IJJJBBZ)V +47083 net/minecraft/network/play/server/SPacketEntity$S15PacketEntityRelMove (IJJJZ)V +47084 net/minecraft/init/Bootstrap$8$1 (Lnet/minecraft/init/Bootstrap$8;Lnet/minecraft/item/ItemStack;)V +47086 net/minecraft/server/dedicated/DedicatedServer (Ljava/io/File;Lnet/minecraft/util/datafix/DataFixer;Lcom/mojang/authlib/yggdrasil/YggdrasilAuthenticationService;Lcom/mojang/authlib/minecraft/MinecraftSessionService;Lcom/mojang/authlib/GameProfileRepository;Lnet/minecraft/server/management/PlayerProfileCache;)V +47088 net/minecraft/world/chunk/BlockStatePaletteLinear (ILnet/minecraft/world/chunk/IBlockStatePaletteResizer;)V +47089 net/minecraft/world/chunk/BlockStatePaletteHashMap (ILnet/minecraft/world/chunk/IBlockStatePaletteResizer;)V +47090 net/minecraft/util/Mirror (Ljava/lang/String;ILjava/lang/String;)V +47091 net/minecraft/client/model/PositionTextureVertex (Lnet/minecraft/util/math/Vec3d;FF)V +47092 net/minecraft/util/math/Vec3d (DDD)V +47093 net/minecraft/util/math/Vec3d (Lnet/minecraft/util/math/Vec3i;)V +47094 net/minecraft/util/math/RayTraceResult (Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/math/BlockPos;)V +47095 net/minecraft/util/math/RayTraceResult (Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/EnumFacing;)V +47096 net/minecraft/util/math/RayTraceResult (Lnet/minecraft/util/math/RayTraceResult$Type;Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/util/math/BlockPos;)V +47097 net/minecraft/util/math/RayTraceResult (Lnet/minecraft/entity/Entity;Lnet/minecraft/util/math/Vec3d;)V +47098 net/minecraft/network/play/client/CPacketUseEntity (Lnet/minecraft/entity/Entity;Lnet/minecraft/util/EnumHand;Lnet/minecraft/util/math/Vec3d;)V +47099 net/minecraft/network/play/server/SPacketExplosion (DDDFLjava/util/List;Lnet/minecraft/util/math/Vec3d;)V +47100 net/minecraft/util/math/BlockPos (Lnet/minecraft/util/math/Vec3d;)V +47101 net/minecraft/world/gen/structure/template/Template$EntityInfo (Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/nbt/NBTTagCompound;)V +47104 net/minecraft/client/gui/GuiSubtitleOverlay$Subtitle (Lnet/minecraft/client/gui/GuiSubtitleOverlay;Ljava/lang/String;Lnet/minecraft/util/math/Vec3d;)V +47105 net/minecraft/tileentity/TileEntitySign$1 (Lnet/minecraft/tileentity/TileEntitySign;)V +47113 net/minecraft/client/audio/ElytraSound (Lnet/minecraft/client/entity/EntityPlayerSP;)V +47117 net/minecraft/item/ItemArmor$ArmorMaterial (Ljava/lang/String;ILjava/lang/String;I[IILnet/minecraft/util/SoundEvent;F)V +47119 net/minecraft/realms/RealmsConnect$1 (Lnet/minecraft/realms/RealmsConnect;Ljava/lang/String;Ljava/lang/String;I)V +47120 net/minecraft/client/renderer/chunk/RenderChunk (Lnet/minecraft/world/World;Lnet/minecraft/client/renderer/RenderGlobal;I)V +47121 net/minecraft/client/renderer/chunk/ListedRenderChunk (Lnet/minecraft/world/World;Lnet/minecraft/client/renderer/RenderGlobal;I)V +47122 net/minecraft/client/main/Main$2 (Ljava/lang/String;)V +47123 net/minecraft/client/main/Main$1 (Ljava/lang/String;Ljava/lang/String;)V +47124 net/minecraft/network/play/server/SPacketChunkData (Lnet/minecraft/world/chunk/Chunk;I)V +47125 net/minecraft/client/multiplayer/ChunkProviderClient$1 (Lnet/minecraft/client/multiplayer/ChunkProviderClient;I)V +47130 net/minecraft/client/network/LanServerInfo (Ljava/lang/String;Ljava/lang/String;)V +47133 net/minecraft/client/renderer/debug/DebugRendererHeightMap (Lnet/minecraft/client/Minecraft;)V +47134 net/minecraft/client/renderer/debug/DebugRendererChunkBorder (Lnet/minecraft/client/Minecraft;)V +47135 net/minecraft/client/particle/ParticleFallingDust (Lnet/minecraft/world/World;DDDFFF)V +47136 net/minecraft/world/gen/structure/StructureMineshaftPieces$Stairs (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/MapGenMineshaft$Type;)V +47137 net/minecraft/world/gen/structure/StructureMineshaftPieces$Room (ILjava/util/Random;IILnet/minecraft/world/gen/structure/MapGenMineshaft$Type;)V +47138 net/minecraft/world/gen/structure/StructureMineshaftPieces$Peice (ILnet/minecraft/world/gen/structure/MapGenMineshaft$Type;)V +47139 net/minecraft/world/gen/structure/StructureMineshaftPieces$Cross (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/MapGenMineshaft$Type;)V +47140 net/minecraft/world/gen/structure/StructureMineshaftPieces$Corridor (ILjava/util/Random;Lnet/minecraft/world/gen/structure/StructureBoundingBox;Lnet/minecraft/util/EnumFacing;Lnet/minecraft/world/gen/structure/MapGenMineshaft$Type;)V +47141 net/minecraft/client/gui/ServerListEntryLanDetected (Lnet/minecraft/client/gui/GuiMultiplayer;Lnet/minecraft/client/network/LanServerInfo;)V +47142 net/minecraft/client/gui/inventory/GuiEditStructure (Lnet/minecraft/tileentity/TileEntityStructure;)V +47143 net/minecraft/util/math/Vec2f (FF)V +47144 net/minecraft/util/math/AxisAlignedBB (Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/Vec3d;)V +47145 net/minecraft/world/storage/loot/functions/LootingEnchantBonus ([Lnet/minecraft/world/storage/loot/conditions/LootCondition;Lnet/minecraft/world/storage/loot/RandomValueRange;I)V +47147 net/minecraft/world/storage/WorldInfo$9 (Lnet/minecraft/world/storage/WorldInfo;)V +47148 net/minecraft/world/gen/structure/template/BlockRotationProcessor (Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/world/gen/structure/template/PlacementSettings;)V +47149 net/minecraft/world/gen/structure/StructureMineshaftStart (Lnet/minecraft/world/World;Ljava/util/Random;IILnet/minecraft/world/gen/structure/MapGenMineshaft$Type;)V +47150 net/minecraft/block/state/pattern/BlockMaterialMatcher (Lnet/minecraft/block/material/Material;)V +47151 net/minecraft/world/gen/structure/MapGenMineshaft$Type (Ljava/lang/String;I)V +47154 net/minecraft/entity/monster/EntityPolarBear (Lnet/minecraft/world/World;)V +47155 net/minecraft/client/resources/ResourcePackRepository$3 (Lnet/minecraft/client/resources/ResourcePackRepository;Ljava/lang/String;Ljava/io/File;Lcom/google/common/util/concurrent/SettableFuture;)V +47156 net/minecraft/network/play/client/CPacketResourcePackStatus (Lnet/minecraft/network/play/client/CPacketResourcePackStatus$Action;)V +47157 net/minecraft/block/BlockSand$EnumType (Ljava/lang/String;IILjava/lang/String;Ljava/lang/String;Lnet/minecraft/block/material/MapColor;I)V +47158 net/minecraft/world/gen/structure/template/Template$BasicPalette (Lnet/minecraft/world/gen/structure/template/Template$1;)V +47159 net/minecraft/world/biome/BiomeMesa$Decorator (Lnet/minecraft/world/biome/BiomeMesa;)V +47160 net/minecraft/world/biome/BiomeMesa$Decorator (Lnet/minecraft/world/biome/BiomeMesa;Lnet/minecraft/world/biome/BiomeMesa$1;)V +47161 net/minecraft/entity/monster/EntityPolarBear$AIPanic (Lnet/minecraft/entity/monster/EntityPolarBear;)V +47162 net/minecraft/entity/monster/EntityPolarBear$AIMeleeAttack (Lnet/minecraft/entity/monster/EntityPolarBear;)V +47163 net/minecraft/entity/monster/EntityPolarBear$AIHurtByTarget (Lnet/minecraft/entity/monster/EntityPolarBear;)V +47164 net/minecraft/entity/monster/EntityPolarBear$GroupData (Lnet/minecraft/entity/monster/EntityPolarBear$1;)V +47165 net/minecraft/entity/monster/EntityPolarBear$AIAttackPlayer (Lnet/minecraft/entity/monster/EntityPolarBear;)V +47166 net/minecraft/client/network/NetHandlerPlayClient$2 (Lnet/minecraft/client/network/NetHandlerPlayClient;)V +47170 net/minecraft/server/MinecraftServer$4 (Lnet/minecraft/server/MinecraftServer;)V +47171 net/minecraft/server/MinecraftServer$3 (Lnet/minecraft/server/MinecraftServer;)V +47172 net/minecraft/server/MinecraftServer$1 (Lnet/minecraft/server/MinecraftServer;)V +47173 net/minecraft/server/MinecraftServer$2 (Ljava/lang/String;Lnet/minecraft/server/dedicated/DedicatedServer;)V +47174 net/minecraft/entity/monster/EntityEvoker$AIWololoSpell (Lnet/minecraft/entity/monster/EntityEvoker;)V +47177 net/minecraft/entity/monster/EntityEvoker$AISummonSpell (Lnet/minecraft/entity/monster/EntityEvoker;)V +47178 net/minecraft/entity/monster/EntityEvoker$AISummonSpell (Lnet/minecraft/entity/monster/EntityEvoker;Lnet/minecraft/entity/monster/EntityEvoker$1;)V +47179 net/minecraft/entity/monster/EntityEvoker$AICastingSpell (Lnet/minecraft/entity/monster/EntityEvoker;)V +47180 net/minecraft/entity/monster/EntityEvoker$AIAttackSpell (Lnet/minecraft/entity/monster/EntityEvoker;)V +47181 net/minecraft/entity/monster/EntityEvoker$AIAttackSpell (Lnet/minecraft/entity/monster/EntityEvoker;Lnet/minecraft/entity/monster/EntityEvoker$1;)V +47182 net/minecraft/client/resources/LegacyV2Adapter (Lnet/minecraft/client/resources/IResourcePack;)V +47183 net/minecraft/client/renderer/entity/layers/LayerStrayClothing (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +47184 net/minecraft/client/renderer/entity/layers/LayerLlamaDecor (Lnet/minecraft/client/renderer/entity/RenderLlama;)V +47185 net/minecraft/client/renderer/entity/layers/LayerElytra (Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +47186 net/minecraft/client/renderer/entity/RenderZombieVillager (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47187 net/minecraft/client/renderer/entity/RenderWolf (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47188 net/minecraft/client/renderer/entity/RenderWitherSkeleton (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47189 net/minecraft/client/renderer/entity/RenderVindicator (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47190 net/minecraft/client/renderer/entity/RenderVex (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47191 net/minecraft/client/renderer/entity/RenderStray (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47192 net/minecraft/client/renderer/entity/RenderSquid (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47193 net/minecraft/client/renderer/entity/RenderSlime (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47194 net/minecraft/client/renderer/entity/RenderShulker (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47195 net/minecraft/client/renderer/entity/RenderSheep (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47196 net/minecraft/client/renderer/entity/RenderRabbit (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47197 net/minecraft/client/renderer/entity/RenderPolarBear (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47198 net/minecraft/client/renderer/entity/RenderPig (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47199 net/minecraft/client/renderer/entity/RenderOcelot (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47200 net/minecraft/client/renderer/entity/RenderMooshroom (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47201 net/minecraft/entity/Entity$5 (Lnet/minecraft/entity/Entity;)V +47202 net/minecraft/client/renderer/entity/RenderLlamaSpit (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47203 net/minecraft/client/renderer/entity/RenderLlama (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47204 net/minecraft/client/renderer/entity/RenderHusk (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47205 net/minecraft/client/renderer/entity/RenderHorse (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47206 net/minecraft/client/renderer/entity/RenderGiantZombie (Lnet/minecraft/client/renderer/entity/RenderManager;F)V +47207 net/minecraft/client/renderer/entity/RenderEvoker (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47208 net/minecraft/client/renderer/entity/RenderEvokerFangs (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47209 net/minecraft/client/renderer/entity/RenderElderGuardian (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47210 net/minecraft/client/renderer/entity/RenderCow (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47211 net/minecraft/client/renderer/entity/RenderChicken (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47212 net/minecraft/client/renderer/entity/RenderAbstractHorse (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47213 net/minecraft/client/renderer/entity/RenderAbstractHorse (Lnet/minecraft/client/renderer/entity/RenderManager;F)V +47214 net/minecraft/world/gen/structure/StructureEndCityPieces$CityTemplate (Lnet/minecraft/world/gen/structure/template/TemplateManager;Ljava/lang/String;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/Rotation;Z)V +47215 net/minecraft/client/renderer/debug/DebugRendererCollisionBox (Lnet/minecraft/client/Minecraft;)V +47216 net/minecraft/client/renderer/tileentity/TileEntityShulkerBoxRenderer (Lnet/minecraft/client/model/ModelShulker;)V +47219 net/minecraft/client/particle/ParticleEmitter (Lnet/minecraft/world/World;Lnet/minecraft/entity/Entity;Lnet/minecraft/util/EnumParticleTypes;I)V +47220 net/minecraft/client/particle/ParticleTotem (Lnet/minecraft/world/World;DDDDDD)V +47221 net/minecraft/client/particle/ParticleSpit (Lnet/minecraft/world/World;DDDDDD)V +47224 net/minecraft/client/model/ModelVex (F)V +47225 net/minecraft/client/model/ModelLlamaSpit (F)V +47226 net/minecraft/client/model/ModelLlama (F)V +47227 net/minecraft/client/model/ModelIllager (FFII)V +47229 net/minecraft/entity/monster/EntityVex$AIMoveRandom (Lnet/minecraft/entity/monster/EntityVex;)V +47230 net/minecraft/entity/monster/EntityVex$AIMoveControl (Lnet/minecraft/entity/monster/EntityVex;Lnet/minecraft/entity/monster/EntityVex;)V +47231 net/minecraft/entity/monster/EntityVex$AICopyOwnerTarget (Lnet/minecraft/entity/monster/EntityVex;Lnet/minecraft/entity/EntityCreature;)V +47232 net/minecraft/entity/monster/EntityVex$AIChargeAttack (Lnet/minecraft/entity/monster/EntityVex;)V +47233 net/minecraft/client/gui/inventory/GuiShulkerBox (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;)V +47235 net/minecraft/world/gen/structure/WoodlandMansion$Start (Lnet/minecraft/world/World;Lnet/minecraft/world/gen/ChunkGeneratorOverworld;Ljava/util/Random;II)V +47236 net/minecraft/world/storage/MapDecoration (Lnet/minecraft/world/storage/MapDecoration$Type;BBB)V +47238 net/minecraft/client/resources/LegacyV2Adapter$1 (Lnet/minecraft/client/resources/LegacyV2Adapter;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +47239 net/minecraft/world/gen/structure/template/TemplateManager (Ljava/lang/String;Lnet/minecraft/util/datafix/DataFixer;)V +47240 net/minecraft/world/gen/structure/WoodlandMansion (Lnet/minecraft/world/gen/ChunkGeneratorOverworld;)V +47241 net/minecraft/world/gen/ChunkGeneratorEnd (Lnet/minecraft/world/World;ZJLnet/minecraft/util/math/BlockPos;)V +47242 net/minecraft/tileentity/TileEntityShulkerBox (Lnet/minecraft/item/EnumDyeColor;)V +47243 net/minecraft/command/CommandBase$2 (Lnet/minecraft/block/Block;Ljava/util/Map;)V +47244 net/minecraft/command/CommandBase$1 (I)V +47245 net/minecraft/tileentity/BannerPattern (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;)V +47246 net/minecraft/tileentity/BannerPattern (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Lnet/minecraft/item/ItemStack;)V +47247 net/minecraft/tileentity/BannerPattern (Ljava/lang/String;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V +47248 net/minecraft/block/BlockShulkerBox (Lnet/minecraft/item/EnumDyeColor;)V +47249 net/minecraft/block/BlockSlab (Lnet/minecraft/block/material/Material;Lnet/minecraft/block/material/MapColor;)V +47250 net/minecraft/entity/monster/AbstractSkeleton$1 (Lnet/minecraft/entity/monster/AbstractSkeleton;Lnet/minecraft/entity/EntityCreature;DZ)V +47251 net/minecraft/entity/passive/EntityWolf$AIAvoidEntity (Lnet/minecraft/entity/passive/EntityWolf;Lnet/minecraft/entity/passive/EntityWolf;Ljava/lang/Class;FDD)V +47252 net/minecraft/enchantment/EnchantmentVanishingCurse (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +47253 net/minecraft/enchantment/EnumEnchantmentType (Ljava/lang/String;ILnet/minecraft/enchantment/EnumEnchantmentType$1;)V +47254 net/minecraft/enchantment/EnchantmentBindingCurse (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +47255 net/minecraft/command/EntitySelector$4 (II)V +47256 net/minecraft/command/EntitySelector$2 (Lnet/minecraft/util/ResourceLocation;Z)V +47257 net/minecraft/command/EntitySelector$14 (Lnet/minecraft/util/math/Vec3d;)V +47258 net/minecraft/command/EntitySelector$13 (Lnet/minecraft/util/math/AxisAlignedBB;)V +47259 net/minecraft/command/EntitySelector$12 (II)V +47260 net/minecraft/item/ItemShulkerBox (Lnet/minecraft/block/Block;)V +47261 net/minecraft/command/EntitySelector$10 (Lnet/minecraft/util/math/Vec3d;ZDZD)V +47262 net/minecraft/item/ItemMultiTexture (Lnet/minecraft/block/Block;Lnet/minecraft/block/Block;Lnet/minecraft/item/ItemMultiTexture$Mapper;)V +47263 net/minecraft/item/ItemStack (Lnet/minecraft/nbt/NBTTagCompound;)V +47264 net/minecraft/item/ItemAir (Lnet/minecraft/block/Block;)V +47265 net/minecraft/inventory/SlotShulkerBox (Lnet/minecraft/inventory/IInventory;III)V +47266 net/minecraft/inventory/ContainerShulkerBox (Lnet/minecraft/entity/player/InventoryPlayer;Lnet/minecraft/inventory/IInventory;Lnet/minecraft/entity/player/EntityPlayer;)V +47268 net/minecraft/inventory/ContainerHorseChest (Ljava/lang/String;I)V +47269 net/minecraft/inventory/ContainerHorseChest (Lnet/minecraft/util/text/ITextComponent;I)V +47270 net/minecraft/client/renderer/entity/RenderVindicator$1 (Lnet/minecraft/client/renderer/entity/RenderVindicator;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +47272 net/minecraft/entity/projectile/EntityLlamaSpit (Lnet/minecraft/world/World;)V +47273 net/minecraft/entity/projectile/EntityLlamaSpit (Lnet/minecraft/world/World;Lnet/minecraft/entity/passive/EntityLlama;)V +47274 net/minecraft/entity/projectile/EntityLlamaSpit (Lnet/minecraft/world/World;DDDDDD)V +47275 net/minecraft/entity/projectile/EntityEvokerFangs (Lnet/minecraft/world/World;)V +47276 net/minecraft/entity/projectile/EntityEvokerFangs (Lnet/minecraft/world/World;DDDFILnet/minecraft/entity/EntityLivingBase;)V +47277 net/minecraft/entity/monster/EntityZombieVillager (Lnet/minecraft/world/World;)V +47278 net/minecraft/entity/monster/EntityWitherSkeleton (Lnet/minecraft/world/World;)V +47279 net/minecraft/entity/monster/EntityVindicator (Lnet/minecraft/world/World;)V +47280 net/minecraft/entity/monster/EntityVex (Lnet/minecraft/world/World;)V +47281 net/minecraft/entity/monster/EntityStray (Lnet/minecraft/world/World;)V +47282 net/minecraft/entity/passive/EntityLlama$AIHurtByTarget (Lnet/minecraft/entity/passive/EntityLlama;)V +47283 net/minecraft/entity/passive/EntityLlama$GroupData (I)V +47284 net/minecraft/entity/passive/EntityLlama$GroupData (ILnet/minecraft/entity/passive/EntityLlama$1;)V +47285 net/minecraft/entity/passive/EntityLlama$AIDefendTarget (Lnet/minecraft/entity/passive/EntityLlama;)V +47286 net/minecraft/entity/monster/EntityHusk (Lnet/minecraft/world/World;)V +47287 net/minecraft/entity/monster/EntityEvoker (Lnet/minecraft/world/World;)V +47288 net/minecraft/entity/monster/EntityElderGuardian (Lnet/minecraft/world/World;)V +47289 net/minecraft/entity/monster/AbstractSkeleton (Lnet/minecraft/world/World;)V +47290 net/minecraft/entity/projectile/EntityFishHook (Lnet/minecraft/world/World;Lnet/minecraft/entity/player/EntityPlayer;DDD)V +47291 net/minecraft/world/World$5 (Lnet/minecraft/world/World;)V +47292 net/minecraft/world/World$3 (Lnet/minecraft/world/World;Lnet/minecraft/block/Block;)V +47293 net/minecraft/entity/passive/EntityZombieHorse (Lnet/minecraft/world/World;)V +47295 net/minecraft/entity/passive/EntitySkeletonHorse (Lnet/minecraft/world/World;)V +47296 net/minecraft/entity/passive/EntityMule (Lnet/minecraft/world/World;)V +47297 net/minecraft/entity/passive/EntityLlama (Lnet/minecraft/world/World;)V +47298 net/minecraft/entity/passive/EntityDonkey (Lnet/minecraft/world/World;)V +47299 net/minecraft/entity/passive/AbstractHorse (Lnet/minecraft/world/World;)V +47300 net/minecraft/entity/passive/AbstractChestHorse (Lnet/minecraft/world/World;)V +47301 net/minecraft/entity/ai/EntityAIWanderAvoidWater (Lnet/minecraft/entity/EntityCreature;D)V +47302 net/minecraft/entity/ai/EntityAIWanderAvoidWater (Lnet/minecraft/entity/EntityCreature;DF)V +47305 net/minecraft/entity/ai/EntityAILlamaFollowCaravan (Lnet/minecraft/entity/passive/EntityLlama;D)V +47306 net/minecraft/entity/ai/EntityAIMate (Lnet/minecraft/entity/passive/EntityAnimal;DLjava/lang/Class;)V +47307 net/minecraft/entity/MoverType (Ljava/lang/String;I)V +47308 net/minecraft/tileentity/TileEntityShulkerBox$AnimationStatus (Ljava/lang/String;I)V +47309 net/minecraft/util/datafix/walkers/Filtered (Ljava/lang/Class;)V +47310 net/minecraft/util/datafix/walkers/ItemStackDataLists (Ljava/lang/Class;[Ljava/lang/String;)V +47311 net/minecraft/util/datafix/walkers/ItemStackData (Ljava/lang/Class;[Ljava/lang/String;)V +47312 net/minecraft/util/EntitySelectors$8 (Lnet/minecraft/entity/Entity;)V +47313 net/minecraft/util/EntitySelectors$7 (Lnet/minecraft/entity/Entity;Lnet/minecraft/scoreboard/Team;Lnet/minecraft/scoreboard/Team$CollisionRule;)V +47314 net/minecraft/util/EntitySelectors$6 (DDDD)V +47315 net/minecraft/server/DebugLoggingPrintStream (Ljava/lang/String;Ljava/io/OutputStream;)V +47316 net/minecraft/network/play/server/SPacketCollectItem (III)V +47317 net/minecraft/network/play/server/SPacketWindowItems (ILnet/minecraft/util/NonNullList;)V +47318 net/minecraft/enchantment/EnumEnchantmentType$6 (Ljava/lang/String;I)V +47319 net/minecraft/enchantment/EnumEnchantmentType$5 (Ljava/lang/String;I)V +47320 net/minecraft/enchantment/EnumEnchantmentType$4 (Ljava/lang/String;I)V +47321 net/minecraft/enchantment/EnumEnchantmentType$3 (Ljava/lang/String;I)V +47322 net/minecraft/enchantment/EnumEnchantmentType$2 (Ljava/lang/String;I)V +47323 net/minecraft/enchantment/EnumEnchantmentType$12 (Ljava/lang/String;I)V +47324 net/minecraft/enchantment/EnumEnchantmentType$11 (Ljava/lang/String;I)V +47325 net/minecraft/enchantment/EnumEnchantmentType$10 (Ljava/lang/String;I)V +47326 net/minecraft/enchantment/EnumEnchantmentType$1 (Ljava/lang/String;I)V +47327 net/minecraft/util/NonNullList (Ljava/util/List;Ljava/lang/Object;)V +47328 net/minecraft/entity/monster/EntityZombie$GroupData (Lnet/minecraft/entity/monster/EntityZombie;Z)V +47329 net/minecraft/entity/monster/EntityZombie$GroupData (Lnet/minecraft/entity/monster/EntityZombie;ZLnet/minecraft/entity/monster/EntityZombie$1;)V +47330 net/minecraft/command/PlayerNotFoundException (Ljava/lang/String;)V +47331 net/minecraft/command/InvalidBlockStateException (Ljava/lang/String;[Ljava/lang/Object;)V +47332 net/minecraft/command/EntityNotFoundException (Ljava/lang/String;)V +47333 net/minecraft/entity/monster/EntityEvoker$AIWololoSpell$1 (Lnet/minecraft/entity/monster/EntityEvoker$AIWololoSpell;)V +47335 net/minecraft/client/renderer/color/ItemColors$6 (Lnet/minecraft/client/renderer/color/BlockColors;)V +47336 net/minecraft/entity/monster/EntityElderGuardian$1 (Lnet/minecraft/entity/monster/EntityElderGuardian;)V +47337 net/minecraft/entity/passive/EntityHorse$GroupData (I)V +47338 net/minecraft/world/gen/feature/WorldGenMinable$StonePredicate (Lnet/minecraft/world/gen/feature/WorldGenMinable$1;)V +47339 net/minecraft/entity/projectile/EntityFishHook$State (Ljava/lang/String;I)V +47340 net/minecraft/entity/passive/EntityVillager$TreasureMapForEmeralds (Lnet/minecraft/entity/passive/EntityVillager$PriceInfo;Ljava/lang/String;Lnet/minecraft/world/storage/MapDecoration$Type;)V +47341 net/minecraft/entity/EntityList$EntityEggInfo (Lnet/minecraft/util/ResourceLocation;II)V +47342 net/minecraft/init/Bootstrap$BehaviorDispenseShulkerBox (Lnet/minecraft/init/Bootstrap$1;)V +47343 net/minecraft/world/storage/MapDecoration$Type (Ljava/lang/String;IZ)V +47344 net/minecraft/world/storage/MapDecoration$Type (Ljava/lang/String;IZI)V +47345 net/minecraft/entity/monster/EntityVindicator$AIJohnnyAttack (Lnet/minecraft/entity/monster/EntityVindicator;)V +47346 net/minecraft/command/EntitySelector$9 (Ljava/lang/String;Z)V +47347 net/minecraft/command/EntitySelector$7 (Lnet/minecraft/command/ICommandSender;Ljava/util/Map;)V +47348 net/minecraft/command/EntitySelector$6 (Ljava/lang/String;Z)V +47349 net/minecraft/command/EntitySelector$5 (ZLnet/minecraft/world/GameType;)V +47350 net/minecraft/inventory/ContainerHorseInventory$2 (Lnet/minecraft/inventory/ContainerHorseInventory;Lnet/minecraft/inventory/IInventory;IIILnet/minecraft/entity/passive/AbstractHorse;)V +47351 net/minecraft/inventory/ContainerHorseInventory$1 (Lnet/minecraft/inventory/ContainerHorseInventory;Lnet/minecraft/inventory/IInventory;IIILnet/minecraft/entity/passive/AbstractHorse;)V +47352 net/minecraft/enchantment/EnumEnchantmentType$9 (Ljava/lang/String;I)V +47353 net/minecraft/enchantment/EnumEnchantmentType$8 (Ljava/lang/String;I)V +47354 net/minecraft/enchantment/EnumEnchantmentType$7 (Ljava/lang/String;I)V +47355 net/minecraft/world/gen/structure/WoodlandMansionPieces$MansionTemplate (Lnet/minecraft/world/gen/structure/template/TemplateManager;Ljava/lang/String;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/Rotation;)V +47356 net/minecraft/world/gen/structure/WoodlandMansionPieces$MansionTemplate (Lnet/minecraft/world/gen/structure/template/TemplateManager;Ljava/lang/String;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/util/Rotation;Lnet/minecraft/util/Mirror;)V +47357 net/minecraft/world/gen/structure/WoodlandMansionPieces$ThirdFloor (Lnet/minecraft/world/gen/structure/WoodlandMansionPieces$1;)V +47358 net/minecraft/world/gen/structure/WoodlandMansionPieces$SimpleGrid (III)V +47359 net/minecraft/world/gen/structure/WoodlandMansionPieces$SecondFloor (Lnet/minecraft/world/gen/structure/WoodlandMansionPieces$1;)V +47360 net/minecraft/world/gen/structure/WoodlandMansionPieces$PlacementData (Lnet/minecraft/world/gen/structure/WoodlandMansionPieces$1;)V +47361 net/minecraft/world/gen/structure/WoodlandMansionPieces$Placer (Lnet/minecraft/world/gen/structure/template/TemplateManager;Ljava/util/Random;)V +47362 net/minecraft/world/gen/structure/WoodlandMansionPieces$Grid (Ljava/util/Random;)V +47363 net/minecraft/world/gen/structure/WoodlandMansionPieces$RoomCollection (Lnet/minecraft/world/gen/structure/WoodlandMansionPieces$1;)V +47364 net/minecraft/world/gen/structure/WoodlandMansionPieces$FirstFloor (Lnet/minecraft/world/gen/structure/WoodlandMansionPieces$1;)V +47365 net/minecraft/client/renderer/debug/DebugRendererNeighborsUpdate (Lnet/minecraft/client/Minecraft;)V +47366 net/minecraft/enchantment/EnchantmentSweepingEdge (Lnet/minecraft/enchantment/Enchantment$Rarity;[Lnet/minecraft/inventory/EntityEquipmentSlot;)V +47367 net/minecraft/entity/item/EntityFireworkRocket (Lnet/minecraft/world/World;Lnet/minecraft/item/ItemStack;Lnet/minecraft/entity/EntityLivingBase;)V +47368 net/minecraft/util/math/BlockPos$2 (IIIIII)V +47369 net/minecraft/util/math/BlockPos$1 (IIIIII)V +47370 net/minecraft/client/renderer/entity/layers/LayerEntityOnShoulder (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47371 net/minecraft/advancements/critereon/SummonedEntityTrigger$Instance (Lnet/minecraft/advancements/critereon/EntityPredicate;)V +47372 net/minecraft/advancements/critereon/SummonedEntityTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47373 net/minecraft/advancements/critereon/ConstructBeaconTrigger$Instance (Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47374 net/minecraft/advancements/critereon/ConstructBeaconTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47375 net/minecraft/client/renderer/entity/RenderParrot (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47376 net/minecraft/advancements/critereon/EnchantedItemTrigger$Instance (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47377 net/minecraft/advancements/critereon/EnchantedItemTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47378 net/minecraft/client/entity/EntityPlayerSP (Lnet/minecraft/client/Minecraft;Lnet/minecraft/world/World;Lnet/minecraft/client/network/NetHandlerPlayClient;Lnet/minecraft/stats/StatisticsManager;Lnet/minecraft/stats/RecipeBook;)V +47380 net/minecraft/client/multiplayer/ClientAdvancementManager (Lnet/minecraft/client/Minecraft;)V +47383 net/minecraft/client/gui/advancements/GuiScreenAdvancements (Lnet/minecraft/client/multiplayer/ClientAdvancementManager;)V +47384 net/minecraft/client/gui/advancements/AdvancementState (Ljava/lang/String;II)V +47385 net/minecraft/client/gui/advancements/GuiAdvancement (Lnet/minecraft/client/gui/advancements/GuiAdvancementTab;Lnet/minecraft/client/Minecraft;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V +47386 net/minecraft/client/gui/advancements/AdvancementTabType (Ljava/lang/String;IIIIII)V +47388 net/minecraft/client/gui/toasts/GuiToast (Lnet/minecraft/client/Minecraft;)V +47389 net/minecraft/client/gui/GuiButtonToggle (IIIIIZ)V +47390 net/minecraft/advancements/critereon/InventoryChangeTrigger$Instance (Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;[Lnet/minecraft/advancements/critereon/ItemPredicate;)V +47391 net/minecraft/advancements/critereon/InventoryChangeTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47392 net/minecraft/client/gui/GuiButtonImage (IIIIIIIILnet/minecraft/util/ResourceLocation;)V +47393 net/minecraft/client/gui/chat/NormalChatListener (Lnet/minecraft/client/Minecraft;)V +47394 net/minecraft/client/gui/chat/OverlayChatListener (Lnet/minecraft/client/Minecraft;)V +47395 net/minecraft/client/settings/CreativeSettings (Lnet/minecraft/client/Minecraft;Ljava/io/File;)V +47397 net/minecraft/advancements/critereon/RecipeUnlockedTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47398 net/minecraft/advancements/critereon/BrewedPotionTrigger$Instance (Lnet/minecraft/potion/PotionType;)V +47399 net/minecraft/advancements/critereon/BrewedPotionTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47400 net/minecraft/block/BlockGlazedTerracotta (Lnet/minecraft/item/EnumDyeColor;)V +47405 net/minecraft/advancements/ICriterionTrigger$Listener (Lnet/minecraft/advancements/ICriterionInstance;Lnet/minecraft/advancements/Advancement;Ljava/lang/String;)V +47406 net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$Instance (Lnet/minecraft/advancements/critereon/DamagePredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +47407 net/minecraft/advancements/critereon/PlayerHurtEntityTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47408 net/minecraft/advancements/critereon/BredAnimalsTrigger$Instance (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +47409 net/minecraft/advancements/critereon/BredAnimalsTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47410 net/minecraft/entity/passive/EntityShoulderRiding (Lnet/minecraft/world/World;)V +47411 net/minecraft/entity/passive/EntityParrot (Lnet/minecraft/world/World;)V +47412 net/minecraft/pathfinding/PathNavigateFlying (Lnet/minecraft/entity/EntityLiving;Lnet/minecraft/world/World;)V +47413 net/minecraft/entity/ai/EntityAIWanderAvoidWaterFlying (Lnet/minecraft/entity/EntityCreature;D)V +47414 net/minecraft/advancements/Advancement$Builder (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;)V +47415 net/minecraft/entity/ai/EntityAILandOnOwnersShoulder (Lnet/minecraft/entity/passive/EntityShoulderRiding;)V +47416 net/minecraft/entity/ai/EntityAIFollowOwnerFlying (Lnet/minecraft/entity/passive/EntityTameable;DFF)V +47417 net/minecraft/entity/ai/EntityAIFollow (Lnet/minecraft/entity/EntityLiving;DFF)V +47418 net/minecraft/entity/ai/EntityFlyHelper (Lnet/minecraft/entity/EntityLiving;)V +47419 net/minecraft/client/Minecraft$2 (Lnet/minecraft/client/Minecraft;)V +47420 net/minecraft/client/Minecraft$1 (Lnet/minecraft/client/Minecraft;Ljava/lang/String;)V +47421 net/minecraft/advancements/AdvancementManager (Ljava/io/File;)V +47422 net/minecraft/advancements/PlayerAdvancements (Lnet/minecraft/server/MinecraftServer;Ljava/io/File;Lnet/minecraft/entity/player/EntityPlayerMP;)V +47424 net/minecraft/network/play/client/CPacketRecipeInfo (ZZ)V +47428 net/minecraft/network/play/server/SPacketChat (Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/util/text/ChatType;)V +47429 net/minecraft/util/text/ChatType (Ljava/lang/String;IB)V +47430 net/minecraft/entity/ai/EntityAIFollow$1 (Lnet/minecraft/entity/ai/EntityAIFollow;Lnet/minecraft/entity/EntityLiving;)V +47431 net/minecraft/advancements/critereon/MinMaxBounds (Ljava/lang/Float;Ljava/lang/Float;)V +47432 net/minecraft/advancements/critereon/PositionTrigger (Lnet/minecraft/util/ResourceLocation;)V +47433 net/minecraft/advancements/critereon/KilledTrigger (Lnet/minecraft/util/ResourceLocation;)V +47436 net/minecraft/advancements/critereon/EnchantmentPredicate (Lnet/minecraft/enchantment/Enchantment;Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47438 net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$Instance (Lnet/minecraft/advancements/critereon/DamagePredicate;)V +47439 net/minecraft/advancements/critereon/EntityHurtPlayerTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47442 net/minecraft/advancements/critereon/PositionTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47449 net/minecraft/advancements/critereon/UsedEnderEyeTrigger$Instance (Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47450 net/minecraft/advancements/critereon/UsedEnderEyeTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47451 net/minecraft/advancements/critereon/EnterBlockTrigger$Instance (Lnet/minecraft/block/Block;Ljava/util/Map;)V +47452 net/minecraft/advancements/critereon/EnterBlockTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47453 net/minecraft/client/gui/inventory/GuiContainerCreative$LockedSlot (Lnet/minecraft/inventory/IInventory;III)V +47454 net/minecraft/advancements/critereon/KilledTrigger$Instance (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +47455 net/minecraft/advancements/critereon/KilledTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47457 net/minecraft/advancements/critereon/VillagerTradeTrigger$Instance (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +47458 net/minecraft/advancements/critereon/VillagerTradeTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47459 net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$Instance (Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +47460 net/minecraft/advancements/critereon/CuredZombieVillagerTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47461 net/minecraft/entity/player/EntityPlayer$SleepEnemyPredicate (Lnet/minecraft/entity/player/EntityPlayer;)V +47462 net/minecraft/entity/player/EntityPlayer$SleepEnemyPredicate (Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/entity/player/EntityPlayer$1;)V +47463 net/minecraft/client/renderer/entity/layers/LayerEntityOnShoulder$DataHolder (Lnet/minecraft/client/renderer/entity/layers/LayerEntityOnShoulder;Ljava/util/UUID;Lnet/minecraft/client/renderer/entity/RenderLivingBase;Lnet/minecraft/client/model/ModelBase;Lnet/minecraft/util/ResourceLocation;Ljava/lang/Class;)V +47464 net/minecraft/advancements/critereon/DamagePredicate (Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/EntityPredicate;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/DamageSourcePredicate;)V +47465 net/minecraft/advancements/critereon/AbstractCriterionInstance (Lnet/minecraft/util/ResourceLocation;)V +47466 net/minecraft/advancements/AdvancementTreeNode (Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/AdvancementTreeNode;Lnet/minecraft/advancements/AdvancementTreeNode;II)V +47469 net/minecraft/advancements/CriterionProgress (Lnet/minecraft/advancements/AdvancementProgress;)V +47470 net/minecraft/advancements/Criterion (Lnet/minecraft/advancements/ICriterionInstance;)V +47472 net/minecraft/advancements/Advancement (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;Lnet/minecraft/advancements/AdvancementRewards;Ljava/util/Map;[[Ljava/lang/String;)V +47473 net/minecraft/client/model/ModelParrot$State (Ljava/lang/String;I)V +47474 net/minecraft/client/gui/achievement/GuiStats$StatsBlock$1 (Lnet/minecraft/client/gui/achievement/GuiStats$StatsBlock;Lnet/minecraft/client/gui/achievement/GuiStats;)V +47475 net/minecraft/advancements/critereon/ChangeDimensionTrigger$Instance (Lnet/minecraft/world/DimensionType;Lnet/minecraft/world/DimensionType;)V +47476 net/minecraft/advancements/critereon/ChangeDimensionTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47477 net/minecraft/client/renderer/entity/RenderIllusionIllager (Lnet/minecraft/client/renderer/entity/RenderManager;)V +47478 net/minecraft/client/renderer/debug/DebugRendererSolidFace (Lnet/minecraft/client/Minecraft;)V +47479 net/minecraft/entity/monster/EntityIllusionIllager$AIMirriorSpell (Lnet/minecraft/entity/monster/EntityIllusionIllager;)V +47480 net/minecraft/entity/monster/EntityIllusionIllager$AIMirriorSpell (Lnet/minecraft/entity/monster/EntityIllusionIllager;Lnet/minecraft/entity/monster/EntityIllusionIllager$1;)V +47481 net/minecraft/entity/monster/EntityIllusionIllager$AIBlindnessSpell (Lnet/minecraft/entity/monster/EntityIllusionIllager;)V +47482 net/minecraft/entity/monster/EntityIllusionIllager$AIBlindnessSpell (Lnet/minecraft/entity/monster/EntityIllusionIllager;Lnet/minecraft/entity/monster/EntityIllusionIllager$1;)V +47483 net/minecraft/client/gui/toasts/GuiToast$ToastInstance (Lnet/minecraft/client/gui/toasts/GuiToast;Lnet/minecraft/client/gui/toasts/IToast;)V +47484 net/minecraft/client/gui/toasts/GuiToast$ToastInstance (Lnet/minecraft/client/gui/toasts/GuiToast;Lnet/minecraft/client/gui/toasts/IToast;Lnet/minecraft/client/gui/toasts/GuiToast$1;)V +47487 net/minecraft/client/gui/toasts/TutorialToast (Lnet/minecraft/client/gui/toasts/TutorialToast$Icons;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/util/text/ITextComponent;Z)V +47488 net/minecraft/client/gui/toasts/SystemToast (Lnet/minecraft/client/gui/toasts/SystemToast$Type;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/util/text/ITextComponent;)V +47489 net/minecraft/client/gui/toasts/RecipeToast (Lnet/minecraft/item/ItemStack;)V +47490 net/minecraft/client/gui/toasts/AdvancementToast (Lnet/minecraft/advancements/Advancement;)V +47491 net/minecraft/client/audio/SoundHandler$2 (Lnet/minecraft/client/audio/SoundHandler;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/client/audio/Sound;)V +47492 net/minecraft/client/renderer/RenderItem$4 (Lnet/minecraft/client/renderer/RenderItem;Lnet/minecraft/item/ItemStack;)V +47493 net/minecraft/client/renderer/RenderItem$10 (Lnet/minecraft/client/renderer/RenderItem;)V +47495 net/minecraft/block/state/BlockFaceShape (Ljava/lang/String;I)V +47496 net/minecraft/advancements/critereon/TickTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47497 net/minecraft/advancements/critereon/MobEffectsPredicate$InstancePredicate (Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Ljava/lang/Boolean;Ljava/lang/Boolean;)V +47499 net/minecraft/entity/monster/AbstractIllager$IllagerArmPose (Ljava/lang/String;I)V +47500 net/minecraft/item/crafting/ShapelessRecipes (Ljava/lang/String;Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/NonNullList;)V +47501 net/minecraft/item/crafting/ShapedRecipes (Ljava/lang/String;IILnet/minecraft/util/NonNullList;Lnet/minecraft/item/ItemStack;)V +47503 net/minecraft/item/crafting/Ingredient ([Lnet/minecraft/item/ItemStack;)V +47505 net/minecraft/item/EnumDyeColor (Ljava/lang/String;IIILjava/lang/String;Ljava/lang/String;ILnet/minecraft/util/text/TextFormatting;)V +47506 net/minecraft/entity/monster/EntitySpellcasterIllager (Lnet/minecraft/world/World;)V +47507 net/minecraft/entity/monster/EntityIllusionIllager (Lnet/minecraft/world/World;)V +47508 net/minecraft/client/renderer/RenderItem$9 (Lnet/minecraft/client/renderer/RenderItem;)V +47509 net/minecraft/entity/monster/AbstractIllager (Lnet/minecraft/world/World;)V +47510 net/minecraft/client/renderer/entity/RenderEvoker$1 (Lnet/minecraft/client/renderer/entity/RenderEvoker;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +47511 net/minecraft/advancements/critereon/ItemDurabilityTrigger$Instance (Lnet/minecraft/advancements/critereon/ItemPredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47512 net/minecraft/advancements/critereon/ItemDurabilityTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47513 net/minecraft/advancements/critereon/TameAnimalTrigger$Instance (Lnet/minecraft/advancements/critereon/EntityPredicate;)V +47514 net/minecraft/advancements/critereon/TameAnimalTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47515 net/minecraft/entity/ai/EntityAIAttackRangedBow (Lnet/minecraft/entity/monster/EntityMob;DIF)V +47516 net/minecraft/client/gui/toasts/SystemToast$Type (Ljava/lang/String;I)V +47517 net/minecraft/advancements/FunctionManager (Ljava/io/File;Lnet/minecraft/server/MinecraftServer;)V +47518 net/minecraft/network/play/client/CPacketRecipeInfo (Lnet/minecraft/item/crafting/IRecipe;)V +47519 net/minecraft/network/play/server/SPacketAdvancementInfo (ZLjava/util/Collection;Ljava/util/Set;Ljava/util/Map;)V +47521 net/minecraft/util/text/TextComponentKeybind (Ljava/lang/String;)V +47522 net/minecraft/nbt/JsonToNBT (Ljava/lang/String;)V +47523 net/minecraft/nbt/NBTException (Ljava/lang/String;Ljava/lang/String;I)V +47524 net/minecraft/nbt/NBTTagLongArray ([J)V +47525 net/minecraft/nbt/NBTTagLongArray (Ljava/util/List;)V +47526 net/minecraft/advancements/critereon/RecipeUnlockedTrigger$Instance (Lnet/minecraft/item/crafting/IRecipe;)V +47527 net/minecraft/item/crafting/Ingredient$1 ([Lnet/minecraft/item/ItemStack;)V +47528 net/minecraft/nbt/NBTTagIntArray (Ljava/util/List;)V +47529 net/minecraft/nbt/NBTTagByteArray (Ljava/util/List;)V +47534 net/minecraft/command/FunctionObject$CommandEntry (Ljava/lang/String;)V +47536 net/minecraft/advancements/critereon/NBTPredicate (Lnet/minecraft/nbt/NBTTagCompound;)V +47537 net/minecraft/command/FunctionObject$CacheableFunction (Lnet/minecraft/util/ResourceLocation;)V +47538 net/minecraft/advancements/critereon/MobEffectsPredicate (Ljava/util/Map;)V +47539 net/minecraft/advancements/critereon/LocationPredicate (Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/world/biome/Biome;Ljava/lang/String;Lnet/minecraft/world/DimensionType;)V +47540 net/minecraft/advancements/critereon/ItemPredicate (Lnet/minecraft/item/Item;Ljava/lang/Integer;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;[Lnet/minecraft/advancements/critereon/EnchantmentPredicate;Lnet/minecraft/potion/PotionType;Lnet/minecraft/advancements/critereon/NBTPredicate;)V +47541 net/minecraft/advancements/critereon/EntityPredicate (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/MobEffectsPredicate;Lnet/minecraft/advancements/critereon/NBTPredicate;)V +47542 net/minecraft/advancements/critereon/DistancePredicate (Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47543 net/minecraft/advancements/critereon/DamageSourcePredicate (Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Ljava/lang/Boolean;Lnet/minecraft/advancements/critereon/EntityPredicate;Lnet/minecraft/advancements/critereon/EntityPredicate;)V +47544 net/minecraft/advancements/critereon/PositionTrigger$Instance (Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/advancements/critereon/LocationPredicate;)V +47545 net/minecraft/advancements/critereon/EffectsChangedTrigger$Instance (Lnet/minecraft/advancements/critereon/MobEffectsPredicate;)V +47546 net/minecraft/advancements/critereon/EffectsChangedTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47547 net/minecraft/client/renderer/entity/RenderIllusionIllager$1 (Lnet/minecraft/client/renderer/entity/RenderIllusionIllager;Lnet/minecraft/client/renderer/entity/RenderLivingBase;)V +47548 net/minecraft/command/AdvancementCommand$ActionType$2 (Ljava/lang/String;ILjava/lang/String;)V +47549 net/minecraft/command/AdvancementCommand$ActionType$1 (Ljava/lang/String;ILjava/lang/String;)V +47550 net/minecraft/client/gui/achievement/GuiStats$Stats (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +47551 net/minecraft/client/gui/achievement/GuiStats$StatsMobsList (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +47552 net/minecraft/client/gui/achievement/GuiStats$StatsItem (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +47553 net/minecraft/client/gui/achievement/GuiStats$StatsGeneral (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +47554 net/minecraft/client/gui/achievement/GuiStats$StatsBlock (Lnet/minecraft/client/gui/achievement/GuiStats;Lnet/minecraft/client/Minecraft;)V +47555 net/minecraft/client/gui/achievement/GuiStats$StatsItem$1 (Lnet/minecraft/client/gui/achievement/GuiStats$StatsItem;Lnet/minecraft/client/gui/achievement/GuiStats;)V +47556 net/minecraft/command/AdvancementCommand$Mode (Ljava/lang/String;ILjava/lang/String;ZZ)V +47557 net/minecraft/command/AdvancementCommand$ActionType (Ljava/lang/String;ILjava/lang/String;)V +47558 net/minecraft/command/AdvancementCommand$ActionType (Ljava/lang/String;ILjava/lang/String;Lnet/minecraft/command/AdvancementCommand$1;)V +47559 net/minecraft/entity/monster/EntitySpellcasterIllager$AIUseSpell (Lnet/minecraft/entity/monster/EntitySpellcasterIllager;)V +47560 net/minecraft/entity/monster/EntitySpellcasterIllager$AICastingApell (Lnet/minecraft/entity/monster/EntitySpellcasterIllager;)V +47561 net/minecraft/entity/monster/EntitySpellcasterIllager$SpellType (Ljava/lang/String;IIDDD)V +47562 net/minecraft/advancements/critereon/ConsumeItemTrigger$Instance (Lnet/minecraft/advancements/critereon/ItemPredicate;)V +47563 net/minecraft/advancements/critereon/ConsumeItemTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47564 net/minecraft/advancements/critereon/UsedTotemTrigger$Instance (Lnet/minecraft/advancements/critereon/ItemPredicate;)V +47565 net/minecraft/advancements/critereon/UsedTotemTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47566 net/minecraft/advancements/critereon/PlacedBlockTrigger$Instance (Lnet/minecraft/block/Block;Ljava/util/Map;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/ItemPredicate;)V +47567 net/minecraft/advancements/critereon/PlacedBlockTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47568 net/minecraft/advancements/FunctionManager$1 (Lnet/minecraft/advancements/FunctionManager;)V +47569 net/minecraft/entity/monster/EntityEvoker$AICastingSpell (Lnet/minecraft/entity/monster/EntityEvoker;Lnet/minecraft/entity/monster/EntityEvoker$1;)V +47570 net/minecraft/potion/PotionHelper$MixPredicate (Ljava/lang/Object;Lnet/minecraft/item/crafting/Ingredient;Ljava/lang/Object;)V +47571 net/minecraft/advancements/critereon/LevitationTrigger$Instance (Lnet/minecraft/advancements/critereon/DistancePredicate;Lnet/minecraft/advancements/critereon/MinMaxBounds;)V +47572 net/minecraft/advancements/critereon/LevitationTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47573 net/minecraft/advancements/AdvancementRewards$1 (Lnet/minecraft/advancements/AdvancementRewards;Lnet/minecraft/entity/player/EntityPlayerMP;Lnet/minecraft/server/MinecraftServer;)V +47574 net/minecraft/advancements/critereon/NetherTravelTrigger$Instance (Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/LocationPredicate;Lnet/minecraft/advancements/critereon/DistancePredicate;)V +47575 net/minecraft/advancements/critereon/NetherTravelTrigger$Listeners (Lnet/minecraft/advancements/PlayerAdvancements;)V +47576 net/minecraft/client/gui/toasts/TutorialToast$Icons (Ljava/lang/String;III)V +47577 net/minecraft/client/tutorial/TutorialSteps (Ljava/lang/String;ILjava/lang/String;Ljava/util/function/Function;)V +47578 net/minecraft/client/tutorial/Tutorial (Lnet/minecraft/client/Minecraft;)V +47579 net/minecraft/client/tutorial/PunchTreeStep (Lnet/minecraft/client/tutorial/Tutorial;)V +47580 net/minecraft/client/tutorial/OpenInventoryStep (Lnet/minecraft/client/tutorial/Tutorial;)V +47581 net/minecraft/client/tutorial/MovementStep (Lnet/minecraft/client/tutorial/Tutorial;)V +47582 net/minecraft/client/tutorial/FindTreeStep (Lnet/minecraft/client/tutorial/Tutorial;)V +47583 net/minecraft/client/tutorial/CraftPlanksStep (Lnet/minecraft/client/tutorial/Tutorial;)V +47584 net/minecraft/client/tutorial/CompletedTutorialStep (Lnet/minecraft/client/tutorial/Tutorial;)V +47585 net/minecraft/advancements/FrameType (Ljava/lang/String;ILjava/lang/String;ILnet/minecraft/util/text/TextFormatting;)V +47586 net/minecraft/advancements/DisplayInfo (Lnet/minecraft/item/ItemStack;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/util/text/ITextComponent;Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/advancements/FrameType;ZZZ)V +47587 net/minecraft/advancements/AdvancementRewards (I[Lnet/minecraft/util/ResourceLocation;[Lnet/minecraft/util/ResourceLocation;Lnet/minecraft/command/FunctionObject$CacheableFunction;)V +47588 net/minecraft/client/gui/recipebook/GuiButtonRecipeTab (ILnet/minecraft/creativetab/CreativeTabs;)V +47589 net/minecraft/client/gui/advancements/GuiAdvancementTab (Lnet/minecraft/client/Minecraft;Lnet/minecraft/client/gui/advancements/GuiScreenAdvancements;Lnet/minecraft/client/gui/advancements/AdvancementTabType;ILnet/minecraft/advancements/Advancement;Lnet/minecraft/advancements/DisplayInfo;)V +47590 net/minecraft/client/gui/GuiWinGame (ZLjava/lang/Runnable;)V +47591 net/minecraft/client/util/SuffixArray$1 (Lnet/minecraft/client/util/SuffixArray;[I[I)V +47592 net/minecraft/network/play/client/CPacketRecipeInfo$Purpose (Ljava/lang/String;I)V +47593 net/minecraft/item/crafting/Ingredient ([Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/crafting/Ingredient$1;)V +47594 net/minecraft/client/gui/recipebook/GuiRecipeOverlay$Button (Lnet/minecraft/client/gui/recipebook/GuiRecipeOverlay;IILnet/minecraft/item/crafting/IRecipe;Z)V +47595 net/minecraft/network/play/client/CPacketSeenAdvancements (Lnet/minecraft/network/play/client/CPacketSeenAdvancements$Action;Lnet/minecraft/util/ResourceLocation;)V +47596 net/minecraft/network/play/server/SPacketSelectAdvancementsTab (Lnet/minecraft/util/ResourceLocation;)V +47597 net/minecraft/network/play/server/SPacketRecipeBook (Lnet/minecraft/network/play/server/SPacketRecipeBook$State;Ljava/util/List;Ljava/util/List;ZZ)V +47598 net/minecraft/inventory/ContainerBrewingStand$Potion (Lnet/minecraft/inventory/IInventory;III)V +47599 net/minecraft/command/CommandSenderWrapper (Lnet/minecraft/command/ICommandSender;Lnet/minecraft/util/math/Vec3d;Lnet/minecraft/util/math/BlockPos;Ljava/lang/Integer;Lnet/minecraft/entity/Entity;Ljava/lang/Boolean;)V +47600 net/minecraft/command/FunctionObject ([Lnet/minecraft/command/FunctionObject$Entry;)V +47601 net/minecraft/command/FunctionObject$FunctionEntry (Lnet/minecraft/command/FunctionObject;)V +47602 net/minecraft/command/FunctionObject$CacheableFunction (Lnet/minecraft/command/FunctionObject;)V +47603 net/minecraft/advancements/FunctionManager$QueuedCommand (Lnet/minecraft/advancements/FunctionManager;Lnet/minecraft/command/ICommandSender;Lnet/minecraft/command/FunctionObject$Entry;)V +47604 net/minecraft/client/gui/recipebook/GhostRecipe$GhostIngredient (Lnet/minecraft/client/gui/recipebook/GhostRecipe;Lnet/minecraft/item/crafting/Ingredient;II)V +47605 net/minecraft/network/NetHandlerPlayServer$1 (Lnet/minecraft/network/NetHandlerPlayServer;Lnet/minecraft/util/text/ITextComponent;)V +47606 net/minecraft/client/util/SearchTree$MergingIterator (Ljava/util/Iterator;Ljava/util/Iterator;Lit/unimi/dsi/fastutil/objects/Object2IntMap;)V +47607 net/minecraft/client/gui/toasts/IToast$Visibility (Ljava/lang/String;ILnet/minecraft/util/SoundEvent;)V +47608 net/minecraft/client/util/RecipeItemHelper$RecipePicker (Lnet/minecraft/client/util/RecipeItemHelper;Lnet/minecraft/item/crafting/IRecipe;)V +47609 net/minecraft/network/play/client/CPacketSeenAdvancements$Action (Ljava/lang/String;I)V +47610 net/minecraft/network/play/server/SPacketRecipeBook$State (Ljava/lang/String;I)V +47611 net/minecraft/client/util/ITooltipFlag$TooltipFlags (Ljava/lang/String;IZ)V +47612 net/minecraft/client/util/SearchTree (Ljava/util/function/Function;Ljava/util/function/Function;)V +47613 net/minecraft/network/handshake/client/C00Handshake (Ljava/lang/String;ILnet/minecraft/network/EnumConnectionState;)V +47614 net/minecraft/network/play/client/CPacketPlaceRecipe (ILnet/minecraft/item/crafting/IRecipe;Z)V +47615 net/minecraft/network/play/server/SPacketPlaceGhostRecipe (ILnet/minecraft/item/crafting/IRecipe;)V \ No newline at end of file